From 6359cb55febed2006dd8f87e3f8018ade90c1889 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Wed, 7 May 2025 02:01:03 +0400 Subject: [PATCH] chore: format --- .../open_webui/retrieval/loaders/youtube.py | 20 +++++++++++-------- backend/open_webui/utils/oauth.py | 2 +- src/lib/i18n/locales/ar-BH/translation.json | 5 +++-- src/lib/i18n/locales/ar/translation.json | 5 +++-- src/lib/i18n/locales/bg-BG/translation.json | 5 +++-- src/lib/i18n/locales/bn-BD/translation.json | 5 +++-- src/lib/i18n/locales/bo-TB/translation.json | 5 +++-- src/lib/i18n/locales/ca-ES/translation.json | 5 +++-- src/lib/i18n/locales/ceb-PH/translation.json | 5 +++-- src/lib/i18n/locales/cs-CZ/translation.json | 5 +++-- src/lib/i18n/locales/da-DK/translation.json | 5 +++-- src/lib/i18n/locales/de-DE/translation.json | 5 +++-- src/lib/i18n/locales/dg-DG/translation.json | 5 +++-- src/lib/i18n/locales/el-GR/translation.json | 5 +++-- src/lib/i18n/locales/en-GB/translation.json | 5 +++-- src/lib/i18n/locales/en-US/translation.json | 5 +++-- src/lib/i18n/locales/es-ES/translation.json | 5 +++-- src/lib/i18n/locales/et-EE/translation.json | 5 +++-- src/lib/i18n/locales/eu-ES/translation.json | 5 +++-- src/lib/i18n/locales/fa-IR/translation.json | 5 +++-- src/lib/i18n/locales/fi-FI/translation.json | 5 +++-- src/lib/i18n/locales/fr-CA/translation.json | 5 +++-- src/lib/i18n/locales/fr-FR/translation.json | 5 +++-- src/lib/i18n/locales/he-IL/translation.json | 5 +++-- src/lib/i18n/locales/hi-IN/translation.json | 5 +++-- src/lib/i18n/locales/hr-HR/translation.json | 5 +++-- src/lib/i18n/locales/hu-HU/translation.json | 5 +++-- src/lib/i18n/locales/id-ID/translation.json | 5 +++-- src/lib/i18n/locales/ie-GA/translation.json | 5 +++-- src/lib/i18n/locales/it-IT/translation.json | 5 +++-- src/lib/i18n/locales/ja-JP/translation.json | 5 +++-- src/lib/i18n/locales/ka-GE/translation.json | 5 +++-- src/lib/i18n/locales/ko-KR/translation.json | 5 +++-- src/lib/i18n/locales/lt-LT/translation.json | 5 +++-- src/lib/i18n/locales/ms-MY/translation.json | 5 +++-- src/lib/i18n/locales/nb-NO/translation.json | 5 +++-- src/lib/i18n/locales/nl-NL/translation.json | 5 +++-- src/lib/i18n/locales/pa-IN/translation.json | 5 +++-- src/lib/i18n/locales/pl-PL/translation.json | 5 +++-- src/lib/i18n/locales/pt-BR/translation.json | 5 +++-- src/lib/i18n/locales/pt-PT/translation.json | 5 +++-- src/lib/i18n/locales/ro-RO/translation.json | 5 +++-- src/lib/i18n/locales/ru-RU/translation.json | 5 +++-- src/lib/i18n/locales/sk-SK/translation.json | 5 +++-- src/lib/i18n/locales/sr-RS/translation.json | 5 +++-- src/lib/i18n/locales/sv-SE/translation.json | 5 +++-- src/lib/i18n/locales/th-TH/translation.json | 5 +++-- src/lib/i18n/locales/tk-TW/translation.json | 5 +++-- src/lib/i18n/locales/tr-TR/translation.json | 5 +++-- src/lib/i18n/locales/uk-UA/translation.json | 5 +++-- src/lib/i18n/locales/ur-PK/translation.json | 5 +++-- src/lib/i18n/locales/vi-VN/translation.json | 5 +++-- src/lib/i18n/locales/zh-CN/translation.json | 5 +++-- src/lib/i18n/locales/zh-TW/translation.json | 5 +++-- 54 files changed, 169 insertions(+), 113 deletions(-) diff --git a/backend/open_webui/retrieval/loaders/youtube.py b/backend/open_webui/retrieval/loaders/youtube.py index 763d73094..d908cc8cb 100644 --- a/backend/open_webui/retrieval/loaders/youtube.py +++ b/backend/open_webui/retrieval/loaders/youtube.py @@ -63,13 +63,13 @@ class YoutubeLoader: self.video_id = _video_id if _video_id is not None else video_id self._metadata = {"source": video_id} self.proxy_url = proxy_url - + # Ensure language is a list if isinstance(language, str): self.language = [language] else: self.language = list(language) - + # Add English as fallback if not already in the list if "en" not in self.language: self.language.append("en") @@ -87,7 +87,7 @@ class YoutubeLoader: 'Could not import "youtube_transcript_api" Python package. ' "Please install it with `pip install youtube-transcript-api`." ) - + if self.proxy_url: youtube_proxies = { "http": self.proxy_url, @@ -97,7 +97,7 @@ class YoutubeLoader: log.debug(f"Using proxy URL: {self.proxy_url[:14]}...") else: youtube_proxies = None - + try: transcript_list = YouTubeTranscriptApi.list_transcripts( self.video_id, proxies=youtube_proxies @@ -105,7 +105,7 @@ class YoutubeLoader: except Exception as e: log.exception("Loading YouTube transcript failed") return [] - + # Try each language in order of priority for lang in self.language: try: @@ -125,8 +125,12 @@ class YoutubeLoader: except Exception as e: log.info(f"Error finding transcript for language '{lang}'") raise e - + # If we get here, all languages failed 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.") - raise NoTranscriptFound(f"No transcript found for any supported language. Verify if the video has transcripts, add more languages if needed.") + 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." + ) + raise NoTranscriptFound( + f"No transcript found for any supported language. Verify if the video has transcripts, add more languages if needed." + ) diff --git a/backend/open_webui/utils/oauth.py b/backend/open_webui/utils/oauth.py index 2ad134ff7..efb287dbf 100644 --- a/backend/open_webui/utils/oauth.py +++ b/backend/open_webui/utils/oauth.py @@ -158,7 +158,7 @@ class OAuthManager: nested_claims = oauth_claim.split(".") for nested_claim in nested_claims: claim_data = claim_data.get(nested_claim, {}) - + if isinstance(claim_data, list): user_oauth_groups = claim_data elif isinstance(claim_data, str): diff --git a/src/lib/i18n/locales/ar-BH/translation.json b/src/lib/i18n/locales/ar-BH/translation.json index 8917c0bf8..97e3392ce 100644 --- a/src/lib/i18n/locales/ar-BH/translation.json +++ b/src/lib/i18n/locales/ar-BH/translation.json @@ -4,7 +4,7 @@ "(e.g. `sh webui.sh --api --api-auth username_password`)": "", "(e.g. `sh webui.sh --api`)": "( `sh webui.sh --api`مثال)", "(latest)": "(الأخير)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ نماذج }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "استجابة خطاء", "Banners": "لافتات", "Base Model (From)": "النموذج الأساسي (من)", - "Base URL": "", "Batch Size (num_batch)": "", "before": "قبل", "Being lazy": "كون كسول", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "تعديل", "Edit Arena Model": "", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "تفعيل عمليات التسجيل الجديدة", "Enabled": "", + "Endpoint URL": "", "Enforce Temporary Chat": "", "Enhance": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "تأكد من أن ملف CSV الخاص بك يتضمن 4 أعمدة بهذا الترتيب: Name, Email, Password, Role.", diff --git a/src/lib/i18n/locales/ar/translation.json b/src/lib/i18n/locales/ar/translation.json index 5172d2ee8..735171b1f 100644 --- a/src/lib/i18n/locales/ar/translation.json +++ b/src/lib/i18n/locales/ar/translation.json @@ -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`)": "(مثال: تشغيل الأمر: `sh webui.sh --api`)", "(latest)": "(أحدث)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "النماذج: {{ models }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "رد سيئ", "Banners": "لافتات", "Base Model (From)": "النموذج الأساسي (من)", - "Base URL": "", "Batch Size (num_batch)": "حجم الدفعة (num_batch)", "before": "قبل", "Being lazy": "كونك كسولاً", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "مثال: أدوات لتنفيذ عمليات متنوعة", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "تعديل", "Edit Arena Model": "تعديل نموذج Arena", "Edit Channel": "تعديل القناة", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "تفعيل أخذ عينات Mirostat للتحكم في درجة التعقيد.", "Enable New Sign Ups": "تفعيل عمليات التسجيل الجديدة", "Enabled": "مفعل", + "Endpoint URL": "", "Enforce Temporary Chat": "", "Enhance": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "تأكد من أن ملف CSV الخاص بك يتضمن 4 أعمدة بهذا الترتيب: Name, Email, Password, Role.", diff --git a/src/lib/i18n/locales/bg-BG/translation.json b/src/lib/i18n/locales/bg-BG/translation.json index 0bbffc6b9..f72bb308c 100644 --- a/src/lib/i18n/locales/bg-BG/translation.json +++ b/src/lib/i18n/locales/bg-BG/translation.json @@ -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`)": "(напр. `sh webui.sh --api`)", "(latest)": "(последна)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ models }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "Невалиден отговор от API", "Banners": "Банери", "Base Model (From)": "Базов модел (от)", - "Base URL": "", "Batch Size (num_batch)": "Размер на партидата (num_batch)", "before": "преди", "Being lazy": "Да бъдеш мързелив", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "напр. Инструменти за извършване на различни операции", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "Редактиране", "Edit Arena Model": "Редактиране на Arena модел", "Edit Channel": "Редактиране на канал", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "Включване на нови регистрации", "Enabled": "Активирано", + "Endpoint URL": "", "Enforce Temporary Chat": "", "Enhance": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверете се, че вашият CSV файл включва 4 колони в следния ред: Име, Имейл, Парола, Роля.", diff --git a/src/lib/i18n/locales/bn-BD/translation.json b/src/lib/i18n/locales/bn-BD/translation.json index a4f4f78ba..08e5d82b1 100644 --- a/src/lib/i18n/locales/bn-BD/translation.json +++ b/src/lib/i18n/locales/bn-BD/translation.json @@ -4,7 +4,7 @@ "(e.g. `sh webui.sh --api --api-auth username_password`)": "", "(e.g. `sh webui.sh --api`)": "(যেমন `sh webui.sh --api`)", "(latest)": "(সর্বশেষ)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ মডেল}}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "খারাপ প্রতিক্রিয়া", "Banners": "ব্যানার", "Base Model (From)": "বেস মডেল (থেকে)", - "Base URL": "", "Batch Size (num_batch)": "", "before": "পূর্ববর্তী", "Being lazy": "অলস হওয়া", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "এডিট করুন", "Edit Arena Model": "", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "নতুন সাইনআপ চালু করুন", "Enabled": "", + "Endpoint URL": "", "Enforce Temporary Chat": "", "Enhance": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "আপনার সিএসভি ফাইলটিতে এই ক্রমে 4 টি কলাম অন্তর্ভুক্ত রয়েছে তা নিশ্চিত করুন: নাম, ইমেল, পাসওয়ার্ড, ভূমিকা।.", diff --git a/src/lib/i18n/locales/bo-TB/translation.json b/src/lib/i18n/locales/bo-TB/translation.json index 99e3a8acb..6f40b29b0 100644 --- a/src/lib/i18n/locales/bo-TB/translation.json +++ b/src/lib/i18n/locales/bo-TB/translation.json @@ -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`)": "(དཔེར་ན། `sh webui.sh --api`)", "(latest)": "(ཆེས་གསར།)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "(Ollama)", "{{ models }}": "{{ models }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "ལན་ངན་པ།", "Banners": "དར་ཆ།", "Base Model (From)": "གཞི་རྩའི་དཔེ་དབྱིབས། (ནས།)", - "Base URL": "", "Batch Size (num_batch)": "ཚན་ཆུང་ཆེ་ཆུང་། (num_batch)", "before": "སྔོན།", "Being lazy": "ལེ་ལོ་བྱེད་པ།", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "དཔེར་ན། ལས་ཀ་སྣ་ཚོགས་སྒྲུབ་བྱེད་ཀྱི་ལག་ཆ།", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "ཞུ་དག", "Edit Arena Model": "Arena དཔེ་དབྱིབས་ཞུ་དག", "Edit Channel": "བགྲོ་གླེང་ཞུ་དག", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "རྙོག་འཛིང་ཚད་ཚོད་འཛིན་གྱི་ཆེད་དུ་ Mirostat མ་དཔེ་འདེམས་པ་སྒུལ་བསྐྱོད་བྱེད་པ།", "Enable New Sign Ups": "ཐོ་འགོད་གསར་པ་སྒུལ་བསྐྱོད་བྱེད་པ།", "Enabled": "སྒུལ་བསྐྱོད་བྱས་ཡོད།", + "Endpoint URL": "", "Enforce Temporary Chat": "གནས་སྐབས་ཁ་བརྡ་བཙན་བཀོལ་བྱེད་པ།", "Enhance": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ཁྱེད་ཀྱི་ CSV ཡིག་ཆར་གོ་རིམ་འདི་ལྟར། མིང་། ཡིག་ཟམ། གསང་གྲངས། གནས་ཚད། སྟར་པ་ ༤ ཚུད་ཡོད་པ་ཁག་ཐེག་བྱེད་རོགས།", diff --git a/src/lib/i18n/locales/ca-ES/translation.json b/src/lib/i18n/locales/ca-ES/translation.json index 7f52339bf..8afeee176 100644 --- a/src/lib/i18n/locales/ca-ES/translation.json +++ b/src/lib/i18n/locales/ca-ES/translation.json @@ -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`)": "(p. ex. `sh webui.sh --api`)", "(latest)": "(últim)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "(Ollama)", "{{ models }}": "{{ models }}", "{{COUNT}} Available Tools": "{{COUNT}} eines disponibles", @@ -140,7 +140,6 @@ "Bad Response": "Resposta errònia", "Banners": "Banners", "Base Model (From)": "Model base (des de)", - "Base URL": "", "Batch Size (num_batch)": "Mida del lot (num_batch)", "before": "abans", "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., 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., westus (leave blank for eastus)": "", "Edit": "Editar", "Edit Arena Model": "Editar model de l'Arena", "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 New Sign Ups": "Permetre nous registres", "Enabled": "Habilitat", + "Endpoint URL": "", "Enforce Temporary Chat": "Forçar els xats temporals", "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.", diff --git a/src/lib/i18n/locales/ceb-PH/translation.json b/src/lib/i18n/locales/ceb-PH/translation.json index dec073e15..a126b71b5 100644 --- a/src/lib/i18n/locales/ceb-PH/translation.json +++ b/src/lib/i18n/locales/ceb-PH/translation.json @@ -4,7 +4,7 @@ "(e.g. `sh webui.sh --api --api-auth username_password`)": "", "(e.g. `sh webui.sh --api`)": "(pananglitan `sh webui.sh --api`)", "(latest)": "", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "", "Banners": "", "Base Model (From)": "", - "Base URL": "", "Batch Size (num_batch)": "", "before": "", "Being lazy": "", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "", "Edit Arena Model": "", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "I-enable ang bag-ong mga rehistro", "Enabled": "", + "Endpoint URL": "", "Enforce Temporary Chat": "", "Enhance": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "", diff --git a/src/lib/i18n/locales/cs-CZ/translation.json b/src/lib/i18n/locales/cs-CZ/translation.json index 8b8148679..ff1adb4ad 100644 --- a/src/lib/i18n/locales/cs-CZ/translation.json +++ b/src/lib/i18n/locales/cs-CZ/translation.json @@ -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`)": "(např. `sh webui.sh --api`)", "(latest)": "Nejnovější", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ models }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "Špatná odezva", "Banners": "Bannery", "Base Model (From)": "Základní model (z)", - "Base URL": "", "Batch Size (num_batch)": "Batch size (num_batch)", "before": "před", "Being lazy": "", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "Upravit", "Edit Arena Model": "Upravit Arena Model", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "Povolit nové registrace", "Enabled": "Povoleno", + "Endpoint URL": "", "Enforce Temporary Chat": "", "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.", diff --git a/src/lib/i18n/locales/da-DK/translation.json b/src/lib/i18n/locales/da-DK/translation.json index 72b022fa5..00291ea10 100644 --- a/src/lib/i18n/locales/da-DK/translation.json +++ b/src/lib/i18n/locales/da-DK/translation.json @@ -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`)": "(f.eks. `sh webui.sh --api`)", "(latest)": "(seneste)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "(Ollama)", "{{ models }}": "{{ modeller }}", "{{COUNT}} Available Tools": "{{COUNT}} Tilgængelige Værktøj", @@ -140,7 +140,6 @@ "Bad Response": "Problem i response", "Banners": "Bannere", "Base Model (From)": "Base Model (Fra)", - "Base URL": "", "Batch Size (num_batch)": "Batch størrelse (num_batch)", "before": "før", "Being lazy": "At være doven", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "Rediger", "Edit Arena Model": "", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "Aktiver nye signups", "Enabled": "Aktiveret", + "Endpoint URL": "", "Enforce Temporary Chat": "", "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.", diff --git a/src/lib/i18n/locales/de-DE/translation.json b/src/lib/i18n/locales/de-DE/translation.json index 2591ce5d7..7452630e6 100644 --- a/src/lib/i18n/locales/de-DE/translation.json +++ b/src/lib/i18n/locales/de-DE/translation.json @@ -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`)": "(z. B. `sh webui.sh --api`)", "(latest)": "(neueste)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ Modelle }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "Schlechte Antwort", "Banners": "Banner", "Base Model (From)": "Basismodell (From)", - "Base URL": "", "Batch Size (num_batch)": "Stapelgröße (num_batch)", "before": "bereits geteilt", "Being lazy": "Faulheit", @@ -377,6 +376,7 @@ "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., 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 Arena Model": "Arena-Modell bearbeiten", "Edit Channel": "Kanal bearbeiten", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "Registrierung erlauben", "Enabled": "Aktiviert", + "Endpoint URL": "", "Enforce Temporary Chat": "Temporären Chat erzwingen", "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.", diff --git a/src/lib/i18n/locales/dg-DG/translation.json b/src/lib/i18n/locales/dg-DG/translation.json index 92b7866bc..355134294 100644 --- a/src/lib/i18n/locales/dg-DG/translation.json +++ b/src/lib/i18n/locales/dg-DG/translation.json @@ -4,7 +4,7 @@ "(e.g. `sh webui.sh --api --api-auth username_password`)": "", "(e.g. `sh webui.sh --api`)": "(such e.g. `sh webui.sh --api`)", "(latest)": "(much latest)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "", "Banners": "", "Base Model (From)": "", - "Base URL": "", "Batch Size (num_batch)": "", "before": "", "Being lazy": "", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "", "Edit Arena Model": "", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "Enable New Bark Ups", "Enabled": "", + "Endpoint URL": "", "Enforce Temporary Chat": "", "Enhance": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "", diff --git a/src/lib/i18n/locales/el-GR/translation.json b/src/lib/i18n/locales/el-GR/translation.json index 40a421710..62cd6c9c7 100644 --- a/src/lib/i18n/locales/el-GR/translation.json +++ b/src/lib/i18n/locales/el-GR/translation.json @@ -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`)": "(π.χ. `sh webui.sh --api`)", "(latest)": "(τελευταίο)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ models }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "Κακή Απάντηση", "Banners": "Προβολές", "Base Model (From)": "Βασικό Μοντέλο (Από)", - "Base URL": "", "Batch Size (num_batch)": "Μέγεθος Παρτίδας (num_batch)", "before": "πριν", "Being lazy": "Τρώλακας", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "π.χ. Εργαλεία για την εκτέλεση διάφορων λειτουργιών", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "Επεξεργασία", "Edit Arena Model": "Επεξεργασία Μοντέλου Arena", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "Ενεργοποίηση Νέων Εγγραφών", "Enabled": "Ενεργοποιημένο", + "Endpoint URL": "", "Enforce Temporary Chat": "", "Enhance": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Βεβαιωθείτε ότι το αρχείο CSV σας περιλαμβάνει 4 στήλες με αυτή τη σειρά: Όνομα, Email, Κωδικός, Ρόλος.", diff --git a/src/lib/i18n/locales/en-GB/translation.json b/src/lib/i18n/locales/en-GB/translation.json index bdb174111..306bcc7cd 100644 --- a/src/lib/i18n/locales/en-GB/translation.json +++ b/src/lib/i18n/locales/en-GB/translation.json @@ -4,7 +4,7 @@ "(e.g. `sh webui.sh --api --api-auth username_password`)": "", "(e.g. `sh webui.sh --api`)": "", "(latest)": "", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "", "Banners": "", "Base Model (From)": "", - "Base URL": "", "Batch Size (num_batch)": "", "before": "", "Being lazy": "", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "", "Edit Arena Model": "", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "", "Enabled": "", + "Endpoint URL": "", "Enforce Temporary Chat": "", "Enhance": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "", diff --git a/src/lib/i18n/locales/en-US/translation.json b/src/lib/i18n/locales/en-US/translation.json index bdb174111..306bcc7cd 100644 --- a/src/lib/i18n/locales/en-US/translation.json +++ b/src/lib/i18n/locales/en-US/translation.json @@ -4,7 +4,7 @@ "(e.g. `sh webui.sh --api --api-auth username_password`)": "", "(e.g. `sh webui.sh --api`)": "", "(latest)": "", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "", "Banners": "", "Base Model (From)": "", - "Base URL": "", "Batch Size (num_batch)": "", "before": "", "Being lazy": "", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "", "Edit Arena Model": "", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "", "Enabled": "", + "Endpoint URL": "", "Enforce Temporary Chat": "", "Enhance": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "", diff --git a/src/lib/i18n/locales/es-ES/translation.json b/src/lib/i18n/locales/es-ES/translation.json index db1aaa440..4a1d4a4c7 100644 --- a/src/lib/i18n/locales/es-ES/translation.json +++ b/src/lib/i18n/locales/es-ES/translation.json @@ -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`)": "(p.ej. `sh webui.sh --api`)", "(latest)": "(último)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "(Ollama)", "{{ models }}": "{{ models }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "Mala Respuesta", "Banners": "Banners", "Base Model (From)": "Modelo Base (desde)", - "Base URL": "", "Batch Size (num_batch)": "Tamaño de Lote (num_batch)", "before": "antes", "Being lazy": "Ser perezoso", @@ -377,6 +376,7 @@ "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., 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 Arena Model": "Editar Modelo en Arena", "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 New Sign Ups": "Habilitar Registros de Nuevos Usuarios", "Enabled": "Habilitado", + "Endpoint URL": "", "Enforce Temporary Chat": "Forzar el uso de Chat Temporal", "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.", diff --git a/src/lib/i18n/locales/et-EE/translation.json b/src/lib/i18n/locales/et-EE/translation.json index b7d956baa..282c341fd 100644 --- a/src/lib/i18n/locales/et-EE/translation.json +++ b/src/lib/i18n/locales/et-EE/translation.json @@ -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`)": "(nt `sh webui.sh --api`)", "(latest)": "(uusim)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ mudelid }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "Halb vastus", "Banners": "Bännerid", "Base Model (From)": "Baas mudel (Allikas)", - "Base URL": "", "Batch Size (num_batch)": "Partii suurus (num_batch)", "before": "enne", "Being lazy": "Laisklemine", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "nt tööriistad mitmesuguste operatsioonide teostamiseks", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "Muuda", "Edit Arena Model": "Muuda Areena mudelit", "Edit Channel": "Muuda kanalit", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "Luba Mirostat'i valim perplekssuse juhtimiseks.", "Enable New Sign Ups": "Luba uued registreerimised", "Enabled": "Lubatud", + "Endpoint URL": "", "Enforce Temporary Chat": "", "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.", diff --git a/src/lib/i18n/locales/eu-ES/translation.json b/src/lib/i18n/locales/eu-ES/translation.json index ef6b0c75b..ffa420ec9 100644 --- a/src/lib/i18n/locales/eu-ES/translation.json +++ b/src/lib/i18n/locales/eu-ES/translation.json @@ -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`)": "(adib. `sh webui.sh --api`)", "(latest)": "(azkena)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ models }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "Erantzun Txarra", "Banners": "Bannerrak", "Base Model (From)": "Oinarrizko Eredua (Nondik)", - "Base URL": "", "Batch Size (num_batch)": "Batch Tamaina (num_batch)", "before": "aurretik", "Being lazy": "Alferra izatea", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "adib. Hainbat eragiketa egiteko tresnak", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "Editatu", "Edit Arena Model": "Editatu Arena Eredua", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "Gaitu Izena Emate Berriak", "Enabled": "Gaituta", + "Endpoint URL": "", "Enforce Temporary Chat": "", "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.", diff --git a/src/lib/i18n/locales/fa-IR/translation.json b/src/lib/i18n/locales/fa-IR/translation.json index 56960e284..b298a6139 100644 --- a/src/lib/i18n/locales/fa-IR/translation.json +++ b/src/lib/i18n/locales/fa-IR/translation.json @@ -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`)": "(e.g. `sh webui.sh --api`)", "(latest)": "(آخرین)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "(ollama)", "{{ models }}": "{{ models }}", "{{COUNT}} Available Tools": "{{COUNT}} ابزار موجود", @@ -140,7 +140,6 @@ "Bad Response": "پاسخ خوب نیست", "Banners": "بنر", "Base Model (From)": "مدل پایه (از)", - "Base URL": "", "Batch Size (num_batch)": "اندازه دسته (num_batch)", "before": "قبل", "Being lazy": "حالت سازنده", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "مثلا ابزارهایی برای انجام عملیات مختلف", "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., westus (leave blank for eastus)": "", "Edit": "ویرایش", "Edit Arena Model": "ویرایش مدل آرنا", "Edit Channel": "ویرایش کانال", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "فعال\u200cسازی نمونه\u200cبرداری میروستات برای کنترل سردرگمی", "Enable New Sign Ups": "فعال کردن ثبت نام\u200cهای جدید", "Enabled": "فعال شده", + "Endpoint URL": "", "Enforce Temporary Chat": "اجبار چت موقت", "Enhance": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "اطمینان حاصل کنید که فایل CSV شما شامل چهار ستون در این ترتیب است: نام، ایمیل، رمز عبور، نقش.", diff --git a/src/lib/i18n/locales/fi-FI/translation.json b/src/lib/i18n/locales/fi-FI/translation.json index a0d696e15..fae02283a 100644 --- a/src/lib/i18n/locales/fi-FI/translation.json +++ b/src/lib/i18n/locales/fi-FI/translation.json @@ -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`)": "(esim. `sh webui.sh --api`)", "(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)", "{{ models }}": "{{ mallit }}", "{{COUNT}} Available Tools": "{{COUNT}} työkalua saatavilla", @@ -140,7 +140,6 @@ "Bad Response": "Huono vastaus", "Banners": "Bannerit", "Base Model (From)": "Perusmalli (alkaen)", - "Base URL": "Perus verkko-osoite", "Batch Size (num_batch)": "Erän koko (num_batch)", "before": "ennen", "Being lazy": "Oli laiska", @@ -377,6 +376,7 @@ "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., 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 Arena Model": "Muokkaa Arena-mallia", "Edit Channel": "Muokkaa kanavaa", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "Salli uudet rekisteröitymiset", "Enabled": "Käytössä", + "Endpoint URL": "", "Enforce Temporary Chat": "Pakota väliaikaiset keskustelut", "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.", diff --git a/src/lib/i18n/locales/fr-CA/translation.json b/src/lib/i18n/locales/fr-CA/translation.json index a6b8e8fa7..9902ce1e8 100644 --- a/src/lib/i18n/locales/fr-CA/translation.json +++ b/src/lib/i18n/locales/fr-CA/translation.json @@ -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`)": "(par exemple `sh webui.sh --api`)", "(latest)": "(dernier)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ modèles }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "Mauvaise réponse", "Banners": "Banniers", "Base Model (From)": "Modèle de base (à partir de)", - "Base URL": "", "Batch Size (num_batch)": "Taille du lot (num_batch)", "before": "avant", "Being lazy": "Être fainéant", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "Modifier", "Edit Arena Model": "", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "Activer les nouvelles inscriptions", "Enabled": "", + "Endpoint URL": "", "Enforce Temporary Chat": "", "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.", diff --git a/src/lib/i18n/locales/fr-FR/translation.json b/src/lib/i18n/locales/fr-FR/translation.json index e9efb8551..e7140249f 100644 --- a/src/lib/i18n/locales/fr-FR/translation.json +++ b/src/lib/i18n/locales/fr-FR/translation.json @@ -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`)": "(par exemple `sh webui.sh --api`)", "(latest)": "(dernière version)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "(Ollama)", "{{ models }}": "{{ models }}", "{{COUNT}} Available Tools": "Nombre d'outils disponibles {{COUNT}}", @@ -140,7 +140,6 @@ "Bad Response": "Mauvaise réponse", "Banners": "Bannières", "Base Model (From)": "Modèle de base (à partir de)", - "Base URL": "", "Batch Size (num_batch)": "Batch Size (num_batch)", "before": "avant", "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., 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., westus (leave blank for eastus)": "", "Edit": "Modifier", "Edit Arena Model": "Modifier le modèle d'arène", "Edit Channel": "Modifier le canal", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "Activer l'échantillonnage Mirostat pour contrôler Perplexité.", "Enable New Sign Ups": "Activer les nouvelles inscriptions", "Enabled": "Activé", + "Endpoint URL": "", "Enforce Temporary Chat": "Imposer les discussions temporaires", "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.", diff --git a/src/lib/i18n/locales/he-IL/translation.json b/src/lib/i18n/locales/he-IL/translation.json index a4d07343d..ff425d4df 100644 --- a/src/lib/i18n/locales/he-IL/translation.json +++ b/src/lib/i18n/locales/he-IL/translation.json @@ -4,7 +4,7 @@ "(e.g. `sh webui.sh --api --api-auth username_password`)": "", "(e.g. `sh webui.sh --api`)": "(למשל `sh webui.sh --api`)", "(latest)": "(האחרון)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ דגמים }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "תגובה שגויה", "Banners": "באנרים", "Base Model (From)": "דגם בסיס (מ)", - "Base URL": "", "Batch Size (num_batch)": "", "before": "לפני", "Being lazy": "להיות עצלן", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "ערוך", "Edit Arena Model": "", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "אפשר הרשמות חדשות", "Enabled": "", + "Endpoint URL": "", "Enforce Temporary Chat": "", "Enhance": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ודא שקובץ ה-CSV שלך כולל 4 עמודות בסדר הבא: שם, דוא\"ל, סיסמה, תפקיד.", diff --git a/src/lib/i18n/locales/hi-IN/translation.json b/src/lib/i18n/locales/hi-IN/translation.json index 3d53349a7..8b5c9c6dc 100644 --- a/src/lib/i18n/locales/hi-IN/translation.json +++ b/src/lib/i18n/locales/hi-IN/translation.json @@ -4,7 +4,7 @@ "(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)": "", "{{ models }}": "{{ मॉडल }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "ख़राब प्रतिक्रिया", "Banners": "बैनर", "Base Model (From)": "बेस मॉडल (से)", - "Base URL": "", "Batch Size (num_batch)": "", "before": "पहले", "Being lazy": "आलसी होना", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "संपादित करें", "Edit Arena Model": "", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "नए साइन अप सक्रिय करें", "Enabled": "", + "Endpoint URL": "", "Enforce Temporary Chat": "", "Enhance": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "सुनिश्चित करें कि आपकी CSV फ़ाइल में इस क्रम में 4 कॉलम शामिल हैं: नाम, ईमेल, पासवर्ड, भूमिका।", diff --git a/src/lib/i18n/locales/hr-HR/translation.json b/src/lib/i18n/locales/hr-HR/translation.json index e248eff57..dd22b57f4 100644 --- a/src/lib/i18n/locales/hr-HR/translation.json +++ b/src/lib/i18n/locales/hr-HR/translation.json @@ -4,7 +4,7 @@ "(e.g. `sh webui.sh --api --api-auth username_password`)": "", "(e.g. `sh webui.sh --api`)": "(npr. `sh webui.sh --api`)", "(latest)": "(najnovije)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ modeli }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "Loš odgovor", "Banners": "Baneri", "Base Model (From)": "Osnovni model (Od)", - "Base URL": "", "Batch Size (num_batch)": "", "before": "prije", "Being lazy": "Biti lijen", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "Uredi", "Edit Arena Model": "", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "Omogući nove prijave", "Enabled": "", + "Endpoint URL": "", "Enforce Temporary Chat": "", "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.", diff --git a/src/lib/i18n/locales/hu-HU/translation.json b/src/lib/i18n/locales/hu-HU/translation.json index 056e7c0c2..2de08218b 100644 --- a/src/lib/i18n/locales/hu-HU/translation.json +++ b/src/lib/i18n/locales/hu-HU/translation.json @@ -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`)": "(pl. `sh webui.sh --api`)", "(latest)": "(legújabb)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "(Ollama)", "{{ models }}": "{{ modellek }}", "{{COUNT}} Available Tools": "{{COUNT}} Elérhető eszköz", @@ -140,7 +140,6 @@ "Bad Response": "Rossz válasz", "Banners": "Bannerek", "Base Model (From)": "Alap modell (Forrás)", - "Base URL": "", "Batch Size (num_batch)": "Köteg méret (num_batch)", "before": "előtt", "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., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "Szerkesztés", "Edit Arena Model": "Arena modell 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 New Sign Ups": "Új regisztrációk engedélyezése", "Enabled": "Engedélyezve", + "Endpoint URL": "", "Enforce Temporary Chat": "Ideiglenes csevegés kikényszerítése", "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.", diff --git a/src/lib/i18n/locales/id-ID/translation.json b/src/lib/i18n/locales/id-ID/translation.json index b11a217a4..a4b4e6ce4 100644 --- a/src/lib/i18n/locales/id-ID/translation.json +++ b/src/lib/i18n/locales/id-ID/translation.json @@ -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`)": "(contoh: `sh webui.sh --api`)", "(latest)": "(terbaru)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ models }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "Respons Buruk", "Banners": "Spanduk", "Base Model (From)": "Model Dasar (Dari)", - "Base URL": "", "Batch Size (num_batch)": "Ukuran Batch (num_batch)", "before": "sebelum", "Being lazy": "Menjadi malas", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "Edit", "Edit Arena Model": "", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "Aktifkan Pendaftaran Baru", "Enabled": "", + "Endpoint URL": "", "Enforce Temporary Chat": "", "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.", diff --git a/src/lib/i18n/locales/ie-GA/translation.json b/src/lib/i18n/locales/ie-GA/translation.json index 45f86682e..099526511 100644 --- a/src/lib/i18n/locales/ie-GA/translation.json +++ b/src/lib/i18n/locales/ie-GA/translation.json @@ -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`)": "(m.sh. `sh webui.sh --api`)", "(latest)": "(is déanaí)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "(Ollama)", "{{ models }}": "{{ models }}", "{{COUNT}} Available Tools": "{{COUNT}} Uirlisí ar Fáil", @@ -140,7 +140,6 @@ "Bad Response": "Droch-fhreagra", "Banners": "Meirgí", "Base Model (From)": "Múnla Bonn (Ó)", - "Base URL": "", "Batch Size (num_batch)": "Méid Baisc (num_batch)", "before": "roimh", "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., 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., westus (leave blank for eastus)": "", "Edit": "Cuir in eagar", "Edit Arena Model": "Cuir Samhail Airéine 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 New Sign Ups": "Cumasaigh Clárúcháin Nua", "Enabled": "Cumasaithe", + "Endpoint URL": "", "Enforce Temporary Chat": "Cuir Comhrá Sealadach i bhfeidhm", "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.", diff --git a/src/lib/i18n/locales/it-IT/translation.json b/src/lib/i18n/locales/it-IT/translation.json index 762062530..90e052abf 100644 --- a/src/lib/i18n/locales/it-IT/translation.json +++ b/src/lib/i18n/locales/it-IT/translation.json @@ -4,7 +4,7 @@ "(e.g. `sh webui.sh --api --api-auth username_password`)": "", "(e.g. `sh webui.sh --api`)": "(p.e. `sh webui.sh --api`)", "(latest)": "(ultima)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ modelli }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "Risposta non valida", "Banners": "Banner", "Base Model (From)": "Modello base (da)", - "Base URL": "", "Batch Size (num_batch)": "", "before": "prima", "Being lazy": "Essere pigri", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "Modifica", "Edit Arena Model": "", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "Abilita nuove iscrizioni", "Enabled": "", + "Endpoint URL": "", "Enforce Temporary Chat": "", "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.", diff --git a/src/lib/i18n/locales/ja-JP/translation.json b/src/lib/i18n/locales/ja-JP/translation.json index 57e61d638..9995aff6a 100644 --- a/src/lib/i18n/locales/ja-JP/translation.json +++ b/src/lib/i18n/locales/ja-JP/translation.json @@ -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`)": "(例: `sh webui.sh --api`)", "(latest)": "(最新)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ モデル }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "応答が悪い", "Banners": "バナー", "Base Model (From)": "ベースモデル (From)", - "Base URL": "", "Batch Size (num_batch)": "バッチサイズ (num_batch)", "before": "より前", "Being lazy": "怠惰な", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "編集", "Edit Arena Model": "", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "新規登録を有効にする", "Enabled": "有効", + "Endpoint URL": "", "Enforce Temporary Chat": "", "Enhance": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSVファイルに4つの列が含まれていることを確認してください: Name, Email, Password, Role.", diff --git a/src/lib/i18n/locales/ka-GE/translation.json b/src/lib/i18n/locales/ka-GE/translation.json index fa40e819a..48a68bfe9 100644 --- a/src/lib/i18n/locales/ka-GE/translation.json +++ b/src/lib/i18n/locales/ka-GE/translation.json @@ -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`)": "(მაგ: `sh webui.sh --api`)", "(latest)": "(უახლესი)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ მოდელები }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "არასწორი პასუხი", "Banners": "ბანერები", "Base Model (From)": "საბაზისო მოდელი (საიდან)", - "Base URL": "", "Batch Size (num_batch)": "", "before": "მითითებულ დრომდე", "Being lazy": "ზარმაცობა", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "ჩასწორება", "Edit Arena Model": "არენის მოდელის ჩასწორება", "Edit Channel": "არხის ჩასწორება", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "ახალი რეგისტრაციების ჩართვა", "Enabled": "ჩართულია", + "Endpoint URL": "", "Enforce Temporary Chat": "", "Enhance": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "დარწმუნდით, რომ თქვენი CSV-ფაილი შეიცავს 4 ველს ამ მიმდევრობით: სახელი, ელფოსტა, პაროლი, როლი.", diff --git a/src/lib/i18n/locales/ko-KR/translation.json b/src/lib/i18n/locales/ko-KR/translation.json index 9f1809a15..d4198d4b5 100644 --- a/src/lib/i18n/locales/ko-KR/translation.json +++ b/src/lib/i18n/locales/ko-KR/translation.json @@ -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`)": "(예: `sh webui.sh --api`)", "(latest)": "(최근)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ models }}", "{{COUNT}} Available Tools": "사용 가능한 도구 {{COUNT}}개", @@ -140,7 +140,6 @@ "Bad Response": "잘못된 응답", "Banners": "배너", "Base Model (From)": "기본 모델(시작)", - "Base URL": "", "Batch Size (num_batch)": "배치 크기 (num_batch)", "before": "이전", "Being lazy": "게으름 피우기", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "예: 다양한 작업을 수행하는 도구", "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., westus (leave blank for eastus)": "", "Edit": "편집", "Edit Arena Model": "아레나 모델 편집", "Edit Channel": "채널 편집", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "퍼플렉서티 제어를 위해 Mirostat 샘플링 활성화", "Enable New Sign Ups": "새 회원가입 활성화", "Enabled": "활성화됨", + "Endpoint URL": "", "Enforce Temporary Chat": "임시 채팅 강제 적용", "Enhance": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV 파일에 이름, 이메일, 비밀번호, 역할 4개의 열이 순서대로 포함되어 있는지 확인하세요.", diff --git a/src/lib/i18n/locales/lt-LT/translation.json b/src/lib/i18n/locales/lt-LT/translation.json index cfda7c594..9446c6676 100644 --- a/src/lib/i18n/locales/lt-LT/translation.json +++ b/src/lib/i18n/locales/lt-LT/translation.json @@ -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`)": "(pvz. `sh webui.sh --api`)", "(latest)": "(naujausias)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ models }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "Neteisingas atsakymas", "Banners": "Baneriai", "Base Model (From)": "Bazinis modelis", - "Base URL": "", "Batch Size (num_batch)": "Batch dydis", "before": "prieš", "Being lazy": "Būvimas tingiu", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "Redaguoti", "Edit Arena Model": "", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "Aktyvuoti naujas registracijas", "Enabled": "Leisti", + "Endpoint URL": "", "Enforce Temporary Chat": "", "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.", diff --git a/src/lib/i18n/locales/ms-MY/translation.json b/src/lib/i18n/locales/ms-MY/translation.json index 2dd5e01c4..438df1708 100644 --- a/src/lib/i18n/locales/ms-MY/translation.json +++ b/src/lib/i18n/locales/ms-MY/translation.json @@ -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`)": "(contoh `sh webui.sh --api`)", "(latest)": "(terkini)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ models }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "Maklumbalas Salah", "Banners": "Sepanduk", "Base Model (From)": "Model Asas (Dari)", - "Base URL": "", "Batch Size (num_batch)": "Saiz Kumpulan (num_batch)", "before": "sebelum,", "Being lazy": "Menjadi Malas", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "Edit", "Edit Arena Model": "", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "Benarkan Pendaftaran Baharu", "Enabled": "Dibenarkan", + "Endpoint URL": "", "Enforce Temporary Chat": "", "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.", diff --git a/src/lib/i18n/locales/nb-NO/translation.json b/src/lib/i18n/locales/nb-NO/translation.json index e0db76637..130fb9496 100644 --- a/src/lib/i18n/locales/nb-NO/translation.json +++ b/src/lib/i18n/locales/nb-NO/translation.json @@ -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`)": "(f.eks. `sh webui.sh --api`)", "(latest)": "(siste)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ modeller }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "Dårlig svar", "Banners": "Bannere", "Base Model (From)": "Grunnmodell (fra)", - "Base URL": "", "Batch Size (num_batch)": "Batchstørrelse (num_batch)", "before": "før", "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., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "Rediger", "Edit Arena Model": "Rediger Arena-modell", "Edit Channel": "Rediger kanal", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "Aktiver nye registreringer", "Enabled": "Aktivert", + "Endpoint URL": "", "Enforce Temporary Chat": "", "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.", diff --git a/src/lib/i18n/locales/nl-NL/translation.json b/src/lib/i18n/locales/nl-NL/translation.json index 22e1af3bb..a2ceab8c7 100644 --- a/src/lib/i18n/locales/nl-NL/translation.json +++ b/src/lib/i18n/locales/nl-NL/translation.json @@ -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`)": "(bv. `sh webui.sh --api`)", "(latest)": "(nieuwste)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "(Ollama)", "{{ models }}": "{{ modellen }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "Ongeldig antwoord", "Banners": "Banners", "Base Model (From)": "Basismodel (Vanaf)", - "Base URL": "", "Batch Size (num_batch)": "Batchgrootte (num_batch)", "before": "voor", "Being lazy": "Lui zijn", @@ -377,6 +376,7 @@ "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., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "Wijzig", "Edit Arena Model": "Bewerk arenamodel", "Edit Channel": "Bewerk kanaal", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "Mirostat-sampling in om perplexiteit te controleren inschakelen.", "Enable New Sign Ups": "Schakel nieuwe registraties in", "Enabled": "Ingeschakeld", + "Endpoint URL": "", "Enforce Temporary Chat": "Tijdelijke chat afdwingen", "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.", diff --git a/src/lib/i18n/locales/pa-IN/translation.json b/src/lib/i18n/locales/pa-IN/translation.json index ffb4f0d4e..fb03157bd 100644 --- a/src/lib/i18n/locales/pa-IN/translation.json +++ b/src/lib/i18n/locales/pa-IN/translation.json @@ -4,7 +4,7 @@ "(e.g. `sh webui.sh --api --api-auth username_password`)": "", "(e.g. `sh webui.sh --api`)": "(ਉਦਾਹਰਣ ਦੇ ਤੌਰ ਤੇ `sh webui.sh --api`)", "(latest)": "(ਤਾਜ਼ਾ)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ ਮਾਡਲ }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "ਖਰਾਬ ਜਵਾਬ", "Banners": "ਬੈਨਰ", "Base Model (From)": "ਬੇਸ ਮਾਡਲ (ਤੋਂ)", - "Base URL": "", "Batch Size (num_batch)": "", "before": "ਪਹਿਲਾਂ", "Being lazy": "ਆਲਸੀ ਹੋਣਾ", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "ਸੰਪਾਦਨ ਕਰੋ", "Edit Arena Model": "", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "ਨਵੇਂ ਸਾਈਨ ਅਪ ਯੋਗ ਕਰੋ", "Enabled": "", + "Endpoint URL": "", "Enforce Temporary Chat": "", "Enhance": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ਸੁਨਿਸ਼ਚਿਤ ਕਰੋ ਕਿ ਤੁਹਾਡੀ CSV ਫਾਈਲ ਵਿੱਚ ਇਸ ਕ੍ਰਮ ਵਿੱਚ 4 ਕਾਲਮ ਹਨ: ਨਾਮ, ਈਮੇਲ, ਪਾਸਵਰਡ, ਭੂਮਿਕਾ।", diff --git a/src/lib/i18n/locales/pl-PL/translation.json b/src/lib/i18n/locales/pl-PL/translation.json index 98290c7af..7c99f677a 100644 --- a/src/lib/i18n/locales/pl-PL/translation.json +++ b/src/lib/i18n/locales/pl-PL/translation.json @@ -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`)": "(np. `sh webui.sh --api`)", "(latest)": "(najnowszy)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ modele }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "Nieprawidłowa odpowiedź", "Banners": "Bannery", "Base Model (From)": "Model bazowy (od)", - "Base URL": "", "Batch Size (num_batch)": "Rozmiar partii (num_batch)", "before": "przed", "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., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "Edytuj", "Edit Arena Model": "Edytuj model arenę", "Edit Channel": "Edytuj kanał", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "Włącz nowe rejestracje", "Enabled": "Włączone", + "Endpoint URL": "", "Enforce Temporary Chat": "", "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.", diff --git a/src/lib/i18n/locales/pt-BR/translation.json b/src/lib/i18n/locales/pt-BR/translation.json index a45e87e01..796a16127 100644 --- a/src/lib/i18n/locales/pt-BR/translation.json +++ b/src/lib/i18n/locales/pt-BR/translation.json @@ -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`)": "(por exemplo, `sh webui.sh --api`)", "(latest)": "(último)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ models }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "Resposta Ruim", "Banners": "Banners", "Base Model (From)": "Modelo Base (De)", - "Base URL": "", "Batch Size (num_batch)": "Tamanho do Lote (num_batch)", "before": "antes", "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., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "Editar", "Edit Arena Model": "Editar Arena de Modelos", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "Ativar Novos Cadastros", "Enabled": "Ativado", + "Endpoint URL": "", "Enforce Temporary Chat": "", "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.", diff --git a/src/lib/i18n/locales/pt-PT/translation.json b/src/lib/i18n/locales/pt-PT/translation.json index 639e67d97..7d5fd4c1d 100644 --- a/src/lib/i18n/locales/pt-PT/translation.json +++ b/src/lib/i18n/locales/pt-PT/translation.json @@ -4,7 +4,7 @@ "(e.g. `sh webui.sh --api --api-auth username_password`)": "", "(e.g. `sh webui.sh --api`)": "(por exemplo, `sh webui.sh --api`)", "(latest)": "(mais recente)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ modelos }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "Resposta má", "Banners": "Estandartes", "Base Model (From)": "Modelo Base (De)", - "Base URL": "", "Batch Size (num_batch)": "", "before": "antes", "Being lazy": "Ser preguiçoso", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "Editar", "Edit Arena Model": "", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "Ativar Novas Inscrições", "Enabled": "", + "Endpoint URL": "", "Enforce Temporary Chat": "", "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.", diff --git a/src/lib/i18n/locales/ro-RO/translation.json b/src/lib/i18n/locales/ro-RO/translation.json index 24a7f3a0b..9fc741b8a 100644 --- a/src/lib/i18n/locales/ro-RO/translation.json +++ b/src/lib/i18n/locales/ro-RO/translation.json @@ -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`)": "(de ex. `sh webui.sh --api`)", "(latest)": "(ultimul)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ modele }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "Răspuns Greșit", "Banners": "Bannere", "Base Model (From)": "Model de Bază (De la)", - "Base URL": "", "Batch Size (num_batch)": "Dimensiune Lot (num_batch)", "before": "înainte", "Being lazy": "Fiind leneș", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "Editează", "Edit Arena Model": "Editați Modelul Arena", "Edit Channel": "Editează canalul", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "Activează Înscrierile Noi", "Enabled": "Activat", + "Endpoint URL": "", "Enforce Temporary Chat": "", "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.", diff --git a/src/lib/i18n/locales/ru-RU/translation.json b/src/lib/i18n/locales/ru-RU/translation.json index c513775ea..2a049b9cf 100644 --- a/src/lib/i18n/locales/ru-RU/translation.json +++ b/src/lib/i18n/locales/ru-RU/translation.json @@ -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`)": "(например, `sh webui.sh --api`)", "(latest)": "(последняя)", - "(leave blank for Azure Commercial URL auto-generation)": "(оставьте поле пустым для автоматической генерации коммерческого URL-адреса Azure)", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ модели }}", "{{COUNT}} Available Tools": "{{COUNT}} доступных инструментов", @@ -140,7 +140,6 @@ "Bad Response": "Плохой ответ", "Banners": "Баннеры", "Base Model (From)": "Базовая модель (от)", - "Base URL": "Базовый URL адрес", "Batch Size (num_batch)": "Размер партии (num_batch)", "before": "до", "Being lazy": "Лениво", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "например, инструменты для выполнения различных операций", "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., westus (leave blank for eastus)": "", "Edit": "Редактировать", "Edit Arena Model": "Изменить модель арены", "Edit Channel": "Редактировать канал", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "Включите выборку Mirostat для контроля путаницы.", "Enable New Sign Ups": "Разрешить новые регистрации", "Enabled": "Включено", + "Endpoint URL": "", "Enforce Temporary Chat": "Принудительный временный чат", "Enhance": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Убедитесь, что ваш CSV-файл включает в себя 4 столбца в следующем порядке: Имя, Электронная почта, Пароль, Роль.", diff --git a/src/lib/i18n/locales/sk-SK/translation.json b/src/lib/i18n/locales/sk-SK/translation.json index cec5d4c54..0393e1349 100644 --- a/src/lib/i18n/locales/sk-SK/translation.json +++ b/src/lib/i18n/locales/sk-SK/translation.json @@ -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`)": "(napr. `sh webui.sh --api`)", "(latest)": "Najnovšie", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ models }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "Zlá odozva", "Banners": "Bannery", "Base Model (From)": "Základný model (z)", - "Base URL": "", "Batch Size (num_batch)": "Veľkosť batchu (num_batch)", "before": "pred", "Being lazy": "", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "Upraviť", "Edit Arena Model": "Upraviť Arena Model", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "Povoliť nové registrácie", "Enabled": "Povolené", + "Endpoint URL": "", "Enforce Temporary Chat": "", "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.", diff --git a/src/lib/i18n/locales/sr-RS/translation.json b/src/lib/i18n/locales/sr-RS/translation.json index 709cdb04b..b75cadcd7 100644 --- a/src/lib/i18n/locales/sr-RS/translation.json +++ b/src/lib/i18n/locales/sr-RS/translation.json @@ -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`)": "(нпр. `sh webui.sh --api`)", "(latest)": "(најновије)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ модели }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "Лош одговор", "Banners": "Барјаке", "Base Model (From)": "Основни модел (од)", - "Base URL": "", "Batch Size (num_batch)": "", "before": "пре", "Being lazy": "Бити лењ", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "Измени", "Edit Arena Model": "Измени модел арене", "Edit Channel": "Измени канал", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "Омогући нове пријаве", "Enabled": "Омогућено", + "Endpoint URL": "", "Enforce Temporary Chat": "", "Enhance": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверите се да ваша CSV датотека укључује 4 колоне у овом редоследу: Име, Е-пошта, Лозинка, Улога.", diff --git a/src/lib/i18n/locales/sv-SE/translation.json b/src/lib/i18n/locales/sv-SE/translation.json index 76fe56661..6565fc5f7 100644 --- a/src/lib/i18n/locales/sv-SE/translation.json +++ b/src/lib/i18n/locales/sv-SE/translation.json @@ -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`)": "(t.ex. `sh webui.sh --api`)", "(latest)": "(senaste)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ modeller }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "Felaktig respons", "Banners": "Banners", "Base Model (From)": "Basmodell (Från)", - "Base URL": "", "Batch Size (num_batch)": "Batchstorlek (num_batch)", "before": "före", "Being lazy": "Lägg till", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "Redigera", "Edit Arena Model": "", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "Aktivera nya registreringar", "Enabled": "", + "Endpoint URL": "", "Enforce Temporary Chat": "", "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.", diff --git a/src/lib/i18n/locales/th-TH/translation.json b/src/lib/i18n/locales/th-TH/translation.json index 69aae71e3..8d4fc86a6 100644 --- a/src/lib/i18n/locales/th-TH/translation.json +++ b/src/lib/i18n/locales/th-TH/translation.json @@ -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`)": "(เช่น `sh webui.sh --api`)", "(latest)": "(ล่าสุด)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ models }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "การตอบสนองที่ไม่ดี", "Banners": "แบนเนอร์", "Base Model (From)": "โมเดลพื้นฐาน (จาก)", - "Base URL": "", "Batch Size (num_batch)": "ขนาดชุด (num_batch)", "before": "ก่อน", "Being lazy": "ขี้เกียจ", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "แก้ไข", "Edit Arena Model": "", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "เปิดใช้งานการสมัครใหม่", "Enabled": "เปิดใช้งาน", + "Endpoint URL": "", "Enforce Temporary Chat": "", "Enhance": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ตรวจสอบว่าไฟล์ CSV ของคุณมี 4 คอลัมน์ในลำดับนี้: ชื่อ, อีเมล, รหัสผ่าน, บทบาท", diff --git a/src/lib/i18n/locales/tk-TW/translation.json b/src/lib/i18n/locales/tk-TW/translation.json index c1bc2b3f2..363afaaf7 100644 --- a/src/lib/i18n/locales/tk-TW/translation.json +++ b/src/lib/i18n/locales/tk-TW/translation.json @@ -4,7 +4,7 @@ "(e.g. `sh webui.sh --api --api-auth username_password`)": "", "(e.g. `sh webui.sh --api`)": "", "(latest)": "", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "", "Banners": "", "Base Model (From)": "", - "Base URL": "", "Batch Size (num_batch)": "", "before": "", "Being lazy": "", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "", "Edit Arena Model": "", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "", "Enabled": "", + "Endpoint URL": "", "Enforce Temporary Chat": "", "Enhance": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "", diff --git a/src/lib/i18n/locales/tr-TR/translation.json b/src/lib/i18n/locales/tr-TR/translation.json index 9926f1e2e..1b4d25f4c 100644 --- a/src/lib/i18n/locales/tr-TR/translation.json +++ b/src/lib/i18n/locales/tr-TR/translation.json @@ -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`)": "(örn. `sh webui.sh --api`)", "(latest)": "(en son)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ models }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "Kötü Yanıt", "Banners": "Afişler", "Base Model (From)": "Temel Model ('den)", - "Base URL": "", "Batch Size (num_batch)": "Yığın Boyutu (num_batch)", "before": "önce", "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., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "Düzenle", "Edit Arena Model": "Arena Modelini Düzenle", "Edit Channel": "Kanalı Düzenle", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "Yeni Kayıtları Etkinleştir", "Enabled": "Etkin", + "Endpoint URL": "", "Enforce Temporary Chat": "", "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.", diff --git a/src/lib/i18n/locales/uk-UA/translation.json b/src/lib/i18n/locales/uk-UA/translation.json index df8247344..851b9cc32 100644 --- a/src/lib/i18n/locales/uk-UA/translation.json +++ b/src/lib/i18n/locales/uk-UA/translation.json @@ -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`)": "(напр. `sh webui.sh --api`)", "(latest)": "(остання)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "(Ollama)", "{{ models }}": "{{ models }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "Неправильна відповідь", "Banners": "Прапори", "Base Model (From)": "Базова модель (від)", - "Base URL": "", "Batch Size (num_batch)": "Розмір партії (num_batch)", "before": "до того, як", "Being lazy": "Не поспішати", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "напр., Інструменти для виконання різних операцій", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "Редагувати", "Edit Arena Model": "Редагувати модель Arena", "Edit Channel": "Редагувати канал", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "Увімкнути вибірку Mirostat для контролю перплексії.", "Enable New Sign Ups": "Дозволити нові реєстрації", "Enabled": "Увімкнено", + "Endpoint URL": "", "Enforce Temporary Chat": "Застосувати тимчасовий чат", "Enhance": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Переконайтеся, що ваш CSV-файл містить 4 колонки в такому порядку: Ім'я, Email, Пароль, Роль.", diff --git a/src/lib/i18n/locales/ur-PK/translation.json b/src/lib/i18n/locales/ur-PK/translation.json index e6de5acda..f49abcc18 100644 --- a/src/lib/i18n/locales/ur-PK/translation.json +++ b/src/lib/i18n/locales/ur-PK/translation.json @@ -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`)": "(مثال کے طور پر: `sh webui.sh --api`)", "(latest)": "(تازہ ترین)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "", "{{ models }}": "{{ ماڈلز }}", "{{COUNT}} Available Tools": "", @@ -140,7 +140,6 @@ "Bad Response": "غلط جواب", "Banners": "بینرز", "Base Model (From)": "بیس ماڈل (سے)", - "Base URL": "", "Batch Size (num_batch)": "بیچ سائز (num_batch)", "before": "پہلے", "Being lazy": "سستی کر رہا ہے", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "ترمیم کریں", "Edit Arena Model": "ایرینا ماڈل میں ترمیم کریں", "Edit Channel": "", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "", "Enable New Sign Ups": "نئے سائن اپس کو فعال کریں", "Enabled": "فعال کردیا گیا ہے", + "Endpoint URL": "", "Enforce Temporary Chat": "", "Enhance": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "یقینی بنائیں کہ آپ کی CSV فائل میں 4 کالم اس ترتیب میں شامل ہوں: نام، ای میل، پاس ورڈ، کردار", diff --git a/src/lib/i18n/locales/vi-VN/translation.json b/src/lib/i18n/locales/vi-VN/translation.json index 6ea53db8d..b4a920478 100644 --- a/src/lib/i18n/locales/vi-VN/translation.json +++ b/src/lib/i18n/locales/vi-VN/translation.json @@ -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`)": "(vd: `sh webui.sh --api`)", "(latest)": "(mới nhất)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "(Ollama)", "{{ models }}": "{{ mô hình }}", "{{COUNT}} Available Tools": "{{COUNT}} Công cụ có sẵn", @@ -140,7 +140,6 @@ "Bad Response": "Trả lời KHÔNG tốt", "Banners": "Biểu ngữ", "Base Model (From)": "Mô hình cơ sở (từ)", - "Base URL": "", "Batch Size (num_batch)": "Kích thước Lô (num_batch)", "before": "trước", "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., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", + "e.g., westus (leave blank for eastus)": "", "Edit": "Chỉnh sửa", "Edit Arena Model": "Chỉnh sửa Mô hình Arena", "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 New Sign Ups": "Cho phép đăng ký mới", "Enabled": "Đã bật", + "Endpoint URL": "", "Enforce Temporary Chat": "Bắt buộc Chat nháp", "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.", diff --git a/src/lib/i18n/locales/zh-CN/translation.json b/src/lib/i18n/locales/zh-CN/translation.json index 50421f2d4..8c1c2d29b 100644 --- a/src/lib/i18n/locales/zh-CN/translation.json +++ b/src/lib/i18n/locales/zh-CN/translation.json @@ -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`)": "(例如 `sh webui.sh --api`)", "(latest)": "(最新版)", - "(leave blank for Azure Commercial URL auto-generation)": "", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "(Ollama)", "{{ models }}": "{{ models }}", "{{COUNT}} Available Tools": "{{COUNT}} 个可用工具", @@ -140,7 +140,6 @@ "Bad Response": "点踩此回答", "Banners": "公告横幅", "Base Model (From)": "基础模型 (来自)", - "Base URL": "", "Batch Size (num_batch)": "批大小 (num_batch)", "before": "对话", "Being lazy": "懒惰", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "例如:用于执行各种操作的工具", "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., westus (leave blank for eastus)": "", "Edit": "编辑", "Edit Arena Model": "编辑竞技场模型", "Edit Channel": "编辑频道", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "启用 Mirostat 采样以控制困惑度", "Enable New Sign Ups": "允许新用户注册", "Enabled": "启用", + "Endpoint URL": "", "Enforce Temporary Chat": "强制临时聊天", "Enhance": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "确保您的 CSV 文件按以下顺序包含 4 列: 姓名、电子邮箱、密码、角色。", diff --git a/src/lib/i18n/locales/zh-TW/translation.json b/src/lib/i18n/locales/zh-TW/translation.json index 12d3dbf5c..6ca49ce76 100644 --- a/src/lib/i18n/locales/zh-TW/translation.json +++ b/src/lib/i18n/locales/zh-TW/translation.json @@ -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`)": "(例如:`sh webui.sh --api`)", "(latest)": "(最新版)", - "(leave blank for Azure Commercial URL auto-generation)": "(留空以自動產生 Azure Commercial URL)", + "(leave blank for to use commercial endpoint)": "", "(Ollama)": "(Ollama)", "{{ models }}": "{{ models }}", "{{COUNT}} Available Tools": "{{COUNT}} 個可用工具", @@ -140,7 +140,6 @@ "Bad Response": "錯誤回應", "Banners": "橫幅", "Base Model (From)": "基礎模型(來自)", - "Base URL": "Base URL", "Batch Size (num_batch)": "批次大小(num_batch)", "before": "之前", "Being lazy": "懶惰模式", @@ -377,6 +376,7 @@ "e.g. Tools for performing various operations": "例如:用於執行各種操作的工具", "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., westus (leave blank for eastus)": "", "Edit": "編輯", "Edit Arena Model": "編輯競技場模型", "Edit Channel": "編輯頻道", @@ -404,6 +404,7 @@ "Enable Mirostat sampling for controlling perplexity.": "啟用 Mirostat 取樣以控制 perplexity。", "Enable New Sign Ups": "允許新使用者註冊", "Enabled": "已啟用", + "Endpoint URL": "", "Enforce Temporary Chat": "強制使用臨時對話", "Enhance": "增強", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "請確認您的 CSV 檔案包含以下 4 個欄位,並按照此順序排列:姓名、電子郵件、密碼、角色。",