mirror of
https://github.com/open-webui/open-webui
synced 2025-06-23 02:16:52 +00:00
chore: format
This commit is contained in:
parent
96618967bd
commit
6359cb55fe
@ -63,13 +63,13 @@ class YoutubeLoader:
|
|||||||
self.video_id = _video_id if _video_id is not None else video_id
|
self.video_id = _video_id if _video_id is not None else video_id
|
||||||
self._metadata = {"source": video_id}
|
self._metadata = {"source": video_id}
|
||||||
self.proxy_url = proxy_url
|
self.proxy_url = proxy_url
|
||||||
|
|
||||||
# Ensure language is a list
|
# Ensure language is a list
|
||||||
if isinstance(language, str):
|
if isinstance(language, str):
|
||||||
self.language = [language]
|
self.language = [language]
|
||||||
else:
|
else:
|
||||||
self.language = list(language)
|
self.language = list(language)
|
||||||
|
|
||||||
# Add English as fallback if not already in the list
|
# Add English as fallback if not already in the list
|
||||||
if "en" not in self.language:
|
if "en" not in self.language:
|
||||||
self.language.append("en")
|
self.language.append("en")
|
||||||
@ -87,7 +87,7 @@ class YoutubeLoader:
|
|||||||
'Could not import "youtube_transcript_api" Python package. '
|
'Could not import "youtube_transcript_api" Python package. '
|
||||||
"Please install it with `pip install youtube-transcript-api`."
|
"Please install it with `pip install youtube-transcript-api`."
|
||||||
)
|
)
|
||||||
|
|
||||||
if self.proxy_url:
|
if self.proxy_url:
|
||||||
youtube_proxies = {
|
youtube_proxies = {
|
||||||
"http": self.proxy_url,
|
"http": self.proxy_url,
|
||||||
@ -97,7 +97,7 @@ class YoutubeLoader:
|
|||||||
log.debug(f"Using proxy URL: {self.proxy_url[:14]}...")
|
log.debug(f"Using proxy URL: {self.proxy_url[:14]}...")
|
||||||
else:
|
else:
|
||||||
youtube_proxies = None
|
youtube_proxies = None
|
||||||
|
|
||||||
try:
|
try:
|
||||||
transcript_list = YouTubeTranscriptApi.list_transcripts(
|
transcript_list = YouTubeTranscriptApi.list_transcripts(
|
||||||
self.video_id, proxies=youtube_proxies
|
self.video_id, proxies=youtube_proxies
|
||||||
@ -105,7 +105,7 @@ class YoutubeLoader:
|
|||||||
except Exception as e:
|
except Exception as e:
|
||||||
log.exception("Loading YouTube transcript failed")
|
log.exception("Loading YouTube transcript failed")
|
||||||
return []
|
return []
|
||||||
|
|
||||||
# Try each language in order of priority
|
# Try each language in order of priority
|
||||||
for lang in self.language:
|
for lang in self.language:
|
||||||
try:
|
try:
|
||||||
@ -125,8 +125,12 @@ class YoutubeLoader:
|
|||||||
except Exception as e:
|
except Exception as e:
|
||||||
log.info(f"Error finding transcript for language '{lang}'")
|
log.info(f"Error finding transcript for language '{lang}'")
|
||||||
raise e
|
raise e
|
||||||
|
|
||||||
# If we get here, all languages failed
|
# If we get here, all languages failed
|
||||||
languages_tried = ", ".join(self.language)
|
languages_tried = ", ".join(self.language)
|
||||||
log.warning(f"No transcript found for any of the specified languages: {languages_tried}. Verify if the video has transcripts, add more languages if needed.")
|
log.warning(
|
||||||
raise NoTranscriptFound(f"No transcript found for any supported language. Verify if the video has transcripts, add more languages if needed.")
|
f"No transcript found for any of the specified languages: {languages_tried}. Verify if the video has transcripts, add more languages if needed."
|
||||||
|
)
|
||||||
|
raise NoTranscriptFound(
|
||||||
|
f"No transcript found for any supported language. Verify if the video has transcripts, add more languages if needed."
|
||||||
|
)
|
||||||
|
@ -158,7 +158,7 @@ class OAuthManager:
|
|||||||
nested_claims = oauth_claim.split(".")
|
nested_claims = oauth_claim.split(".")
|
||||||
for nested_claim in nested_claims:
|
for nested_claim in nested_claims:
|
||||||
claim_data = claim_data.get(nested_claim, {})
|
claim_data = claim_data.get(nested_claim, {})
|
||||||
|
|
||||||
if isinstance(claim_data, list):
|
if isinstance(claim_data, list):
|
||||||
user_oauth_groups = claim_data
|
user_oauth_groups = claim_data
|
||||||
elif isinstance(claim_data, str):
|
elif isinstance(claim_data, str):
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||||
"(e.g. `sh webui.sh --api`)": "( `sh webui.sh --api`مثال)",
|
"(e.g. `sh webui.sh --api`)": "( `sh webui.sh --api`مثال)",
|
||||||
"(latest)": "(الأخير)",
|
"(latest)": "(الأخير)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ نماذج }}",
|
"{{ models }}": "{{ نماذج }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "استجابة خطاء",
|
"Bad Response": "استجابة خطاء",
|
||||||
"Banners": "لافتات",
|
"Banners": "لافتات",
|
||||||
"Base Model (From)": "النموذج الأساسي (من)",
|
"Base Model (From)": "النموذج الأساسي (من)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "",
|
"Batch Size (num_batch)": "",
|
||||||
"before": "قبل",
|
"before": "قبل",
|
||||||
"Being lazy": "كون كسول",
|
"Being lazy": "كون كسول",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "تعديل",
|
"Edit": "تعديل",
|
||||||
"Edit Arena Model": "",
|
"Edit Arena Model": "",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "تفعيل عمليات التسجيل الجديدة",
|
"Enable New Sign Ups": "تفعيل عمليات التسجيل الجديدة",
|
||||||
"Enabled": "",
|
"Enabled": "",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "تأكد من أن ملف CSV الخاص بك يتضمن 4 أعمدة بهذا الترتيب: Name, Email, Password, Role.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "تأكد من أن ملف CSV الخاص بك يتضمن 4 أعمدة بهذا الترتيب: Name, Email, Password, Role.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(مثال: `sh webui.sh --api --api-auth اسم_المستخدم_كلمة_المرور`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(مثال: `sh webui.sh --api --api-auth اسم_المستخدم_كلمة_المرور`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(مثال: تشغيل الأمر: `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(مثال: تشغيل الأمر: `sh webui.sh --api`)",
|
||||||
"(latest)": "(أحدث)",
|
"(latest)": "(أحدث)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "النماذج: {{ models }}",
|
"{{ models }}": "النماذج: {{ models }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "رد سيئ",
|
"Bad Response": "رد سيئ",
|
||||||
"Banners": "لافتات",
|
"Banners": "لافتات",
|
||||||
"Base Model (From)": "النموذج الأساسي (من)",
|
"Base Model (From)": "النموذج الأساسي (من)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "حجم الدفعة (num_batch)",
|
"Batch Size (num_batch)": "حجم الدفعة (num_batch)",
|
||||||
"before": "قبل",
|
"before": "قبل",
|
||||||
"Being lazy": "كونك كسولاً",
|
"Being lazy": "كونك كسولاً",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "مثال: أدوات لتنفيذ عمليات متنوعة",
|
"e.g. Tools for performing various operations": "مثال: أدوات لتنفيذ عمليات متنوعة",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "تعديل",
|
"Edit": "تعديل",
|
||||||
"Edit Arena Model": "تعديل نموذج Arena",
|
"Edit Arena Model": "تعديل نموذج Arena",
|
||||||
"Edit Channel": "تعديل القناة",
|
"Edit Channel": "تعديل القناة",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "تفعيل أخذ عينات Mirostat للتحكم في درجة التعقيد.",
|
"Enable Mirostat sampling for controlling perplexity.": "تفعيل أخذ عينات Mirostat للتحكم في درجة التعقيد.",
|
||||||
"Enable New Sign Ups": "تفعيل عمليات التسجيل الجديدة",
|
"Enable New Sign Ups": "تفعيل عمليات التسجيل الجديدة",
|
||||||
"Enabled": "مفعل",
|
"Enabled": "مفعل",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "تأكد من أن ملف CSV الخاص بك يتضمن 4 أعمدة بهذا الترتيب: Name, Email, Password, Role.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "تأكد من أن ملف CSV الخاص بك يتضمن 4 أعمدة بهذا الترتيب: Name, Email, Password, Role.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(напр. `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(напр. `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(напр. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(напр. `sh webui.sh --api`)",
|
||||||
"(latest)": "(последна)",
|
"(latest)": "(последна)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ models }}",
|
"{{ models }}": "{{ models }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Невалиден отговор от API",
|
"Bad Response": "Невалиден отговор от API",
|
||||||
"Banners": "Банери",
|
"Banners": "Банери",
|
||||||
"Base Model (From)": "Базов модел (от)",
|
"Base Model (From)": "Базов модел (от)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Размер на партидата (num_batch)",
|
"Batch Size (num_batch)": "Размер на партидата (num_batch)",
|
||||||
"before": "преди",
|
"before": "преди",
|
||||||
"Being lazy": "Да бъдеш мързелив",
|
"Being lazy": "Да бъдеш мързелив",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "напр. Инструменти за извършване на различни операции",
|
"e.g. Tools for performing various operations": "напр. Инструменти за извършване на различни операции",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Редактиране",
|
"Edit": "Редактиране",
|
||||||
"Edit Arena Model": "Редактиране на Arena модел",
|
"Edit Arena Model": "Редактиране на Arena модел",
|
||||||
"Edit Channel": "Редактиране на канал",
|
"Edit Channel": "Редактиране на канал",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "Включване на нови регистрации",
|
"Enable New Sign Ups": "Включване на нови регистрации",
|
||||||
"Enabled": "Активирано",
|
"Enabled": "Активирано",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверете се, че вашият CSV файл включва 4 колони в следния ред: Име, Имейл, Парола, Роля.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверете се, че вашият CSV файл включва 4 колони в следния ред: Име, Имейл, Парола, Роля.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||||
"(e.g. `sh webui.sh --api`)": "(যেমন `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(যেমন `sh webui.sh --api`)",
|
||||||
"(latest)": "(সর্বশেষ)",
|
"(latest)": "(সর্বশেষ)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ মডেল}}",
|
"{{ models }}": "{{ মডেল}}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "খারাপ প্রতিক্রিয়া",
|
"Bad Response": "খারাপ প্রতিক্রিয়া",
|
||||||
"Banners": "ব্যানার",
|
"Banners": "ব্যানার",
|
||||||
"Base Model (From)": "বেস মডেল (থেকে)",
|
"Base Model (From)": "বেস মডেল (থেকে)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "",
|
"Batch Size (num_batch)": "",
|
||||||
"before": "পূর্ববর্তী",
|
"before": "পূর্ববর্তী",
|
||||||
"Being lazy": "অলস হওয়া",
|
"Being lazy": "অলস হওয়া",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "এডিট করুন",
|
"Edit": "এডিট করুন",
|
||||||
"Edit Arena Model": "",
|
"Edit Arena Model": "",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "নতুন সাইনআপ চালু করুন",
|
"Enable New Sign Ups": "নতুন সাইনআপ চালু করুন",
|
||||||
"Enabled": "",
|
"Enabled": "",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "আপনার সিএসভি ফাইলটিতে এই ক্রমে 4 টি কলাম অন্তর্ভুক্ত রয়েছে তা নিশ্চিত করুন: নাম, ইমেল, পাসওয়ার্ড, ভূমিকা।.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "আপনার সিএসভি ফাইলটিতে এই ক্রমে 4 টি কলাম অন্তর্ভুক্ত রয়েছে তা নিশ্চিত করুন: নাম, ইমেল, পাসওয়ার্ড, ভূমিকা।.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(དཔེར་ན། `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(དཔེར་ན། `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(དཔེར་ན། `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(དཔེར་ན། `sh webui.sh --api`)",
|
||||||
"(latest)": "(ཆེས་གསར།)",
|
"(latest)": "(ཆེས་གསར།)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "(Ollama)",
|
"(Ollama)": "(Ollama)",
|
||||||
"{{ models }}": "{{ models }}",
|
"{{ models }}": "{{ models }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "ལན་ངན་པ།",
|
"Bad Response": "ལན་ངན་པ།",
|
||||||
"Banners": "དར་ཆ།",
|
"Banners": "དར་ཆ།",
|
||||||
"Base Model (From)": "གཞི་རྩའི་དཔེ་དབྱིབས། (ནས།)",
|
"Base Model (From)": "གཞི་རྩའི་དཔེ་དབྱིབས། (ནས།)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "ཚན་ཆུང་ཆེ་ཆུང་། (num_batch)",
|
"Batch Size (num_batch)": "ཚན་ཆུང་ཆེ་ཆུང་། (num_batch)",
|
||||||
"before": "སྔོན།",
|
"before": "སྔོན།",
|
||||||
"Being lazy": "ལེ་ལོ་བྱེད་པ།",
|
"Being lazy": "ལེ་ལོ་བྱེད་པ།",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "དཔེར་ན། ལས་ཀ་སྣ་ཚོགས་སྒྲུབ་བྱེད་ཀྱི་ལག་ཆ།",
|
"e.g. Tools for performing various operations": "དཔེར་ན། ལས་ཀ་སྣ་ཚོགས་སྒྲུབ་བྱེད་ཀྱི་ལག་ཆ།",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "ཞུ་དག",
|
"Edit": "ཞུ་དག",
|
||||||
"Edit Arena Model": "Arena དཔེ་དབྱིབས་ཞུ་དག",
|
"Edit Arena Model": "Arena དཔེ་དབྱིབས་ཞུ་དག",
|
||||||
"Edit Channel": "བགྲོ་གླེང་ཞུ་དག",
|
"Edit Channel": "བགྲོ་གླེང་ཞུ་དག",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "རྙོག་འཛིང་ཚད་ཚོད་འཛིན་གྱི་ཆེད་དུ་ Mirostat མ་དཔེ་འདེམས་པ་སྒུལ་བསྐྱོད་བྱེད་པ།",
|
"Enable Mirostat sampling for controlling perplexity.": "རྙོག་འཛིང་ཚད་ཚོད་འཛིན་གྱི་ཆེད་དུ་ Mirostat མ་དཔེ་འདེམས་པ་སྒུལ་བསྐྱོད་བྱེད་པ།",
|
||||||
"Enable New Sign Ups": "ཐོ་འགོད་གསར་པ་སྒུལ་བསྐྱོད་བྱེད་པ།",
|
"Enable New Sign Ups": "ཐོ་འགོད་གསར་པ་སྒུལ་བསྐྱོད་བྱེད་པ།",
|
||||||
"Enabled": "སྒུལ་བསྐྱོད་བྱས་ཡོད།",
|
"Enabled": "སྒུལ་བསྐྱོད་བྱས་ཡོད།",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "གནས་སྐབས་ཁ་བརྡ་བཙན་བཀོལ་བྱེད་པ།",
|
"Enforce Temporary Chat": "གནས་སྐབས་ཁ་བརྡ་བཙན་བཀོལ་བྱེད་པ།",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ཁྱེད་ཀྱི་ CSV ཡིག་ཆར་གོ་རིམ་འདི་ལྟར། མིང་། ཡིག་ཟམ། གསང་གྲངས། གནས་ཚད། སྟར་པ་ ༤ ཚུད་ཡོད་པ་ཁག་ཐེག་བྱེད་རོགས།",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ཁྱེད་ཀྱི་ CSV ཡིག་ཆར་གོ་རིམ་འདི་ལྟར། མིང་། ཡིག་ཟམ། གསང་གྲངས། གནས་ཚད། སྟར་པ་ ༤ ཚུད་ཡོད་པ་ཁག་ཐེག་བྱེད་རོགས།",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(p. ex. `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(p. ex. `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(p. ex. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(p. ex. `sh webui.sh --api`)",
|
||||||
"(latest)": "(últim)",
|
"(latest)": "(últim)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "(Ollama)",
|
"(Ollama)": "(Ollama)",
|
||||||
"{{ models }}": "{{ models }}",
|
"{{ models }}": "{{ models }}",
|
||||||
"{{COUNT}} Available Tools": "{{COUNT}} eines disponibles",
|
"{{COUNT}} Available Tools": "{{COUNT}} eines disponibles",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Resposta errònia",
|
"Bad Response": "Resposta errònia",
|
||||||
"Banners": "Banners",
|
"Banners": "Banners",
|
||||||
"Base Model (From)": "Model base (des de)",
|
"Base Model (From)": "Model base (des de)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Mida del lot (num_batch)",
|
"Batch Size (num_batch)": "Mida del lot (num_batch)",
|
||||||
"before": "abans",
|
"before": "abans",
|
||||||
"Being lazy": "Essent mandrós",
|
"Being lazy": "Essent mandrós",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "p. ex. Eines per dur a terme operacions",
|
"e.g. Tools for performing various operations": "p. ex. Eines per dur a terme operacions",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "p. ex. en-US, ja-JP, ca-ES (deixa-ho en blanc per detecció automàtica)",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "p. ex. en-US, ja-JP, ca-ES (deixa-ho en blanc per detecció automàtica)",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Editar",
|
"Edit": "Editar",
|
||||||
"Edit Arena Model": "Editar model de l'Arena",
|
"Edit Arena Model": "Editar model de l'Arena",
|
||||||
"Edit Channel": "Editar el canal",
|
"Edit Channel": "Editar el canal",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "Permetre el mostreig de Mirostat per controlar la perplexitat",
|
"Enable Mirostat sampling for controlling perplexity.": "Permetre el mostreig de Mirostat per controlar la perplexitat",
|
||||||
"Enable New Sign Ups": "Permetre nous registres",
|
"Enable New Sign Ups": "Permetre nous registres",
|
||||||
"Enabled": "Habilitat",
|
"Enabled": "Habilitat",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "Forçar els xats temporals",
|
"Enforce Temporary Chat": "Forçar els xats temporals",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Assegura't que els teus fitxers CSV inclouen 4 columnes en aquest ordre: Nom, Correu electrònic, Contrasenya, Rol.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Assegura't que els teus fitxers CSV inclouen 4 columnes en aquest ordre: Nom, Correu electrònic, Contrasenya, Rol.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||||
"(e.g. `sh webui.sh --api`)": "(pananglitan `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(pananglitan `sh webui.sh --api`)",
|
||||||
"(latest)": "",
|
"(latest)": "",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "",
|
"{{ models }}": "",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "",
|
"Bad Response": "",
|
||||||
"Banners": "",
|
"Banners": "",
|
||||||
"Base Model (From)": "",
|
"Base Model (From)": "",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "",
|
"Batch Size (num_batch)": "",
|
||||||
"before": "",
|
"before": "",
|
||||||
"Being lazy": "",
|
"Being lazy": "",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "",
|
"Edit": "",
|
||||||
"Edit Arena Model": "",
|
"Edit Arena Model": "",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "I-enable ang bag-ong mga rehistro",
|
"Enable New Sign Ups": "I-enable ang bag-ong mga rehistro",
|
||||||
"Enabled": "",
|
"Enabled": "",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(např. `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(např. `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(např. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(např. `sh webui.sh --api`)",
|
||||||
"(latest)": "Nejnovější",
|
"(latest)": "Nejnovější",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ models }}",
|
"{{ models }}": "{{ models }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Špatná odezva",
|
"Bad Response": "Špatná odezva",
|
||||||
"Banners": "Bannery",
|
"Banners": "Bannery",
|
||||||
"Base Model (From)": "Základní model (z)",
|
"Base Model (From)": "Základní model (z)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Batch size (num_batch)",
|
"Batch Size (num_batch)": "Batch size (num_batch)",
|
||||||
"before": "před",
|
"before": "před",
|
||||||
"Being lazy": "",
|
"Being lazy": "",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Upravit",
|
"Edit": "Upravit",
|
||||||
"Edit Arena Model": "Upravit Arena Model",
|
"Edit Arena Model": "Upravit Arena Model",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "Povolit nové registrace",
|
"Enable New Sign Ups": "Povolit nové registrace",
|
||||||
"Enabled": "Povoleno",
|
"Enabled": "Povoleno",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Ujistěte se, že váš CSV soubor obsahuje 4 sloupce v tomto pořadí: Name, Email, Password, Role.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Ujistěte se, že váš CSV soubor obsahuje 4 sloupce v tomto pořadí: Name, Email, Password, Role.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(f.eks. `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(f.eks. `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(f.eks. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(f.eks. `sh webui.sh --api`)",
|
||||||
"(latest)": "(seneste)",
|
"(latest)": "(seneste)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "(Ollama)",
|
"(Ollama)": "(Ollama)",
|
||||||
"{{ models }}": "{{ modeller }}",
|
"{{ models }}": "{{ modeller }}",
|
||||||
"{{COUNT}} Available Tools": "{{COUNT}} Tilgængelige Værktøj",
|
"{{COUNT}} Available Tools": "{{COUNT}} Tilgængelige Værktøj",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Problem i response",
|
"Bad Response": "Problem i response",
|
||||||
"Banners": "Bannere",
|
"Banners": "Bannere",
|
||||||
"Base Model (From)": "Base Model (Fra)",
|
"Base Model (From)": "Base Model (Fra)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Batch størrelse (num_batch)",
|
"Batch Size (num_batch)": "Batch størrelse (num_batch)",
|
||||||
"before": "før",
|
"before": "før",
|
||||||
"Being lazy": "At være doven",
|
"Being lazy": "At være doven",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Rediger",
|
"Edit": "Rediger",
|
||||||
"Edit Arena Model": "",
|
"Edit Arena Model": "",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "Aktiver nye signups",
|
"Enable New Sign Ups": "Aktiver nye signups",
|
||||||
"Enabled": "Aktiveret",
|
"Enabled": "Aktiveret",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Sørg for at din CSV-fil indeholder 4 kolonner in denne rækkefølge: Name, Email, Password, Role.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Sørg for at din CSV-fil indeholder 4 kolonner in denne rækkefølge: Name, Email, Password, Role.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(z. B. `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(z. B. `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(z. B. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(z. B. `sh webui.sh --api`)",
|
||||||
"(latest)": "(neueste)",
|
"(latest)": "(neueste)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ Modelle }}",
|
"{{ models }}": "{{ Modelle }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Schlechte Antwort",
|
"Bad Response": "Schlechte Antwort",
|
||||||
"Banners": "Banner",
|
"Banners": "Banner",
|
||||||
"Base Model (From)": "Basismodell (From)",
|
"Base Model (From)": "Basismodell (From)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Stapelgröße (num_batch)",
|
"Batch Size (num_batch)": "Stapelgröße (num_batch)",
|
||||||
"before": "bereits geteilt",
|
"before": "bereits geteilt",
|
||||||
"Being lazy": "Faulheit",
|
"Being lazy": "Faulheit",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "z. B. Werkzeuge für verschiedene Operationen",
|
"e.g. Tools for performing various operations": "z. B. Werkzeuge für verschiedene Operationen",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "z. B. en-US,de-DE (freilassen für automatische Erkennung)",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "z. B. en-US,de-DE (freilassen für automatische Erkennung)",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Bearbeiten",
|
"Edit": "Bearbeiten",
|
||||||
"Edit Arena Model": "Arena-Modell bearbeiten",
|
"Edit Arena Model": "Arena-Modell bearbeiten",
|
||||||
"Edit Channel": "Kanal bearbeiten",
|
"Edit Channel": "Kanal bearbeiten",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "Registrierung erlauben",
|
"Enable New Sign Ups": "Registrierung erlauben",
|
||||||
"Enabled": "Aktiviert",
|
"Enabled": "Aktiviert",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "Temporären Chat erzwingen",
|
"Enforce Temporary Chat": "Temporären Chat erzwingen",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Stellen Sie sicher, dass Ihre CSV-Datei 4 Spalten in dieser Reihenfolge enthält: Name, E-Mail, Passwort, Rolle.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Stellen Sie sicher, dass Ihre CSV-Datei 4 Spalten in dieser Reihenfolge enthält: Name, E-Mail, Passwort, Rolle.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||||
"(e.g. `sh webui.sh --api`)": "(such e.g. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(such e.g. `sh webui.sh --api`)",
|
||||||
"(latest)": "(much latest)",
|
"(latest)": "(much latest)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "",
|
"{{ models }}": "",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "",
|
"Bad Response": "",
|
||||||
"Banners": "",
|
"Banners": "",
|
||||||
"Base Model (From)": "",
|
"Base Model (From)": "",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "",
|
"Batch Size (num_batch)": "",
|
||||||
"before": "",
|
"before": "",
|
||||||
"Being lazy": "",
|
"Being lazy": "",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "",
|
"Edit": "",
|
||||||
"Edit Arena Model": "",
|
"Edit Arena Model": "",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "Enable New Bark Ups",
|
"Enable New Sign Ups": "Enable New Bark Ups",
|
||||||
"Enabled": "",
|
"Enabled": "",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(π.χ. `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(π.χ. `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(π.χ. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(π.χ. `sh webui.sh --api`)",
|
||||||
"(latest)": "(τελευταίο)",
|
"(latest)": "(τελευταίο)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ models }}",
|
"{{ models }}": "{{ models }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Κακή Απάντηση",
|
"Bad Response": "Κακή Απάντηση",
|
||||||
"Banners": "Προβολές",
|
"Banners": "Προβολές",
|
||||||
"Base Model (From)": "Βασικό Μοντέλο (Από)",
|
"Base Model (From)": "Βασικό Μοντέλο (Από)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Μέγεθος Παρτίδας (num_batch)",
|
"Batch Size (num_batch)": "Μέγεθος Παρτίδας (num_batch)",
|
||||||
"before": "πριν",
|
"before": "πριν",
|
||||||
"Being lazy": "Τρώλακας",
|
"Being lazy": "Τρώλακας",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "π.χ. Εργαλεία για την εκτέλεση διάφορων λειτουργιών",
|
"e.g. Tools for performing various operations": "π.χ. Εργαλεία για την εκτέλεση διάφορων λειτουργιών",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Επεξεργασία",
|
"Edit": "Επεξεργασία",
|
||||||
"Edit Arena Model": "Επεξεργασία Μοντέλου Arena",
|
"Edit Arena Model": "Επεξεργασία Μοντέλου Arena",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "Ενεργοποίηση Νέων Εγγραφών",
|
"Enable New Sign Ups": "Ενεργοποίηση Νέων Εγγραφών",
|
||||||
"Enabled": "Ενεργοποιημένο",
|
"Enabled": "Ενεργοποιημένο",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Βεβαιωθείτε ότι το αρχείο CSV σας περιλαμβάνει 4 στήλες με αυτή τη σειρά: Όνομα, Email, Κωδικός, Ρόλος.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Βεβαιωθείτε ότι το αρχείο CSV σας περιλαμβάνει 4 στήλες με αυτή τη σειρά: Όνομα, Email, Κωδικός, Ρόλος.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||||
"(e.g. `sh webui.sh --api`)": "",
|
"(e.g. `sh webui.sh --api`)": "",
|
||||||
"(latest)": "",
|
"(latest)": "",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "",
|
"{{ models }}": "",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "",
|
"Bad Response": "",
|
||||||
"Banners": "",
|
"Banners": "",
|
||||||
"Base Model (From)": "",
|
"Base Model (From)": "",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "",
|
"Batch Size (num_batch)": "",
|
||||||
"before": "",
|
"before": "",
|
||||||
"Being lazy": "",
|
"Being lazy": "",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "",
|
"Edit": "",
|
||||||
"Edit Arena Model": "",
|
"Edit Arena Model": "",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "",
|
"Enable New Sign Ups": "",
|
||||||
"Enabled": "",
|
"Enabled": "",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||||
"(e.g. `sh webui.sh --api`)": "",
|
"(e.g. `sh webui.sh --api`)": "",
|
||||||
"(latest)": "",
|
"(latest)": "",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "",
|
"{{ models }}": "",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "",
|
"Bad Response": "",
|
||||||
"Banners": "",
|
"Banners": "",
|
||||||
"Base Model (From)": "",
|
"Base Model (From)": "",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "",
|
"Batch Size (num_batch)": "",
|
||||||
"before": "",
|
"before": "",
|
||||||
"Being lazy": "",
|
"Being lazy": "",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "",
|
"Edit": "",
|
||||||
"Edit Arena Model": "",
|
"Edit Arena Model": "",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "",
|
"Enable New Sign Ups": "",
|
||||||
"Enabled": "",
|
"Enabled": "",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(p.ej. `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(p.ej. `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(p.ej. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(p.ej. `sh webui.sh --api`)",
|
||||||
"(latest)": "(último)",
|
"(latest)": "(último)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "(Ollama)",
|
"(Ollama)": "(Ollama)",
|
||||||
"{{ models }}": "{{ models }}",
|
"{{ models }}": "{{ models }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Mala Respuesta",
|
"Bad Response": "Mala Respuesta",
|
||||||
"Banners": "Banners",
|
"Banners": "Banners",
|
||||||
"Base Model (From)": "Modelo Base (desde)",
|
"Base Model (From)": "Modelo Base (desde)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Tamaño de Lote (num_batch)",
|
"Batch Size (num_batch)": "Tamaño de Lote (num_batch)",
|
||||||
"before": "antes",
|
"before": "antes",
|
||||||
"Being lazy": "Ser perezoso",
|
"Being lazy": "Ser perezoso",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "p.ej. Herramientas para realizar varias operaciones",
|
"e.g. Tools for performing various operations": "p.ej. Herramientas para realizar varias operaciones",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "p. ej., en-US,ja-JP (dejar en blanco para detectar automáticamente)",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "p. ej., en-US,ja-JP (dejar en blanco para detectar automáticamente)",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Editar",
|
"Edit": "Editar",
|
||||||
"Edit Arena Model": "Editar Modelo en Arena",
|
"Edit Arena Model": "Editar Modelo en Arena",
|
||||||
"Edit Channel": "Editar Canal",
|
"Edit Channel": "Editar Canal",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "Algoritmo de decodificación de texto neuronal que controla activamente el proceso generativo para mantener la perplejidad del texto generado en un valor deseado. Previene las trampas de aburrimiento (por excesivas repeticiones) y de incoherencia (por generación de excesivo texto).",
|
"Enable Mirostat sampling for controlling perplexity.": "Algoritmo de decodificación de texto neuronal que controla activamente el proceso generativo para mantener la perplejidad del texto generado en un valor deseado. Previene las trampas de aburrimiento (por excesivas repeticiones) y de incoherencia (por generación de excesivo texto).",
|
||||||
"Enable New Sign Ups": "Habilitar Registros de Nuevos Usuarios",
|
"Enable New Sign Ups": "Habilitar Registros de Nuevos Usuarios",
|
||||||
"Enabled": "Habilitado",
|
"Enabled": "Habilitado",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "Forzar el uso de Chat Temporal",
|
"Enforce Temporary Chat": "Forzar el uso de Chat Temporal",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Asegúrese de que su archivo CSV incluya 4 columnas en este orden: Nombre, Correo Electrónico, Contraseña, Rol.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Asegúrese de que su archivo CSV incluya 4 columnas en este orden: Nombre, Correo Electrónico, Contraseña, Rol.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(nt `sh webui.sh --api --api-auth kasutajanimi_parool`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(nt `sh webui.sh --api --api-auth kasutajanimi_parool`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(nt `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(nt `sh webui.sh --api`)",
|
||||||
"(latest)": "(uusim)",
|
"(latest)": "(uusim)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ mudelid }}",
|
"{{ models }}": "{{ mudelid }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Halb vastus",
|
"Bad Response": "Halb vastus",
|
||||||
"Banners": "Bännerid",
|
"Banners": "Bännerid",
|
||||||
"Base Model (From)": "Baas mudel (Allikas)",
|
"Base Model (From)": "Baas mudel (Allikas)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Partii suurus (num_batch)",
|
"Batch Size (num_batch)": "Partii suurus (num_batch)",
|
||||||
"before": "enne",
|
"before": "enne",
|
||||||
"Being lazy": "Laisklemine",
|
"Being lazy": "Laisklemine",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "nt tööriistad mitmesuguste operatsioonide teostamiseks",
|
"e.g. Tools for performing various operations": "nt tööriistad mitmesuguste operatsioonide teostamiseks",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Muuda",
|
"Edit": "Muuda",
|
||||||
"Edit Arena Model": "Muuda Areena mudelit",
|
"Edit Arena Model": "Muuda Areena mudelit",
|
||||||
"Edit Channel": "Muuda kanalit",
|
"Edit Channel": "Muuda kanalit",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "Luba Mirostat'i valim perplekssuse juhtimiseks.",
|
"Enable Mirostat sampling for controlling perplexity.": "Luba Mirostat'i valim perplekssuse juhtimiseks.",
|
||||||
"Enable New Sign Ups": "Luba uued registreerimised",
|
"Enable New Sign Ups": "Luba uued registreerimised",
|
||||||
"Enabled": "Lubatud",
|
"Enabled": "Lubatud",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Veenduge, et teie CSV-fail sisaldab 4 veergu selles järjekorras: Nimi, E-post, Parool, Roll.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Veenduge, et teie CSV-fail sisaldab 4 veergu selles järjekorras: Nimi, E-post, Parool, Roll.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(adib. `sh webui.sh --api --api-auth erabiltzaile_pasahitza`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(adib. `sh webui.sh --api --api-auth erabiltzaile_pasahitza`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(adib. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(adib. `sh webui.sh --api`)",
|
||||||
"(latest)": "(azkena)",
|
"(latest)": "(azkena)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ models }}",
|
"{{ models }}": "{{ models }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Erantzun Txarra",
|
"Bad Response": "Erantzun Txarra",
|
||||||
"Banners": "Bannerrak",
|
"Banners": "Bannerrak",
|
||||||
"Base Model (From)": "Oinarrizko Eredua (Nondik)",
|
"Base Model (From)": "Oinarrizko Eredua (Nondik)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Batch Tamaina (num_batch)",
|
"Batch Size (num_batch)": "Batch Tamaina (num_batch)",
|
||||||
"before": "aurretik",
|
"before": "aurretik",
|
||||||
"Being lazy": "Alferra izatea",
|
"Being lazy": "Alferra izatea",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "adib. Hainbat eragiketa egiteko tresnak",
|
"e.g. Tools for performing various operations": "adib. Hainbat eragiketa egiteko tresnak",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Editatu",
|
"Edit": "Editatu",
|
||||||
"Edit Arena Model": "Editatu Arena Eredua",
|
"Edit Arena Model": "Editatu Arena Eredua",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "Gaitu Izena Emate Berriak",
|
"Enable New Sign Ups": "Gaitu Izena Emate Berriak",
|
||||||
"Enabled": "Gaituta",
|
"Enabled": "Gaituta",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Ziurtatu zure CSV fitxategiak 4 zutabe dituela ordena honetan: Izena, Posta elektronikoa, Pasahitza, Rola.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Ziurtatu zure CSV fitxategiak 4 zutabe dituela ordena honetan: Izena, Posta elektronikoa, Pasahitza, Rola.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(مثال: `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(مثال: `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(e.g. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(e.g. `sh webui.sh --api`)",
|
||||||
"(latest)": "(آخرین)",
|
"(latest)": "(آخرین)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "(ollama)",
|
"(Ollama)": "(ollama)",
|
||||||
"{{ models }}": "{{ models }}",
|
"{{ models }}": "{{ models }}",
|
||||||
"{{COUNT}} Available Tools": "{{COUNT}} ابزار موجود",
|
"{{COUNT}} Available Tools": "{{COUNT}} ابزار موجود",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "پاسخ خوب نیست",
|
"Bad Response": "پاسخ خوب نیست",
|
||||||
"Banners": "بنر",
|
"Banners": "بنر",
|
||||||
"Base Model (From)": "مدل پایه (از)",
|
"Base Model (From)": "مدل پایه (از)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "اندازه دسته (num_batch)",
|
"Batch Size (num_batch)": "اندازه دسته (num_batch)",
|
||||||
"before": "قبل",
|
"before": "قبل",
|
||||||
"Being lazy": "حالت سازنده",
|
"Being lazy": "حالت سازنده",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "مثلا ابزارهایی برای انجام عملیات مختلف",
|
"e.g. Tools for performing various operations": "مثلا ابزارهایی برای انجام عملیات مختلف",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "مثلا en-US,ja-JP (برای تشخیص خودکار خالی بگذارید)",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "مثلا en-US,ja-JP (برای تشخیص خودکار خالی بگذارید)",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "ویرایش",
|
"Edit": "ویرایش",
|
||||||
"Edit Arena Model": "ویرایش مدل آرنا",
|
"Edit Arena Model": "ویرایش مدل آرنا",
|
||||||
"Edit Channel": "ویرایش کانال",
|
"Edit Channel": "ویرایش کانال",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "فعال\u200cسازی نمونه\u200cبرداری میروستات برای کنترل سردرگمی",
|
"Enable Mirostat sampling for controlling perplexity.": "فعال\u200cسازی نمونه\u200cبرداری میروستات برای کنترل سردرگمی",
|
||||||
"Enable New Sign Ups": "فعال کردن ثبت نام\u200cهای جدید",
|
"Enable New Sign Ups": "فعال کردن ثبت نام\u200cهای جدید",
|
||||||
"Enabled": "فعال شده",
|
"Enabled": "فعال شده",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "اجبار چت موقت",
|
"Enforce Temporary Chat": "اجبار چت موقت",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "اطمینان حاصل کنید که فایل CSV شما شامل چهار ستون در این ترتیب است: نام، ایمیل، رمز عبور، نقش.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "اطمینان حاصل کنید که فایل CSV شما شامل چهار ستون در این ترتیب است: نام، ایمیل، رمز عبور، نقش.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(esim. `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(esim. `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(esim. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(esim. `sh webui.sh --api`)",
|
||||||
"(latest)": "(uusin)",
|
"(latest)": "(uusin)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "(jätä tyhjäksi Azure Commercial verkko-osoitteen automaattista luontia varten)",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "(Ollama)",
|
"(Ollama)": "(Ollama)",
|
||||||
"{{ models }}": "{{ mallit }}",
|
"{{ models }}": "{{ mallit }}",
|
||||||
"{{COUNT}} Available Tools": "{{COUNT}} työkalua saatavilla",
|
"{{COUNT}} Available Tools": "{{COUNT}} työkalua saatavilla",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Huono vastaus",
|
"Bad Response": "Huono vastaus",
|
||||||
"Banners": "Bannerit",
|
"Banners": "Bannerit",
|
||||||
"Base Model (From)": "Perusmalli (alkaen)",
|
"Base Model (From)": "Perusmalli (alkaen)",
|
||||||
"Base URL": "Perus verkko-osoite",
|
|
||||||
"Batch Size (num_batch)": "Erän koko (num_batch)",
|
"Batch Size (num_batch)": "Erän koko (num_batch)",
|
||||||
"before": "ennen",
|
"before": "ennen",
|
||||||
"Being lazy": "Oli laiska",
|
"Being lazy": "Oli laiska",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "esim. työkaluja erilaisten toimenpiteiden suorittamiseen",
|
"e.g. Tools for performing various operations": "esim. työkaluja erilaisten toimenpiteiden suorittamiseen",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "esim. 3, 4, 5 (jätä tyhjäksi, jos haluat oletusarvon)",
|
"e.g., 3, 4, 5 (leave blank for default)": "esim. 3, 4, 5 (jätä tyhjäksi, jos haluat oletusarvon)",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "esim. en-US,ja-JP (Tyhjäksi jättämällä, automaattinen tunnistus)",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "esim. en-US,ja-JP (Tyhjäksi jättämällä, automaattinen tunnistus)",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Muokkaa",
|
"Edit": "Muokkaa",
|
||||||
"Edit Arena Model": "Muokkaa Arena-mallia",
|
"Edit Arena Model": "Muokkaa Arena-mallia",
|
||||||
"Edit Channel": "Muokkaa kanavaa",
|
"Edit Channel": "Muokkaa kanavaa",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "Salli uudet rekisteröitymiset",
|
"Enable New Sign Ups": "Salli uudet rekisteröitymiset",
|
||||||
"Enabled": "Käytössä",
|
"Enabled": "Käytössä",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "Pakota väliaikaiset keskustelut",
|
"Enforce Temporary Chat": "Pakota väliaikaiset keskustelut",
|
||||||
"Enhance": "Paranna",
|
"Enhance": "Paranna",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Varmista, että CSV-tiedostossasi on 4 saraketta tässä järjestyksessä: Nimi, Sähköposti, Salasana, Rooli.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Varmista, että CSV-tiedostossasi on 4 saraketta tässä järjestyksessä: Nimi, Sähköposti, Salasana, Rooli.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(par ex. `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(par ex. `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(par exemple `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(par exemple `sh webui.sh --api`)",
|
||||||
"(latest)": "(dernier)",
|
"(latest)": "(dernier)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ modèles }}",
|
"{{ models }}": "{{ modèles }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Mauvaise réponse",
|
"Bad Response": "Mauvaise réponse",
|
||||||
"Banners": "Banniers",
|
"Banners": "Banniers",
|
||||||
"Base Model (From)": "Modèle de base (à partir de)",
|
"Base Model (From)": "Modèle de base (à partir de)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Taille du lot (num_batch)",
|
"Batch Size (num_batch)": "Taille du lot (num_batch)",
|
||||||
"before": "avant",
|
"before": "avant",
|
||||||
"Being lazy": "Être fainéant",
|
"Being lazy": "Être fainéant",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Modifier",
|
"Edit": "Modifier",
|
||||||
"Edit Arena Model": "",
|
"Edit Arena Model": "",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "Activer les nouvelles inscriptions",
|
"Enable New Sign Ups": "Activer les nouvelles inscriptions",
|
||||||
"Enabled": "",
|
"Enabled": "",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Vérifiez que votre fichier CSV comprenne les 4 colonnes dans cet ordre : Name, Email, Password, Role.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Vérifiez que votre fichier CSV comprenne les 4 colonnes dans cet ordre : Name, Email, Password, Role.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(par ex. `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(par ex. `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(par exemple `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(par exemple `sh webui.sh --api`)",
|
||||||
"(latest)": "(dernière version)",
|
"(latest)": "(dernière version)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "(Ollama)",
|
"(Ollama)": "(Ollama)",
|
||||||
"{{ models }}": "{{ models }}",
|
"{{ models }}": "{{ models }}",
|
||||||
"{{COUNT}} Available Tools": "Nombre d'outils disponibles {{COUNT}}",
|
"{{COUNT}} Available Tools": "Nombre d'outils disponibles {{COUNT}}",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Mauvaise réponse",
|
"Bad Response": "Mauvaise réponse",
|
||||||
"Banners": "Bannières",
|
"Banners": "Bannières",
|
||||||
"Base Model (From)": "Modèle de base (à partir de)",
|
"Base Model (From)": "Modèle de base (à partir de)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Batch Size (num_batch)",
|
"Batch Size (num_batch)": "Batch Size (num_batch)",
|
||||||
"before": "avant",
|
"before": "avant",
|
||||||
"Being lazy": "Être fainéant",
|
"Being lazy": "Être fainéant",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "par ex. Outils pour effectuer diverses opérations",
|
"e.g. Tools for performing various operations": "par ex. Outils pour effectuer diverses opérations",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "par ex., en-US, ja-JP (laisser vide pour détection automatique)",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "par ex., en-US, ja-JP (laisser vide pour détection automatique)",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Modifier",
|
"Edit": "Modifier",
|
||||||
"Edit Arena Model": "Modifier le modèle d'arène",
|
"Edit Arena Model": "Modifier le modèle d'arène",
|
||||||
"Edit Channel": "Modifier le canal",
|
"Edit Channel": "Modifier le canal",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "Activer l'échantillonnage Mirostat pour contrôler Perplexité.",
|
"Enable Mirostat sampling for controlling perplexity.": "Activer l'échantillonnage Mirostat pour contrôler Perplexité.",
|
||||||
"Enable New Sign Ups": "Activer les nouvelles inscriptions",
|
"Enable New Sign Ups": "Activer les nouvelles inscriptions",
|
||||||
"Enabled": "Activé",
|
"Enabled": "Activé",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "Imposer les discussions temporaires",
|
"Enforce Temporary Chat": "Imposer les discussions temporaires",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Vérifiez que votre fichier CSV comprenne les 4 colonnes dans cet ordre : Name, Email, Password, Role.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Vérifiez que votre fichier CSV comprenne les 4 colonnes dans cet ordre : Name, Email, Password, Role.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||||
"(e.g. `sh webui.sh --api`)": "(למשל `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(למשל `sh webui.sh --api`)",
|
||||||
"(latest)": "(האחרון)",
|
"(latest)": "(האחרון)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ דגמים }}",
|
"{{ models }}": "{{ דגמים }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "תגובה שגויה",
|
"Bad Response": "תגובה שגויה",
|
||||||
"Banners": "באנרים",
|
"Banners": "באנרים",
|
||||||
"Base Model (From)": "דגם בסיס (מ)",
|
"Base Model (From)": "דגם בסיס (מ)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "",
|
"Batch Size (num_batch)": "",
|
||||||
"before": "לפני",
|
"before": "לפני",
|
||||||
"Being lazy": "להיות עצלן",
|
"Being lazy": "להיות עצלן",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "ערוך",
|
"Edit": "ערוך",
|
||||||
"Edit Arena Model": "",
|
"Edit Arena Model": "",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "אפשר הרשמות חדשות",
|
"Enable New Sign Ups": "אפשר הרשמות חדשות",
|
||||||
"Enabled": "",
|
"Enabled": "",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ודא שקובץ ה-CSV שלך כולל 4 עמודות בסדר הבא: שם, דוא\"ל, סיסמה, תפקיד.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ודא שקובץ ה-CSV שלך כולל 4 עמודות בסדר הבא: שם, דוא\"ל, סיסמה, תפקיד.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||||
"(e.g. `sh webui.sh --api`)": "(e.g. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(e.g. `sh webui.sh --api`)",
|
||||||
"(latest)": "(latest)",
|
"(latest)": "(latest)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ मॉडल }}",
|
"{{ models }}": "{{ मॉडल }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "ख़राब प्रतिक्रिया",
|
"Bad Response": "ख़राब प्रतिक्रिया",
|
||||||
"Banners": "बैनर",
|
"Banners": "बैनर",
|
||||||
"Base Model (From)": "बेस मॉडल (से)",
|
"Base Model (From)": "बेस मॉडल (से)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "",
|
"Batch Size (num_batch)": "",
|
||||||
"before": "पहले",
|
"before": "पहले",
|
||||||
"Being lazy": "आलसी होना",
|
"Being lazy": "आलसी होना",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "संपादित करें",
|
"Edit": "संपादित करें",
|
||||||
"Edit Arena Model": "",
|
"Edit Arena Model": "",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "नए साइन अप सक्रिय करें",
|
"Enable New Sign Ups": "नए साइन अप सक्रिय करें",
|
||||||
"Enabled": "",
|
"Enabled": "",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "सुनिश्चित करें कि आपकी CSV फ़ाइल में इस क्रम में 4 कॉलम शामिल हैं: नाम, ईमेल, पासवर्ड, भूमिका।",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "सुनिश्चित करें कि आपकी CSV फ़ाइल में इस क्रम में 4 कॉलम शामिल हैं: नाम, ईमेल, पासवर्ड, भूमिका।",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||||
"(e.g. `sh webui.sh --api`)": "(npr. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(npr. `sh webui.sh --api`)",
|
||||||
"(latest)": "(najnovije)",
|
"(latest)": "(najnovije)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ modeli }}",
|
"{{ models }}": "{{ modeli }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Loš odgovor",
|
"Bad Response": "Loš odgovor",
|
||||||
"Banners": "Baneri",
|
"Banners": "Baneri",
|
||||||
"Base Model (From)": "Osnovni model (Od)",
|
"Base Model (From)": "Osnovni model (Od)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "",
|
"Batch Size (num_batch)": "",
|
||||||
"before": "prije",
|
"before": "prije",
|
||||||
"Being lazy": "Biti lijen",
|
"Being lazy": "Biti lijen",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Uredi",
|
"Edit": "Uredi",
|
||||||
"Edit Arena Model": "",
|
"Edit Arena Model": "",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "Omogući nove prijave",
|
"Enable New Sign Ups": "Omogući nove prijave",
|
||||||
"Enabled": "",
|
"Enabled": "",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Provjerite da vaša CSV datoteka uključuje 4 stupca u ovom redoslijedu: Name, Email, Password, Role.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Provjerite da vaša CSV datoteka uključuje 4 stupca u ovom redoslijedu: Name, Email, Password, Role.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(pl. `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(pl. `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(pl. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(pl. `sh webui.sh --api`)",
|
||||||
"(latest)": "(legújabb)",
|
"(latest)": "(legújabb)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "(Ollama)",
|
"(Ollama)": "(Ollama)",
|
||||||
"{{ models }}": "{{ modellek }}",
|
"{{ models }}": "{{ modellek }}",
|
||||||
"{{COUNT}} Available Tools": "{{COUNT}} Elérhető eszköz",
|
"{{COUNT}} Available Tools": "{{COUNT}} Elérhető eszköz",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Rossz válasz",
|
"Bad Response": "Rossz válasz",
|
||||||
"Banners": "Bannerek",
|
"Banners": "Bannerek",
|
||||||
"Base Model (From)": "Alap modell (Forrás)",
|
"Base Model (From)": "Alap modell (Forrás)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Köteg méret (num_batch)",
|
"Batch Size (num_batch)": "Köteg méret (num_batch)",
|
||||||
"before": "előtt",
|
"before": "előtt",
|
||||||
"Being lazy": "Lustaság",
|
"Being lazy": "Lustaság",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "pl. Eszközök különböző műveletek elvégzéséhez",
|
"e.g. Tools for performing various operations": "pl. Eszközök különböző műveletek elvégzéséhez",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Szerkesztés",
|
"Edit": "Szerkesztés",
|
||||||
"Edit Arena Model": "Arena modell szerkesztése",
|
"Edit Arena Model": "Arena modell szerkesztése",
|
||||||
"Edit Channel": "Csatorna szerkesztése",
|
"Edit Channel": "Csatorna szerkesztése",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "Engedélyezd a Mirostat mintavételezést a perplexitás szabályozásához.",
|
"Enable Mirostat sampling for controlling perplexity.": "Engedélyezd a Mirostat mintavételezést a perplexitás szabályozásához.",
|
||||||
"Enable New Sign Ups": "Új regisztrációk engedélyezése",
|
"Enable New Sign Ups": "Új regisztrációk engedélyezése",
|
||||||
"Enabled": "Engedélyezve",
|
"Enabled": "Engedélyezve",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "Ideiglenes csevegés kikényszerítése",
|
"Enforce Temporary Chat": "Ideiglenes csevegés kikényszerítése",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Győződj meg róla, hogy a CSV fájl tartalmazza ezt a 4 oszlopot ebben a sorrendben: Név, Email, Jelszó, Szerep.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Győződj meg róla, hogy a CSV fájl tartalmazza ezt a 4 oszlopot ebben a sorrendben: Név, Email, Jelszó, Szerep.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(contoh: `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(contoh: `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(contoh: `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(contoh: `sh webui.sh --api`)",
|
||||||
"(latest)": "(terbaru)",
|
"(latest)": "(terbaru)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ models }}",
|
"{{ models }}": "{{ models }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Respons Buruk",
|
"Bad Response": "Respons Buruk",
|
||||||
"Banners": "Spanduk",
|
"Banners": "Spanduk",
|
||||||
"Base Model (From)": "Model Dasar (Dari)",
|
"Base Model (From)": "Model Dasar (Dari)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Ukuran Batch (num_batch)",
|
"Batch Size (num_batch)": "Ukuran Batch (num_batch)",
|
||||||
"before": "sebelum",
|
"before": "sebelum",
|
||||||
"Being lazy": "Menjadi malas",
|
"Being lazy": "Menjadi malas",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Edit",
|
"Edit": "Edit",
|
||||||
"Edit Arena Model": "",
|
"Edit Arena Model": "",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "Aktifkan Pendaftaran Baru",
|
"Enable New Sign Ups": "Aktifkan Pendaftaran Baru",
|
||||||
"Enabled": "",
|
"Enabled": "",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Pastikan file CSV Anda menyertakan 4 kolom dengan urutan sebagai berikut: Nama, Email, Kata Sandi, Peran.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Pastikan file CSV Anda menyertakan 4 kolom dengan urutan sebagai berikut: Nama, Email, Kata Sandi, Peran.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(m.sh. `sh webui.sh --api --api-auth username_password `)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(m.sh. `sh webui.sh --api --api-auth username_password `)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(m.sh. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(m.sh. `sh webui.sh --api`)",
|
||||||
"(latest)": "(is déanaí)",
|
"(latest)": "(is déanaí)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "(Ollama)",
|
"(Ollama)": "(Ollama)",
|
||||||
"{{ models }}": "{{ models }}",
|
"{{ models }}": "{{ models }}",
|
||||||
"{{COUNT}} Available Tools": "{{COUNT}} Uirlisí ar Fáil",
|
"{{COUNT}} Available Tools": "{{COUNT}} Uirlisí ar Fáil",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Droch-fhreagra",
|
"Bad Response": "Droch-fhreagra",
|
||||||
"Banners": "Meirgí",
|
"Banners": "Meirgí",
|
||||||
"Base Model (From)": "Múnla Bonn (Ó)",
|
"Base Model (From)": "Múnla Bonn (Ó)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Méid Baisc (num_batch)",
|
"Batch Size (num_batch)": "Méid Baisc (num_batch)",
|
||||||
"before": "roimh",
|
"before": "roimh",
|
||||||
"Being lazy": "A bheith leisciúil",
|
"Being lazy": "A bheith leisciúil",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "m.sh. Uirlisí chun oibríochtaí éagsúla a dhéanamh",
|
"e.g. Tools for performing various operations": "m.sh. Uirlisí chun oibríochtaí éagsúla a dhéanamh",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "m.sh., en-US, ja-JP (fág bán le haghaidh uathbhraite)",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "m.sh., en-US, ja-JP (fág bán le haghaidh uathbhraite)",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Cuir in eagar",
|
"Edit": "Cuir in eagar",
|
||||||
"Edit Arena Model": "Cuir Samhail Airéine in Eagar",
|
"Edit Arena Model": "Cuir Samhail Airéine in Eagar",
|
||||||
"Edit Channel": "Cuir Cainéal in Eagar",
|
"Edit Channel": "Cuir Cainéal in Eagar",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "Cumasaigh sampláil Mirostat chun seachrán a rialú.",
|
"Enable Mirostat sampling for controlling perplexity.": "Cumasaigh sampláil Mirostat chun seachrán a rialú.",
|
||||||
"Enable New Sign Ups": "Cumasaigh Clárúcháin Nua",
|
"Enable New Sign Ups": "Cumasaigh Clárúcháin Nua",
|
||||||
"Enabled": "Cumasaithe",
|
"Enabled": "Cumasaithe",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "Cuir Comhrá Sealadach i bhfeidhm",
|
"Enforce Temporary Chat": "Cuir Comhrá Sealadach i bhfeidhm",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Déan cinnte go bhfuil 4 cholún san ord seo i do chomhad CSV: Ainm, Ríomhphost, Pasfhocal, Ról.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Déan cinnte go bhfuil 4 cholún san ord seo i do chomhad CSV: Ainm, Ríomhphost, Pasfhocal, Ról.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||||
"(e.g. `sh webui.sh --api`)": "(p.e. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(p.e. `sh webui.sh --api`)",
|
||||||
"(latest)": "(ultima)",
|
"(latest)": "(ultima)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ modelli }}",
|
"{{ models }}": "{{ modelli }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Risposta non valida",
|
"Bad Response": "Risposta non valida",
|
||||||
"Banners": "Banner",
|
"Banners": "Banner",
|
||||||
"Base Model (From)": "Modello base (da)",
|
"Base Model (From)": "Modello base (da)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "",
|
"Batch Size (num_batch)": "",
|
||||||
"before": "prima",
|
"before": "prima",
|
||||||
"Being lazy": "Essere pigri",
|
"Being lazy": "Essere pigri",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Modifica",
|
"Edit": "Modifica",
|
||||||
"Edit Arena Model": "",
|
"Edit Arena Model": "",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "Abilita nuove iscrizioni",
|
"Enable New Sign Ups": "Abilita nuove iscrizioni",
|
||||||
"Enabled": "",
|
"Enabled": "",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Assicurati che il tuo file CSV includa 4 colonne in questo ordine: Nome, Email, Password, Ruolo.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Assicurati che il tuo file CSV includa 4 colonne in questo ordine: Nome, Email, Password, Ruolo.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(例: `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(例: `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(例: `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(例: `sh webui.sh --api`)",
|
||||||
"(latest)": "(最新)",
|
"(latest)": "(最新)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ モデル }}",
|
"{{ models }}": "{{ モデル }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "応答が悪い",
|
"Bad Response": "応答が悪い",
|
||||||
"Banners": "バナー",
|
"Banners": "バナー",
|
||||||
"Base Model (From)": "ベースモデル (From)",
|
"Base Model (From)": "ベースモデル (From)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "バッチサイズ (num_batch)",
|
"Batch Size (num_batch)": "バッチサイズ (num_batch)",
|
||||||
"before": "より前",
|
"before": "より前",
|
||||||
"Being lazy": "怠惰な",
|
"Being lazy": "怠惰な",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "編集",
|
"Edit": "編集",
|
||||||
"Edit Arena Model": "",
|
"Edit Arena Model": "",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "新規登録を有効にする",
|
"Enable New Sign Ups": "新規登録を有効にする",
|
||||||
"Enabled": "有効",
|
"Enabled": "有効",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSVファイルに4つの列が含まれていることを確認してください: Name, Email, Password, Role.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSVファイルに4つの列が含まれていることを確認してください: Name, Email, Password, Role.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(მაგ: `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(მაგ: `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(მაგ: `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(მაგ: `sh webui.sh --api`)",
|
||||||
"(latest)": "(უახლესი)",
|
"(latest)": "(უახლესი)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ მოდელები }}",
|
"{{ models }}": "{{ მოდელები }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "არასწორი პასუხი",
|
"Bad Response": "არასწორი პასუხი",
|
||||||
"Banners": "ბანერები",
|
"Banners": "ბანერები",
|
||||||
"Base Model (From)": "საბაზისო მოდელი (საიდან)",
|
"Base Model (From)": "საბაზისო მოდელი (საიდან)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "",
|
"Batch Size (num_batch)": "",
|
||||||
"before": "მითითებულ დრომდე",
|
"before": "მითითებულ დრომდე",
|
||||||
"Being lazy": "ზარმაცობა",
|
"Being lazy": "ზარმაცობა",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "ჩასწორება",
|
"Edit": "ჩასწორება",
|
||||||
"Edit Arena Model": "არენის მოდელის ჩასწორება",
|
"Edit Arena Model": "არენის მოდელის ჩასწორება",
|
||||||
"Edit Channel": "არხის ჩასწორება",
|
"Edit Channel": "არხის ჩასწორება",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "ახალი რეგისტრაციების ჩართვა",
|
"Enable New Sign Ups": "ახალი რეგისტრაციების ჩართვა",
|
||||||
"Enabled": "ჩართულია",
|
"Enabled": "ჩართულია",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "დარწმუნდით, რომ თქვენი CSV-ფაილი შეიცავს 4 ველს ამ მიმდევრობით: სახელი, ელფოსტა, პაროლი, როლი.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "დარწმუნდით, რომ თქვენი CSV-ფაილი შეიცავს 4 ველს ამ მიმდევრობით: სახელი, ელფოსტა, პაროლი, როლი.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(예: `sh webui.sh --api --api-auth 사용자이름_비밀번호`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(예: `sh webui.sh --api --api-auth 사용자이름_비밀번호`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(예: `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(예: `sh webui.sh --api`)",
|
||||||
"(latest)": "(최근)",
|
"(latest)": "(최근)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ models }}",
|
"{{ models }}": "{{ models }}",
|
||||||
"{{COUNT}} Available Tools": "사용 가능한 도구 {{COUNT}}개",
|
"{{COUNT}} Available Tools": "사용 가능한 도구 {{COUNT}}개",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "잘못된 응답",
|
"Bad Response": "잘못된 응답",
|
||||||
"Banners": "배너",
|
"Banners": "배너",
|
||||||
"Base Model (From)": "기본 모델(시작)",
|
"Base Model (From)": "기본 모델(시작)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "배치 크기 (num_batch)",
|
"Batch Size (num_batch)": "배치 크기 (num_batch)",
|
||||||
"before": "이전",
|
"before": "이전",
|
||||||
"Being lazy": "게으름 피우기",
|
"Being lazy": "게으름 피우기",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "예: 다양한 작업을 수행하는 도구",
|
"e.g. Tools for performing various operations": "예: 다양한 작업을 수행하는 도구",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "예: en-US, ja-JP (자동 감지를 위해 비워 두세요)",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "예: en-US, ja-JP (자동 감지를 위해 비워 두세요)",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "편집",
|
"Edit": "편집",
|
||||||
"Edit Arena Model": "아레나 모델 편집",
|
"Edit Arena Model": "아레나 모델 편집",
|
||||||
"Edit Channel": "채널 편집",
|
"Edit Channel": "채널 편집",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "퍼플렉서티 제어를 위해 Mirostat 샘플링 활성화",
|
"Enable Mirostat sampling for controlling perplexity.": "퍼플렉서티 제어를 위해 Mirostat 샘플링 활성화",
|
||||||
"Enable New Sign Ups": "새 회원가입 활성화",
|
"Enable New Sign Ups": "새 회원가입 활성화",
|
||||||
"Enabled": "활성화됨",
|
"Enabled": "활성화됨",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "임시 채팅 강제 적용",
|
"Enforce Temporary Chat": "임시 채팅 강제 적용",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV 파일에 이름, 이메일, 비밀번호, 역할 4개의 열이 순서대로 포함되어 있는지 확인하세요.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV 파일에 이름, 이메일, 비밀번호, 역할 4개의 열이 순서대로 포함되어 있는지 확인하세요.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(pvz. `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(pvz. `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(pvz. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(pvz. `sh webui.sh --api`)",
|
||||||
"(latest)": "(naujausias)",
|
"(latest)": "(naujausias)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ models }}",
|
"{{ models }}": "{{ models }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Neteisingas atsakymas",
|
"Bad Response": "Neteisingas atsakymas",
|
||||||
"Banners": "Baneriai",
|
"Banners": "Baneriai",
|
||||||
"Base Model (From)": "Bazinis modelis",
|
"Base Model (From)": "Bazinis modelis",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Batch dydis",
|
"Batch Size (num_batch)": "Batch dydis",
|
||||||
"before": "prieš",
|
"before": "prieš",
|
||||||
"Being lazy": "Būvimas tingiu",
|
"Being lazy": "Būvimas tingiu",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Redaguoti",
|
"Edit": "Redaguoti",
|
||||||
"Edit Arena Model": "",
|
"Edit Arena Model": "",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "Aktyvuoti naujas registracijas",
|
"Enable New Sign Ups": "Aktyvuoti naujas registracijas",
|
||||||
"Enabled": "Leisti",
|
"Enabled": "Leisti",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Įsitikinkite, kad CSV failas turi 4 kolonas šiuo eiliškumu: Name, Email, Password, Role.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Įsitikinkite, kad CSV failas turi 4 kolonas šiuo eiliškumu: Name, Email, Password, Role.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(contoh `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(contoh `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(contoh `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(contoh `sh webui.sh --api`)",
|
||||||
"(latest)": "(terkini)",
|
"(latest)": "(terkini)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ models }}",
|
"{{ models }}": "{{ models }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Maklumbalas Salah",
|
"Bad Response": "Maklumbalas Salah",
|
||||||
"Banners": "Sepanduk",
|
"Banners": "Sepanduk",
|
||||||
"Base Model (From)": "Model Asas (Dari)",
|
"Base Model (From)": "Model Asas (Dari)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Saiz Kumpulan (num_batch)",
|
"Batch Size (num_batch)": "Saiz Kumpulan (num_batch)",
|
||||||
"before": "sebelum,",
|
"before": "sebelum,",
|
||||||
"Being lazy": "Menjadi Malas",
|
"Being lazy": "Menjadi Malas",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Edit",
|
"Edit": "Edit",
|
||||||
"Edit Arena Model": "",
|
"Edit Arena Model": "",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "Benarkan Pendaftaran Baharu",
|
"Enable New Sign Ups": "Benarkan Pendaftaran Baharu",
|
||||||
"Enabled": "Dibenarkan",
|
"Enabled": "Dibenarkan",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "astikan fail CSV anda mengandungi 4 lajur dalam susunan ini: Nama, E-mel, Kata Laluan, Peranan.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "astikan fail CSV anda mengandungi 4 lajur dalam susunan ini: Nama, E-mel, Kata Laluan, Peranan.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(f.eks. `sh webui.sh --api --api-auth brukernavn_passord`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(f.eks. `sh webui.sh --api --api-auth brukernavn_passord`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(f.eks. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(f.eks. `sh webui.sh --api`)",
|
||||||
"(latest)": "(siste)",
|
"(latest)": "(siste)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ modeller }}",
|
"{{ models }}": "{{ modeller }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Dårlig svar",
|
"Bad Response": "Dårlig svar",
|
||||||
"Banners": "Bannere",
|
"Banners": "Bannere",
|
||||||
"Base Model (From)": "Grunnmodell (fra)",
|
"Base Model (From)": "Grunnmodell (fra)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Batchstørrelse (num_batch)",
|
"Batch Size (num_batch)": "Batchstørrelse (num_batch)",
|
||||||
"before": "før",
|
"before": "før",
|
||||||
"Being lazy": "Er lat",
|
"Being lazy": "Er lat",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "f.eks. Verktøy for å gjøre ulike handlinger",
|
"e.g. Tools for performing various operations": "f.eks. Verktøy for å gjøre ulike handlinger",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Rediger",
|
"Edit": "Rediger",
|
||||||
"Edit Arena Model": "Rediger Arena-modell",
|
"Edit Arena Model": "Rediger Arena-modell",
|
||||||
"Edit Channel": "Rediger kanal",
|
"Edit Channel": "Rediger kanal",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "Aktiver nye registreringer",
|
"Enable New Sign Ups": "Aktiver nye registreringer",
|
||||||
"Enabled": "Aktivert",
|
"Enabled": "Aktivert",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Sørg for at CSV-filen din inkluderer fire kolonner i denne rekkefølgen: Navn, E-post, Passord, Rolle.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Sørg for at CSV-filen din inkluderer fire kolonner i denne rekkefølgen: Navn, E-post, Passord, Rolle.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(bv. `sh webui.sh --api --api-auth gebruikersnaam_wachtwoord`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(bv. `sh webui.sh --api --api-auth gebruikersnaam_wachtwoord`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(bv. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(bv. `sh webui.sh --api`)",
|
||||||
"(latest)": "(nieuwste)",
|
"(latest)": "(nieuwste)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "(Ollama)",
|
"(Ollama)": "(Ollama)",
|
||||||
"{{ models }}": "{{ modellen }}",
|
"{{ models }}": "{{ modellen }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Ongeldig antwoord",
|
"Bad Response": "Ongeldig antwoord",
|
||||||
"Banners": "Banners",
|
"Banners": "Banners",
|
||||||
"Base Model (From)": "Basismodel (Vanaf)",
|
"Base Model (From)": "Basismodel (Vanaf)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Batchgrootte (num_batch)",
|
"Batch Size (num_batch)": "Batchgrootte (num_batch)",
|
||||||
"before": "voor",
|
"before": "voor",
|
||||||
"Being lazy": "Lui zijn",
|
"Being lazy": "Lui zijn",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "Gereedschappen om verschillende bewerkingen uit te voeren",
|
"e.g. Tools for performing various operations": "Gereedschappen om verschillende bewerkingen uit te voeren",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Wijzig",
|
"Edit": "Wijzig",
|
||||||
"Edit Arena Model": "Bewerk arenamodel",
|
"Edit Arena Model": "Bewerk arenamodel",
|
||||||
"Edit Channel": "Bewerk kanaal",
|
"Edit Channel": "Bewerk kanaal",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "Mirostat-sampling in om perplexiteit te controleren inschakelen.",
|
"Enable Mirostat sampling for controlling perplexity.": "Mirostat-sampling in om perplexiteit te controleren inschakelen.",
|
||||||
"Enable New Sign Ups": "Schakel nieuwe registraties in",
|
"Enable New Sign Ups": "Schakel nieuwe registraties in",
|
||||||
"Enabled": "Ingeschakeld",
|
"Enabled": "Ingeschakeld",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "Tijdelijke chat afdwingen",
|
"Enforce Temporary Chat": "Tijdelijke chat afdwingen",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Zorg ervoor dat uw CSV-bestand de volgende vier kolommen in deze volgorde bevat: Naam, E-mail, Wachtwoord, Rol.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Zorg ervoor dat uw CSV-bestand de volgende vier kolommen in deze volgorde bevat: Naam, E-mail, Wachtwoord, Rol.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||||
"(e.g. `sh webui.sh --api`)": "(ਉਦਾਹਰਣ ਦੇ ਤੌਰ ਤੇ `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(ਉਦਾਹਰਣ ਦੇ ਤੌਰ ਤੇ `sh webui.sh --api`)",
|
||||||
"(latest)": "(ਤਾਜ਼ਾ)",
|
"(latest)": "(ਤਾਜ਼ਾ)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ ਮਾਡਲ }}",
|
"{{ models }}": "{{ ਮਾਡਲ }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "ਖਰਾਬ ਜਵਾਬ",
|
"Bad Response": "ਖਰਾਬ ਜਵਾਬ",
|
||||||
"Banners": "ਬੈਨਰ",
|
"Banners": "ਬੈਨਰ",
|
||||||
"Base Model (From)": "ਬੇਸ ਮਾਡਲ (ਤੋਂ)",
|
"Base Model (From)": "ਬੇਸ ਮਾਡਲ (ਤੋਂ)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "",
|
"Batch Size (num_batch)": "",
|
||||||
"before": "ਪਹਿਲਾਂ",
|
"before": "ਪਹਿਲਾਂ",
|
||||||
"Being lazy": "ਆਲਸੀ ਹੋਣਾ",
|
"Being lazy": "ਆਲਸੀ ਹੋਣਾ",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "ਸੰਪਾਦਨ ਕਰੋ",
|
"Edit": "ਸੰਪਾਦਨ ਕਰੋ",
|
||||||
"Edit Arena Model": "",
|
"Edit Arena Model": "",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "ਨਵੇਂ ਸਾਈਨ ਅਪ ਯੋਗ ਕਰੋ",
|
"Enable New Sign Ups": "ਨਵੇਂ ਸਾਈਨ ਅਪ ਯੋਗ ਕਰੋ",
|
||||||
"Enabled": "",
|
"Enabled": "",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ਸੁਨਿਸ਼ਚਿਤ ਕਰੋ ਕਿ ਤੁਹਾਡੀ CSV ਫਾਈਲ ਵਿੱਚ ਇਸ ਕ੍ਰਮ ਵਿੱਚ 4 ਕਾਲਮ ਹਨ: ਨਾਮ, ਈਮੇਲ, ਪਾਸਵਰਡ, ਭੂਮਿਕਾ।",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ਸੁਨਿਸ਼ਚਿਤ ਕਰੋ ਕਿ ਤੁਹਾਡੀ CSV ਫਾਈਲ ਵਿੱਚ ਇਸ ਕ੍ਰਮ ਵਿੱਚ 4 ਕਾਲਮ ਹਨ: ਨਾਮ, ਈਮੇਲ, ਪਾਸਵਰਡ, ਭੂਮਿਕਾ।",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(np. `sh webui.sh --api --api-auth username_password`)>",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(np. `sh webui.sh --api --api-auth username_password`)>",
|
||||||
"(e.g. `sh webui.sh --api`)": "(np. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(np. `sh webui.sh --api`)",
|
||||||
"(latest)": "(najnowszy)",
|
"(latest)": "(najnowszy)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ modele }}",
|
"{{ models }}": "{{ modele }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Nieprawidłowa odpowiedź",
|
"Bad Response": "Nieprawidłowa odpowiedź",
|
||||||
"Banners": "Bannery",
|
"Banners": "Bannery",
|
||||||
"Base Model (From)": "Model bazowy (od)",
|
"Base Model (From)": "Model bazowy (od)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Rozmiar partii (num_batch)",
|
"Batch Size (num_batch)": "Rozmiar partii (num_batch)",
|
||||||
"before": "przed",
|
"before": "przed",
|
||||||
"Being lazy": "Jest leniwy.",
|
"Being lazy": "Jest leniwy.",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "np. Narzędzia do wykonywania różnych operacji",
|
"e.g. Tools for performing various operations": "np. Narzędzia do wykonywania różnych operacji",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Edytuj",
|
"Edit": "Edytuj",
|
||||||
"Edit Arena Model": "Edytuj model arenę",
|
"Edit Arena Model": "Edytuj model arenę",
|
||||||
"Edit Channel": "Edytuj kanał",
|
"Edit Channel": "Edytuj kanał",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "Włącz nowe rejestracje",
|
"Enable New Sign Ups": "Włącz nowe rejestracje",
|
||||||
"Enabled": "Włączone",
|
"Enabled": "Włączone",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Upewnij się, że twój plik CSV zawiera dokładnie 4 kolumny w następującej kolejności: Nazwa, Email, Hasło, Rola.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Upewnij się, że twój plik CSV zawiera dokładnie 4 kolumny w następującej kolejności: Nazwa, Email, Hasło, Rola.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(por exemplo, `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(por exemplo, `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(por exemplo, `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(por exemplo, `sh webui.sh --api`)",
|
||||||
"(latest)": "(último)",
|
"(latest)": "(último)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ models }}",
|
"{{ models }}": "{{ models }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Resposta Ruim",
|
"Bad Response": "Resposta Ruim",
|
||||||
"Banners": "Banners",
|
"Banners": "Banners",
|
||||||
"Base Model (From)": "Modelo Base (De)",
|
"Base Model (From)": "Modelo Base (De)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Tamanho do Lote (num_batch)",
|
"Batch Size (num_batch)": "Tamanho do Lote (num_batch)",
|
||||||
"before": "antes",
|
"before": "antes",
|
||||||
"Being lazy": "Sendo preguiçoso",
|
"Being lazy": "Sendo preguiçoso",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "Exemplo: Ferramentas para executar operações diversas",
|
"e.g. Tools for performing various operations": "Exemplo: Ferramentas para executar operações diversas",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Editar",
|
"Edit": "Editar",
|
||||||
"Edit Arena Model": "Editar Arena de Modelos",
|
"Edit Arena Model": "Editar Arena de Modelos",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "Ativar Novos Cadastros",
|
"Enable New Sign Ups": "Ativar Novos Cadastros",
|
||||||
"Enabled": "Ativado",
|
"Enabled": "Ativado",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Certifique-se de que seu arquivo CSV inclua 4 colunas nesta ordem: Nome, Email, Senha, Função.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Certifique-se de que seu arquivo CSV inclua 4 colunas nesta ordem: Nome, Email, Senha, Função.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||||
"(e.g. `sh webui.sh --api`)": "(por exemplo, `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(por exemplo, `sh webui.sh --api`)",
|
||||||
"(latest)": "(mais recente)",
|
"(latest)": "(mais recente)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ modelos }}",
|
"{{ models }}": "{{ modelos }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Resposta má",
|
"Bad Response": "Resposta má",
|
||||||
"Banners": "Estandartes",
|
"Banners": "Estandartes",
|
||||||
"Base Model (From)": "Modelo Base (De)",
|
"Base Model (From)": "Modelo Base (De)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "",
|
"Batch Size (num_batch)": "",
|
||||||
"before": "antes",
|
"before": "antes",
|
||||||
"Being lazy": "Ser preguiçoso",
|
"Being lazy": "Ser preguiçoso",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Editar",
|
"Edit": "Editar",
|
||||||
"Edit Arena Model": "",
|
"Edit Arena Model": "",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "Ativar Novas Inscrições",
|
"Enable New Sign Ups": "Ativar Novas Inscrições",
|
||||||
"Enabled": "",
|
"Enabled": "",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Confirme que o seu ficheiro CSV inclui 4 colunas nesta ordem: Nome, E-mail, Senha, Função.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Confirme que o seu ficheiro CSV inclui 4 colunas nesta ordem: Nome, E-mail, Senha, Função.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(de ex. `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(de ex. `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(de ex. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(de ex. `sh webui.sh --api`)",
|
||||||
"(latest)": "(ultimul)",
|
"(latest)": "(ultimul)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ modele }}",
|
"{{ models }}": "{{ modele }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Răspuns Greșit",
|
"Bad Response": "Răspuns Greșit",
|
||||||
"Banners": "Bannere",
|
"Banners": "Bannere",
|
||||||
"Base Model (From)": "Model de Bază (De la)",
|
"Base Model (From)": "Model de Bază (De la)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Dimensiune Lot (num_batch)",
|
"Batch Size (num_batch)": "Dimensiune Lot (num_batch)",
|
||||||
"before": "înainte",
|
"before": "înainte",
|
||||||
"Being lazy": "Fiind leneș",
|
"Being lazy": "Fiind leneș",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Editează",
|
"Edit": "Editează",
|
||||||
"Edit Arena Model": "Editați Modelul Arena",
|
"Edit Arena Model": "Editați Modelul Arena",
|
||||||
"Edit Channel": "Editează canalul",
|
"Edit Channel": "Editează canalul",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "Activează Înscrierile Noi",
|
"Enable New Sign Ups": "Activează Înscrierile Noi",
|
||||||
"Enabled": "Activat",
|
"Enabled": "Activat",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Asigurați-vă că fișierul CSV include 4 coloane în această ordine: Nume, Email, Parolă, Rol.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Asigurați-vă că fișierul CSV include 4 coloane în această ordine: Nume, Email, Parolă, Rol.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(например, `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(например, `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(например, `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(например, `sh webui.sh --api`)",
|
||||||
"(latest)": "(последняя)",
|
"(latest)": "(последняя)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "(оставьте поле пустым для автоматической генерации коммерческого URL-адреса Azure)",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ модели }}",
|
"{{ models }}": "{{ модели }}",
|
||||||
"{{COUNT}} Available Tools": "{{COUNT}} доступных инструментов",
|
"{{COUNT}} Available Tools": "{{COUNT}} доступных инструментов",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Плохой ответ",
|
"Bad Response": "Плохой ответ",
|
||||||
"Banners": "Баннеры",
|
"Banners": "Баннеры",
|
||||||
"Base Model (From)": "Базовая модель (от)",
|
"Base Model (From)": "Базовая модель (от)",
|
||||||
"Base URL": "Базовый URL адрес",
|
|
||||||
"Batch Size (num_batch)": "Размер партии (num_batch)",
|
"Batch Size (num_batch)": "Размер партии (num_batch)",
|
||||||
"before": "до",
|
"before": "до",
|
||||||
"Being lazy": "Лениво",
|
"Being lazy": "Лениво",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "например, инструменты для выполнения различных операций",
|
"e.g. Tools for performing various operations": "например, инструменты для выполнения различных операций",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "например, 3, 4, 5 (оставьте поле пустым по умолчанию)",
|
"e.g., 3, 4, 5 (leave blank for default)": "например, 3, 4, 5 (оставьте поле пустым по умолчанию)",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "например, en-US,ja-JP (оставьте поле пустым для автоматического определения)",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "например, en-US,ja-JP (оставьте поле пустым для автоматического определения)",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Редактировать",
|
"Edit": "Редактировать",
|
||||||
"Edit Arena Model": "Изменить модель арены",
|
"Edit Arena Model": "Изменить модель арены",
|
||||||
"Edit Channel": "Редактировать канал",
|
"Edit Channel": "Редактировать канал",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "Включите выборку Mirostat для контроля путаницы.",
|
"Enable Mirostat sampling for controlling perplexity.": "Включите выборку Mirostat для контроля путаницы.",
|
||||||
"Enable New Sign Ups": "Разрешить новые регистрации",
|
"Enable New Sign Ups": "Разрешить новые регистрации",
|
||||||
"Enabled": "Включено",
|
"Enabled": "Включено",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "Принудительный временный чат",
|
"Enforce Temporary Chat": "Принудительный временный чат",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Убедитесь, что ваш CSV-файл включает в себя 4 столбца в следующем порядке: Имя, Электронная почта, Пароль, Роль.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Убедитесь, что ваш CSV-файл включает в себя 4 столбца в следующем порядке: Имя, Электронная почта, Пароль, Роль.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(napr. `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(napr. `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(napr. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(napr. `sh webui.sh --api`)",
|
||||||
"(latest)": "Najnovšie",
|
"(latest)": "Najnovšie",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ models }}",
|
"{{ models }}": "{{ models }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Zlá odozva",
|
"Bad Response": "Zlá odozva",
|
||||||
"Banners": "Bannery",
|
"Banners": "Bannery",
|
||||||
"Base Model (From)": "Základný model (z)",
|
"Base Model (From)": "Základný model (z)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Veľkosť batchu (num_batch)",
|
"Batch Size (num_batch)": "Veľkosť batchu (num_batch)",
|
||||||
"before": "pred",
|
"before": "pred",
|
||||||
"Being lazy": "",
|
"Being lazy": "",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Upraviť",
|
"Edit": "Upraviť",
|
||||||
"Edit Arena Model": "Upraviť Arena Model",
|
"Edit Arena Model": "Upraviť Arena Model",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "Povoliť nové registrácie",
|
"Enable New Sign Ups": "Povoliť nové registrácie",
|
||||||
"Enabled": "Povolené",
|
"Enabled": "Povolené",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Uistite sa, že váš CSV súbor obsahuje 4 stĺpce v tomto poradí: Name, Email, Password, Role.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Uistite sa, že váš CSV súbor obsahuje 4 stĺpce v tomto poradí: Name, Email, Password, Role.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(нпр. `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(нпр. `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(нпр. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(нпр. `sh webui.sh --api`)",
|
||||||
"(latest)": "(најновије)",
|
"(latest)": "(најновије)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ модели }}",
|
"{{ models }}": "{{ модели }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Лош одговор",
|
"Bad Response": "Лош одговор",
|
||||||
"Banners": "Барјаке",
|
"Banners": "Барјаке",
|
||||||
"Base Model (From)": "Основни модел (од)",
|
"Base Model (From)": "Основни модел (од)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "",
|
"Batch Size (num_batch)": "",
|
||||||
"before": "пре",
|
"before": "пре",
|
||||||
"Being lazy": "Бити лењ",
|
"Being lazy": "Бити лењ",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Измени",
|
"Edit": "Измени",
|
||||||
"Edit Arena Model": "Измени модел арене",
|
"Edit Arena Model": "Измени модел арене",
|
||||||
"Edit Channel": "Измени канал",
|
"Edit Channel": "Измени канал",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "Омогући нове пријаве",
|
"Enable New Sign Ups": "Омогући нове пријаве",
|
||||||
"Enabled": "Омогућено",
|
"Enabled": "Омогућено",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверите се да ваша CSV датотека укључује 4 колоне у овом редоследу: Име, Е-пошта, Лозинка, Улога.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверите се да ваша CSV датотека укључује 4 колоне у овом редоследу: Име, Е-пошта, Лозинка, Улога.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(t.ex. `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(t.ex. `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(t.ex. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(t.ex. `sh webui.sh --api`)",
|
||||||
"(latest)": "(senaste)",
|
"(latest)": "(senaste)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ modeller }}",
|
"{{ models }}": "{{ modeller }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Felaktig respons",
|
"Bad Response": "Felaktig respons",
|
||||||
"Banners": "Banners",
|
"Banners": "Banners",
|
||||||
"Base Model (From)": "Basmodell (Från)",
|
"Base Model (From)": "Basmodell (Från)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Batchstorlek (num_batch)",
|
"Batch Size (num_batch)": "Batchstorlek (num_batch)",
|
||||||
"before": "före",
|
"before": "före",
|
||||||
"Being lazy": "Lägg till",
|
"Being lazy": "Lägg till",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Redigera",
|
"Edit": "Redigera",
|
||||||
"Edit Arena Model": "",
|
"Edit Arena Model": "",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "Aktivera nya registreringar",
|
"Enable New Sign Ups": "Aktivera nya registreringar",
|
||||||
"Enabled": "",
|
"Enabled": "",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Se till att din CSV-fil innehåller fyra kolumner i denna ordning: Name, Email, Password, Role.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Se till att din CSV-fil innehåller fyra kolumner i denna ordning: Name, Email, Password, Role.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(เช่น `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(เช่น `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(เช่น `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(เช่น `sh webui.sh --api`)",
|
||||||
"(latest)": "(ล่าสุด)",
|
"(latest)": "(ล่าสุด)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ models }}",
|
"{{ models }}": "{{ models }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "การตอบสนองที่ไม่ดี",
|
"Bad Response": "การตอบสนองที่ไม่ดี",
|
||||||
"Banners": "แบนเนอร์",
|
"Banners": "แบนเนอร์",
|
||||||
"Base Model (From)": "โมเดลพื้นฐาน (จาก)",
|
"Base Model (From)": "โมเดลพื้นฐาน (จาก)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "ขนาดชุด (num_batch)",
|
"Batch Size (num_batch)": "ขนาดชุด (num_batch)",
|
||||||
"before": "ก่อน",
|
"before": "ก่อน",
|
||||||
"Being lazy": "ขี้เกียจ",
|
"Being lazy": "ขี้เกียจ",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "แก้ไข",
|
"Edit": "แก้ไข",
|
||||||
"Edit Arena Model": "",
|
"Edit Arena Model": "",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "เปิดใช้งานการสมัครใหม่",
|
"Enable New Sign Ups": "เปิดใช้งานการสมัครใหม่",
|
||||||
"Enabled": "เปิดใช้งาน",
|
"Enabled": "เปิดใช้งาน",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ตรวจสอบว่าไฟล์ CSV ของคุณมี 4 คอลัมน์ในลำดับนี้: ชื่อ, อีเมล, รหัสผ่าน, บทบาท",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ตรวจสอบว่าไฟล์ CSV ของคุณมี 4 คอลัมน์ในลำดับนี้: ชื่อ, อีเมล, รหัสผ่าน, บทบาท",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||||
"(e.g. `sh webui.sh --api`)": "",
|
"(e.g. `sh webui.sh --api`)": "",
|
||||||
"(latest)": "",
|
"(latest)": "",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "",
|
"{{ models }}": "",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "",
|
"Bad Response": "",
|
||||||
"Banners": "",
|
"Banners": "",
|
||||||
"Base Model (From)": "",
|
"Base Model (From)": "",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "",
|
"Batch Size (num_batch)": "",
|
||||||
"before": "",
|
"before": "",
|
||||||
"Being lazy": "",
|
"Being lazy": "",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "",
|
"Edit": "",
|
||||||
"Edit Arena Model": "",
|
"Edit Arena Model": "",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "",
|
"Enable New Sign Ups": "",
|
||||||
"Enabled": "",
|
"Enabled": "",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(örn. `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(örn. `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(örn. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(örn. `sh webui.sh --api`)",
|
||||||
"(latest)": "(en son)",
|
"(latest)": "(en son)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ models }}",
|
"{{ models }}": "{{ models }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Kötü Yanıt",
|
"Bad Response": "Kötü Yanıt",
|
||||||
"Banners": "Afişler",
|
"Banners": "Afişler",
|
||||||
"Base Model (From)": "Temel Model ('den)",
|
"Base Model (From)": "Temel Model ('den)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Yığın Boyutu (num_batch)",
|
"Batch Size (num_batch)": "Yığın Boyutu (num_batch)",
|
||||||
"before": "önce",
|
"before": "önce",
|
||||||
"Being lazy": "Tembelleşiyor",
|
"Being lazy": "Tembelleşiyor",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": " örn.Çeşitli işlemleri gerçekleştirmek için araçlar",
|
"e.g. Tools for performing various operations": " örn.Çeşitli işlemleri gerçekleştirmek için araçlar",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Düzenle",
|
"Edit": "Düzenle",
|
||||||
"Edit Arena Model": "Arena Modelini Düzenle",
|
"Edit Arena Model": "Arena Modelini Düzenle",
|
||||||
"Edit Channel": "Kanalı Düzenle",
|
"Edit Channel": "Kanalı Düzenle",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "Yeni Kayıtları Etkinleştir",
|
"Enable New Sign Ups": "Yeni Kayıtları Etkinleştir",
|
||||||
"Enabled": "Etkin",
|
"Enabled": "Etkin",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV dosyanızın şu sırayla 4 sütun içerdiğinden emin olun: İsim, E-posta, Şifre, Rol.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV dosyanızın şu sırayla 4 sütun içerdiğinden emin olun: İsim, E-posta, Şifre, Rol.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(напр. `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(напр. `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(напр. `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(напр. `sh webui.sh --api`)",
|
||||||
"(latest)": "(остання)",
|
"(latest)": "(остання)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "(Ollama)",
|
"(Ollama)": "(Ollama)",
|
||||||
"{{ models }}": "{{ models }}",
|
"{{ models }}": "{{ models }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Неправильна відповідь",
|
"Bad Response": "Неправильна відповідь",
|
||||||
"Banners": "Прапори",
|
"Banners": "Прапори",
|
||||||
"Base Model (From)": "Базова модель (від)",
|
"Base Model (From)": "Базова модель (від)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Розмір партії (num_batch)",
|
"Batch Size (num_batch)": "Розмір партії (num_batch)",
|
||||||
"before": "до того, як",
|
"before": "до того, як",
|
||||||
"Being lazy": "Не поспішати",
|
"Being lazy": "Не поспішати",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "напр., Інструменти для виконання різних операцій",
|
"e.g. Tools for performing various operations": "напр., Інструменти для виконання різних операцій",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Редагувати",
|
"Edit": "Редагувати",
|
||||||
"Edit Arena Model": "Редагувати модель Arena",
|
"Edit Arena Model": "Редагувати модель Arena",
|
||||||
"Edit Channel": "Редагувати канал",
|
"Edit Channel": "Редагувати канал",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "Увімкнути вибірку Mirostat для контролю перплексії.",
|
"Enable Mirostat sampling for controlling perplexity.": "Увімкнути вибірку Mirostat для контролю перплексії.",
|
||||||
"Enable New Sign Ups": "Дозволити нові реєстрації",
|
"Enable New Sign Ups": "Дозволити нові реєстрації",
|
||||||
"Enabled": "Увімкнено",
|
"Enabled": "Увімкнено",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "Застосувати тимчасовий чат",
|
"Enforce Temporary Chat": "Застосувати тимчасовий чат",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Переконайтеся, що ваш CSV-файл містить 4 колонки в такому порядку: Ім'я, Email, Пароль, Роль.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Переконайтеся, що ваш CSV-файл містить 4 колонки в такому порядку: Ім'я, Email, Пароль, Роль.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(مثال کے طور پر: `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(مثال کے طور پر: `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(مثال کے طور پر: `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(مثال کے طور پر: `sh webui.sh --api`)",
|
||||||
"(latest)": "(تازہ ترین)",
|
"(latest)": "(تازہ ترین)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "",
|
"(Ollama)": "",
|
||||||
"{{ models }}": "{{ ماڈلز }}",
|
"{{ models }}": "{{ ماڈلز }}",
|
||||||
"{{COUNT}} Available Tools": "",
|
"{{COUNT}} Available Tools": "",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "غلط جواب",
|
"Bad Response": "غلط جواب",
|
||||||
"Banners": "بینرز",
|
"Banners": "بینرز",
|
||||||
"Base Model (From)": "بیس ماڈل (سے)",
|
"Base Model (From)": "بیس ماڈل (سے)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "بیچ سائز (num_batch)",
|
"Batch Size (num_batch)": "بیچ سائز (num_batch)",
|
||||||
"before": "پہلے",
|
"before": "پہلے",
|
||||||
"Being lazy": "سستی کر رہا ہے",
|
"Being lazy": "سستی کر رہا ہے",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "",
|
"e.g. Tools for performing various operations": "",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "ترمیم کریں",
|
"Edit": "ترمیم کریں",
|
||||||
"Edit Arena Model": "ایرینا ماڈل میں ترمیم کریں",
|
"Edit Arena Model": "ایرینا ماڈل میں ترمیم کریں",
|
||||||
"Edit Channel": "",
|
"Edit Channel": "",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "",
|
"Enable Mirostat sampling for controlling perplexity.": "",
|
||||||
"Enable New Sign Ups": "نئے سائن اپس کو فعال کریں",
|
"Enable New Sign Ups": "نئے سائن اپس کو فعال کریں",
|
||||||
"Enabled": "فعال کردیا گیا ہے",
|
"Enabled": "فعال کردیا گیا ہے",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "یقینی بنائیں کہ آپ کی CSV فائل میں 4 کالم اس ترتیب میں شامل ہوں: نام، ای میل، پاس ورڈ، کردار",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "یقینی بنائیں کہ آپ کی CSV فائل میں 4 کالم اس ترتیب میں شامل ہوں: نام، ای میل، پاس ورڈ، کردار",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(vd: `sh webui.sh --api --api-auth tên_người_dùng_mật_khẩu`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(vd: `sh webui.sh --api --api-auth tên_người_dùng_mật_khẩu`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(vd: `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(vd: `sh webui.sh --api`)",
|
||||||
"(latest)": "(mới nhất)",
|
"(latest)": "(mới nhất)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "(Ollama)",
|
"(Ollama)": "(Ollama)",
|
||||||
"{{ models }}": "{{ mô hình }}",
|
"{{ models }}": "{{ mô hình }}",
|
||||||
"{{COUNT}} Available Tools": "{{COUNT}} Công cụ có sẵn",
|
"{{COUNT}} Available Tools": "{{COUNT}} Công cụ có sẵn",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "Trả lời KHÔNG tốt",
|
"Bad Response": "Trả lời KHÔNG tốt",
|
||||||
"Banners": "Biểu ngữ",
|
"Banners": "Biểu ngữ",
|
||||||
"Base Model (From)": "Mô hình cơ sở (từ)",
|
"Base Model (From)": "Mô hình cơ sở (từ)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "Kích thước Lô (num_batch)",
|
"Batch Size (num_batch)": "Kích thước Lô (num_batch)",
|
||||||
"before": "trước",
|
"before": "trước",
|
||||||
"Being lazy": "Lười biếng",
|
"Being lazy": "Lười biếng",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "vd: Các công cụ để thực hiện các hoạt động khác nhau",
|
"e.g. Tools for performing various operations": "vd: Các công cụ để thực hiện các hoạt động khác nhau",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "Chỉnh sửa",
|
"Edit": "Chỉnh sửa",
|
||||||
"Edit Arena Model": "Chỉnh sửa Mô hình Arena",
|
"Edit Arena Model": "Chỉnh sửa Mô hình Arena",
|
||||||
"Edit Channel": "Chỉnh sửa Kênh",
|
"Edit Channel": "Chỉnh sửa Kênh",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "Bật lấy mẫu Mirostat để kiểm soát perplexity.",
|
"Enable Mirostat sampling for controlling perplexity.": "Bật lấy mẫu Mirostat để kiểm soát perplexity.",
|
||||||
"Enable New Sign Ups": "Cho phép đăng ký mới",
|
"Enable New Sign Ups": "Cho phép đăng ký mới",
|
||||||
"Enabled": "Đã bật",
|
"Enabled": "Đã bật",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "Bắt buộc Chat nháp",
|
"Enforce Temporary Chat": "Bắt buộc Chat nháp",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Đảm bảo tệp CSV của bạn bao gồm 4 cột theo thứ tự sau: Name, Email, Password, Role.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Đảm bảo tệp CSV của bạn bao gồm 4 cột theo thứ tự sau: Name, Email, Password, Role.",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(例如 `sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(例如 `sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(例如 `sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(例如 `sh webui.sh --api`)",
|
||||||
"(latest)": "(最新版)",
|
"(latest)": "(最新版)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "(Ollama)",
|
"(Ollama)": "(Ollama)",
|
||||||
"{{ models }}": "{{ models }}",
|
"{{ models }}": "{{ models }}",
|
||||||
"{{COUNT}} Available Tools": "{{COUNT}} 个可用工具",
|
"{{COUNT}} Available Tools": "{{COUNT}} 个可用工具",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "点踩此回答",
|
"Bad Response": "点踩此回答",
|
||||||
"Banners": "公告横幅",
|
"Banners": "公告横幅",
|
||||||
"Base Model (From)": "基础模型 (来自)",
|
"Base Model (From)": "基础模型 (来自)",
|
||||||
"Base URL": "",
|
|
||||||
"Batch Size (num_batch)": "批大小 (num_batch)",
|
"Batch Size (num_batch)": "批大小 (num_batch)",
|
||||||
"before": "对话",
|
"before": "对话",
|
||||||
"Being lazy": "懒惰",
|
"Being lazy": "懒惰",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "例如:用于执行各种操作的工具",
|
"e.g. Tools for performing various operations": "例如:用于执行各种操作的工具",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "例如,'en-US,ja-JP'(留空以便自动检测)",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "例如,'en-US,ja-JP'(留空以便自动检测)",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "编辑",
|
"Edit": "编辑",
|
||||||
"Edit Arena Model": "编辑竞技场模型",
|
"Edit Arena Model": "编辑竞技场模型",
|
||||||
"Edit Channel": "编辑频道",
|
"Edit Channel": "编辑频道",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "启用 Mirostat 采样以控制困惑度",
|
"Enable Mirostat sampling for controlling perplexity.": "启用 Mirostat 采样以控制困惑度",
|
||||||
"Enable New Sign Ups": "允许新用户注册",
|
"Enable New Sign Ups": "允许新用户注册",
|
||||||
"Enabled": "启用",
|
"Enabled": "启用",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "强制临时聊天",
|
"Enforce Temporary Chat": "强制临时聊天",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "确保您的 CSV 文件按以下顺序包含 4 列: 姓名、电子邮箱、密码、角色。",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "确保您的 CSV 文件按以下顺序包含 4 列: 姓名、电子邮箱、密码、角色。",
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(例如:`sh webui.sh --api --api-auth username_password`)",
|
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(例如:`sh webui.sh --api --api-auth username_password`)",
|
||||||
"(e.g. `sh webui.sh --api`)": "(例如:`sh webui.sh --api`)",
|
"(e.g. `sh webui.sh --api`)": "(例如:`sh webui.sh --api`)",
|
||||||
"(latest)": "(最新版)",
|
"(latest)": "(最新版)",
|
||||||
"(leave blank for Azure Commercial URL auto-generation)": "(留空以自動產生 Azure Commercial URL)",
|
"(leave blank for to use commercial endpoint)": "",
|
||||||
"(Ollama)": "(Ollama)",
|
"(Ollama)": "(Ollama)",
|
||||||
"{{ models }}": "{{ models }}",
|
"{{ models }}": "{{ models }}",
|
||||||
"{{COUNT}} Available Tools": "{{COUNT}} 個可用工具",
|
"{{COUNT}} Available Tools": "{{COUNT}} 個可用工具",
|
||||||
@ -140,7 +140,6 @@
|
|||||||
"Bad Response": "錯誤回應",
|
"Bad Response": "錯誤回應",
|
||||||
"Banners": "橫幅",
|
"Banners": "橫幅",
|
||||||
"Base Model (From)": "基礎模型(來自)",
|
"Base Model (From)": "基礎模型(來自)",
|
||||||
"Base URL": "Base URL",
|
|
||||||
"Batch Size (num_batch)": "批次大小(num_batch)",
|
"Batch Size (num_batch)": "批次大小(num_batch)",
|
||||||
"before": "之前",
|
"before": "之前",
|
||||||
"Being lazy": "懶惰模式",
|
"Being lazy": "懶惰模式",
|
||||||
@ -377,6 +376,7 @@
|
|||||||
"e.g. Tools for performing various operations": "例如:用於執行各種操作的工具",
|
"e.g. Tools for performing various operations": "例如:用於執行各種操作的工具",
|
||||||
"e.g., 3, 4, 5 (leave blank for default)": "例如:3、4、5(留空使用預設值)",
|
"e.g., 3, 4, 5 (leave blank for default)": "例如:3、4、5(留空使用預設值)",
|
||||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "例如:en-US, ja-JP(留空以自動偵測)",
|
"e.g., en-US,ja-JP (leave blank for auto-detect)": "例如:en-US, ja-JP(留空以自動偵測)",
|
||||||
|
"e.g., westus (leave blank for eastus)": "",
|
||||||
"Edit": "編輯",
|
"Edit": "編輯",
|
||||||
"Edit Arena Model": "編輯競技場模型",
|
"Edit Arena Model": "編輯競技場模型",
|
||||||
"Edit Channel": "編輯頻道",
|
"Edit Channel": "編輯頻道",
|
||||||
@ -404,6 +404,7 @@
|
|||||||
"Enable Mirostat sampling for controlling perplexity.": "啟用 Mirostat 取樣以控制 perplexity。",
|
"Enable Mirostat sampling for controlling perplexity.": "啟用 Mirostat 取樣以控制 perplexity。",
|
||||||
"Enable New Sign Ups": "允許新使用者註冊",
|
"Enable New Sign Ups": "允許新使用者註冊",
|
||||||
"Enabled": "已啟用",
|
"Enabled": "已啟用",
|
||||||
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "強制使用臨時對話",
|
"Enforce Temporary Chat": "強制使用臨時對話",
|
||||||
"Enhance": "增強",
|
"Enhance": "增強",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "請確認您的 CSV 檔案包含以下 4 個欄位,並按照此順序排列:姓名、電子郵件、密碼、角色。",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "請確認您的 CSV 檔案包含以下 4 個欄位,並按照此順序排列:姓名、電子郵件、密碼、角色。",
|
||||||
|
Loading…
Reference in New Issue
Block a user