From c01255570bd5dea2dcc216d167bec4c6eba11ba4 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Wed, 17 Sep 2025 11:11:46 -0500 Subject: [PATCH] chore: format --- backend/open_webui/routers/openai.py | 16 ++++++++-------- src/lib/components/AddConnectionModal.svelte | 6 +++--- .../chat/Messages/Markdown/KatexRenderer.svelte | 2 +- src/lib/i18n/locales/ar-BH/translation.json | 2 ++ src/lib/i18n/locales/ar/translation.json | 2 ++ src/lib/i18n/locales/bg-BG/translation.json | 2 ++ src/lib/i18n/locales/bn-BD/translation.json | 2 ++ src/lib/i18n/locales/bo-TB/translation.json | 2 ++ src/lib/i18n/locales/ca-ES/translation.json | 2 ++ src/lib/i18n/locales/ceb-PH/translation.json | 2 ++ src/lib/i18n/locales/cs-CZ/translation.json | 2 ++ src/lib/i18n/locales/da-DK/translation.json | 2 ++ src/lib/i18n/locales/de-DE/translation.json | 2 ++ src/lib/i18n/locales/dg-DG/translation.json | 2 ++ src/lib/i18n/locales/el-GR/translation.json | 2 ++ src/lib/i18n/locales/en-GB/translation.json | 2 ++ src/lib/i18n/locales/en-US/translation.json | 2 ++ src/lib/i18n/locales/es-ES/translation.json | 2 ++ src/lib/i18n/locales/et-EE/translation.json | 2 ++ src/lib/i18n/locales/eu-ES/translation.json | 2 ++ src/lib/i18n/locales/fa-IR/translation.json | 2 ++ src/lib/i18n/locales/fi-FI/translation.json | 2 ++ src/lib/i18n/locales/fr-CA/translation.json | 2 ++ src/lib/i18n/locales/fr-FR/translation.json | 2 ++ src/lib/i18n/locales/gl-ES/translation.json | 2 ++ src/lib/i18n/locales/he-IL/translation.json | 2 ++ src/lib/i18n/locales/hi-IN/translation.json | 2 ++ src/lib/i18n/locales/hr-HR/translation.json | 2 ++ src/lib/i18n/locales/hu-HU/translation.json | 2 ++ src/lib/i18n/locales/id-ID/translation.json | 2 ++ src/lib/i18n/locales/ie-GA/translation.json | 2 ++ src/lib/i18n/locales/it-IT/translation.json | 2 ++ src/lib/i18n/locales/ja-JP/translation.json | 2 ++ src/lib/i18n/locales/ka-GE/translation.json | 2 ++ src/lib/i18n/locales/kab-DZ/translation.json | 2 ++ src/lib/i18n/locales/ko-KR/translation.json | 2 ++ src/lib/i18n/locales/lt-LT/translation.json | 2 ++ src/lib/i18n/locales/ms-MY/translation.json | 2 ++ src/lib/i18n/locales/nb-NO/translation.json | 2 ++ src/lib/i18n/locales/nl-NL/translation.json | 2 ++ src/lib/i18n/locales/pa-IN/translation.json | 2 ++ src/lib/i18n/locales/pl-PL/translation.json | 2 ++ src/lib/i18n/locales/pt-BR/translation.json | 2 ++ src/lib/i18n/locales/pt-PT/translation.json | 2 ++ src/lib/i18n/locales/ro-RO/translation.json | 2 ++ src/lib/i18n/locales/ru-RU/translation.json | 2 ++ src/lib/i18n/locales/sk-SK/translation.json | 2 ++ src/lib/i18n/locales/sr-RS/translation.json | 2 ++ src/lib/i18n/locales/sv-SE/translation.json | 2 ++ src/lib/i18n/locales/th-TH/translation.json | 2 ++ src/lib/i18n/locales/tk-TM/translation.json | 2 ++ src/lib/i18n/locales/tr-TR/translation.json | 2 ++ src/lib/i18n/locales/ug-CN/translation.json | 2 ++ src/lib/i18n/locales/uk-UA/translation.json | 2 ++ src/lib/i18n/locales/ur-PK/translation.json | 2 ++ src/lib/i18n/locales/uz-Cyrl-UZ/translation.json | 2 ++ src/lib/i18n/locales/uz-Latn-Uz/translation.json | 2 ++ src/lib/i18n/locales/vi-VN/translation.json | 2 ++ src/lib/i18n/locales/zh-CN/translation.json | 2 ++ src/lib/i18n/locales/zh-TW/translation.json | 2 ++ 60 files changed, 126 insertions(+), 12 deletions(-) diff --git a/backend/open_webui/routers/openai.py b/backend/open_webui/routers/openai.py index 2af3b97aa3..3154be2ee6 100644 --- a/backend/open_webui/routers/openai.py +++ b/backend/open_webui/routers/openai.py @@ -184,8 +184,8 @@ def get_headers_and_cookies( if oauth_token: token = f"{oauth_token.get('access_token', '')}" - elif auth_type in ("azure_ad", "azure_entra_id"): - token = get_azure_entra_id_access_token() + elif auth_type in ("azure_ad", "microsoft_entra_id"): + token = get_microsoft_entra_id_access_token() if token: headers["Authorization"] = f"Bearer {token}" @@ -193,9 +193,9 @@ def get_headers_and_cookies( return headers, cookies -def get_azure_entra_id_access_token(): +def get_microsoft_entra_id_access_token(): """ - Get Azure access token using DefaultAzureCredential for Azure OpenAI. + Get Microsoft Entra ID access token using DefaultAzureCredential for Azure OpenAI. Returns the token string or None if authentication fails. """ try: @@ -204,7 +204,7 @@ def get_azure_entra_id_access_token(): ) return token_provider() except Exception as e: - log.error(f"Error getting Azure access token: {e}") + log.error(f"Error getting Microsoft Entra ID access token: {e}") return None @@ -663,7 +663,7 @@ async def verify_connection( if api_config.get("azure", False): # Only set api-key header if not using Azure Entra ID authentication auth_type = api_config.get("auth_type", "bearer") - if auth_type not in ("azure_ad", "azure_entra_id"): + if auth_type not in ("azure_ad", "microsoft_entra_id"): headers["api-key"] = key api_version = api_config.get("api_version", "") or "2023-03-15-preview" @@ -911,7 +911,7 @@ async def generate_chat_completion( # Only set api-key header if not using Azure Entra ID authentication auth_type = api_config.get("auth_type", "bearer") - if auth_type not in ("azure_ad", "azure_entra_id"): + if auth_type not in ("azure_ad", "microsoft_entra_id"): headers["api-key"] = key headers["api-version"] = api_version @@ -1089,7 +1089,7 @@ async def proxy(path: str, request: Request, user=Depends(get_verified_user)): # Only set api-key header if not using Azure Entra ID authentication auth_type = api_config.get("auth_type", "bearer") - if auth_type not in ("azure_ad", "azure_entra_id"): + if auth_type not in ("azure_ad", "microsoft_entra_id"): headers["api-key"] = key headers["api-version"] = api_version diff --git a/src/lib/components/AddConnectionModal.svelte b/src/lib/components/AddConnectionModal.svelte index 9160c0336d..240df839a8 100644 --- a/src/lib/components/AddConnectionModal.svelte +++ b/src/lib/components/AddConnectionModal.svelte @@ -122,7 +122,7 @@ return; } - if (!key && !['azure_ad', 'azure_entra_id'].includes(auth_type)) { + if (!key && !['azure_ad', 'microsoft_entra_id'].includes(auth_type)) { loading = false; toast.error($i18n.t('Key is required')); @@ -332,7 +332,7 @@ {#if !direct} {#if azure} - + {/if} {/if} {/if} @@ -364,7 +364,7 @@ > {$i18n.t('Forwards system user OAuth access token to authenticate')} - {:else if ['azure_ad', 'azure_entra_id'].includes(auth_type)} + {:else if ['azure_ad', 'microsoft_entra_id'].includes(auth_type)}
diff --git a/src/lib/components/chat/Messages/Markdown/KatexRenderer.svelte b/src/lib/components/chat/Messages/Markdown/KatexRenderer.svelte index be90a3a007..d28edb224f 100644 --- a/src/lib/components/chat/Messages/Markdown/KatexRenderer.svelte +++ b/src/lib/components/chat/Messages/Markdown/KatexRenderer.svelte @@ -11,7 +11,7 @@ const [katex] = await Promise.all([ import('katex'), import('katex/contrib/mhchem'), - import('katex/dist/katex.min.css'), + import('katex/dist/katex.min.css') ]); renderToString = katex.renderToString; }); diff --git a/src/lib/i18n/locales/ar-BH/translation.json b/src/lib/i18n/locales/ar-BH/translation.json index 2e503324e6..49951dfc6e 100644 --- a/src/lib/i18n/locales/ar-BH/translation.json +++ b/src/lib/i18n/locales/ar-BH/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "أدخل الصلاحيات", "Enter Your Username": "", "Enter your webhook URL": "", + "Entra ID": "", "Error": "خطأ", "ERROR": "", "Error accessing directory": "", @@ -1612,6 +1613,7 @@ "User Webhooks": "", "Username": "", "Users": "المستخدمين", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "", diff --git a/src/lib/i18n/locales/ar/translation.json b/src/lib/i18n/locales/ar/translation.json index a1e9222372..893489e8d0 100644 --- a/src/lib/i18n/locales/ar/translation.json +++ b/src/lib/i18n/locales/ar/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "أدخل الصلاحيات", "Enter Your Username": "أدخل اسم المستخدم الخاص بك", "Enter your webhook URL": "أدخل رابط Webhook الخاص بك", + "Entra ID": "", "Error": "خطأ", "ERROR": "خطأ", "Error accessing directory": "", @@ -1612,6 +1613,7 @@ "User Webhooks": "", "Username": "اسم المستخدم", "Users": "المستخدمين", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "يتم استخدام نموذج الساحة الافتراضي مع جميع النماذج. اضغط على زر + لإضافة نماذج مخصصة.", diff --git a/src/lib/i18n/locales/bg-BG/translation.json b/src/lib/i18n/locales/bg-BG/translation.json index ee747c8584..d7070d38c8 100644 --- a/src/lib/i18n/locales/bg-BG/translation.json +++ b/src/lib/i18n/locales/bg-BG/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Въведете вашата роля", "Enter Your Username": "Въведете вашето потребителско име", "Enter your webhook URL": "Въведете вашия URL адрес на webhook", + "Entra ID": "", "Error": "Грешка", "ERROR": "ГРЕШКА", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "", "Username": "Потребителско име", "Users": "Потребители", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "Използване на стандартния арена модел с всички модели. Кликнете бутона плюс, за да добавите персонализирани модели.", diff --git a/src/lib/i18n/locales/bn-BD/translation.json b/src/lib/i18n/locales/bn-BD/translation.json index 13444969ab..4e30c744c4 100644 --- a/src/lib/i18n/locales/bn-BD/translation.json +++ b/src/lib/i18n/locales/bn-BD/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "আপনার রোল লিখুন", "Enter Your Username": "", "Enter your webhook URL": "", + "Entra ID": "", "Error": "ত্রুটি", "ERROR": "", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "", "Username": "", "Users": "ব্যাবহারকারীগণ", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "", diff --git a/src/lib/i18n/locales/bo-TB/translation.json b/src/lib/i18n/locales/bo-TB/translation.json index 25cb6d077c..17d741189f 100644 --- a/src/lib/i18n/locales/bo-TB/translation.json +++ b/src/lib/i18n/locales/bo-TB/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "ཁྱེད་ཀྱི་གནས་ཚད་འཇུག་པ།", "Enter Your Username": "ཁྱེད་ཀྱི་བེད་སྤྱོད་མིང་འཇུག་པ།", "Enter your webhook URL": "ཁྱེད་ཀྱི་ Webhook URL འཇུག་པ།", + "Entra ID": "", "Error": "ནོར་འཁྲུལ།", "ERROR": "ནོར་འཁྲུལ།", "Error accessing directory": "", @@ -1607,6 +1608,7 @@ "User Webhooks": "བེད་སྤྱོད་མཁན་གྱི་ Webhooks", "Username": "བེད་སྤྱོད་མིང་།", "Users": "བེད་སྤྱོད་མཁན།", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "དཔེ་དབྱིབས་ཡོངས་རྫོགས་དང་མཉམ་དུ་སྔོན་སྒྲིག་ arena དཔེ་དབྱིབས་བེད་སྤྱོད་གཏོང་བཞིན་པ། སྲོལ་བཟོས་དཔེ་དབྱིབས་སྣོན་པར་བསྣན་རྟགས་མཐེབ་གནོན་ལ་མནན་པ།", diff --git a/src/lib/i18n/locales/ca-ES/translation.json b/src/lib/i18n/locales/ca-ES/translation.json index 155d71a834..554645c69f 100644 --- a/src/lib/i18n/locales/ca-ES/translation.json +++ b/src/lib/i18n/locales/ca-ES/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Introdueix el teu rol", "Enter Your Username": "Introdueix el teu nom d'usuari", "Enter your webhook URL": "Entra la URL del webhook", + "Entra ID": "", "Error": "Error", "ERROR": "ERROR", "Error accessing directory": "Error en accedir al directori", @@ -1609,6 +1610,7 @@ "User Webhooks": "Webhooks d'usuari", "Username": "Nom d'usuari", "Users": "Usuaris", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "Utilitzant tot el document", "Using Focused Retrieval": "Utilitzant RAG", "Using the default arena model with all models. Click the plus button to add custom models.": "S'utilitza el model d'Arena predeterminat amb tots els models. Clica el botó més per afegir models personalitzats.", diff --git a/src/lib/i18n/locales/ceb-PH/translation.json b/src/lib/i18n/locales/ceb-PH/translation.json index e864e6edba..0c960c0d54 100644 --- a/src/lib/i18n/locales/ceb-PH/translation.json +++ b/src/lib/i18n/locales/ceb-PH/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "", "Enter Your Username": "", "Enter your webhook URL": "", + "Entra ID": "", "Error": "", "ERROR": "", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "", "Username": "", "Users": "Mga tiggamit", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "", diff --git a/src/lib/i18n/locales/cs-CZ/translation.json b/src/lib/i18n/locales/cs-CZ/translation.json index 377a26a00f..0194e42151 100644 --- a/src/lib/i18n/locales/cs-CZ/translation.json +++ b/src/lib/i18n/locales/cs-CZ/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Zadejte svou roli", "Enter Your Username": "Zadejte své uživatelské jméno", "Enter your webhook URL": "Zadejte URL svého webhooku", + "Entra ID": "", "Error": "Chyba", "ERROR": "CHYBA", "Error accessing directory": "Chyba při přístupu k adresáři", @@ -1610,6 +1611,7 @@ "User Webhooks": "Uživatelské webhooky", "Username": "Uživatelské jméno", "Users": "Uživatelé", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "Použití celého dokumentu", "Using Focused Retrieval": "Použití cíleného vyhledávání", "Using the default arena model with all models. Click the plus button to add custom models.": "Používá se výchozí model arény se všemi modely. Kliknutím na tlačítko plus přidáte vlastní modely.", diff --git a/src/lib/i18n/locales/da-DK/translation.json b/src/lib/i18n/locales/da-DK/translation.json index d0646b6a15..ac2ec2d759 100644 --- a/src/lib/i18n/locales/da-DK/translation.json +++ b/src/lib/i18n/locales/da-DK/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Indtast din rolle", "Enter Your Username": "Indtast dit brugernavn", "Enter your webhook URL": "Indtast din webhook URL", + "Entra ID": "", "Error": "Fejl", "ERROR": "FEJL", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "Bruger Webhooks", "Username": "Brugernavn", "Users": "Brugere", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "Bruger hele dokumentet", "Using Focused Retrieval": "Bruger fokuseret hentning", "Using the default arena model with all models. Click the plus button to add custom models.": "Brug den standard Arena-model med alle modeller. Klik på plusknappen for at tilføje brugerdefinerede modeller.", diff --git a/src/lib/i18n/locales/de-DE/translation.json b/src/lib/i18n/locales/de-DE/translation.json index 4c2e2e4dd9..36056975c3 100644 --- a/src/lib/i18n/locales/de-DE/translation.json +++ b/src/lib/i18n/locales/de-DE/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Geben Sie Ihre Rolle ein", "Enter Your Username": "Geben Sie Ihren Benutzernamen ein", "Enter your webhook URL": "Geben Sie Ihre Webhook-URL ein", + "Entra ID": "", "Error": "Fehler", "ERROR": "FEHLER", "Error accessing directory": "Fehler beim Zugriff auf das Verzeichnis", @@ -1608,6 +1609,7 @@ "User Webhooks": "Benutzer Webhooks", "Username": "Benutzername", "Users": "Benutzer", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "Verwendung des gesamten Dokuments", "Using Focused Retrieval": "Verwendung relevanter Abschnitte", "Using the default arena model with all models. Click the plus button to add custom models.": "Verwendung des Standard-Arena-Modells mit allen Modellen. Klicken Sie auf die Plus-Schaltfläche, um benutzerdefinierte Modelle hinzuzufügen.", diff --git a/src/lib/i18n/locales/dg-DG/translation.json b/src/lib/i18n/locales/dg-DG/translation.json index b3c2cfa194..d276eadfba 100644 --- a/src/lib/i18n/locales/dg-DG/translation.json +++ b/src/lib/i18n/locales/dg-DG/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "", "Enter Your Username": "", "Enter your webhook URL": "", + "Entra ID": "", "Error": "", "ERROR": "", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "", "Username": "", "Users": "Users much users", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "", diff --git a/src/lib/i18n/locales/el-GR/translation.json b/src/lib/i18n/locales/el-GR/translation.json index 76c04eeec4..537d35738f 100644 --- a/src/lib/i18n/locales/el-GR/translation.json +++ b/src/lib/i18n/locales/el-GR/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Εισάγετε τον Ρόλο σας", "Enter Your Username": "Εισάγετε το Όνομα Χρήστη σας", "Enter your webhook URL": "", + "Entra ID": "", "Error": "Σφάλμα", "ERROR": "ΣΦΑΛΜΑ", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "", "Username": "Όνομα Χρήστη", "Users": "Χρήστες", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "Χρησιμοποιώντας το προεπιλεγμένο μοντέλο arena με όλα τα μοντέλα. Κάντε κλικ στο κουμπί συν για να προσθέσετε προσαρμοσμένα μοντέλα.", diff --git a/src/lib/i18n/locales/en-GB/translation.json b/src/lib/i18n/locales/en-GB/translation.json index d38a130a47..2c9a194a89 100644 --- a/src/lib/i18n/locales/en-GB/translation.json +++ b/src/lib/i18n/locales/en-GB/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "", "Enter Your Username": "", "Enter your webhook URL": "", + "Entra ID": "", "Error": "", "ERROR": "", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "", "Username": "", "Users": "", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "", diff --git a/src/lib/i18n/locales/en-US/translation.json b/src/lib/i18n/locales/en-US/translation.json index 4d1444efb1..ca218b67db 100644 --- a/src/lib/i18n/locales/en-US/translation.json +++ b/src/lib/i18n/locales/en-US/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "", "Enter Your Username": "", "Enter your webhook URL": "", + "Entra ID": "", "Error": "", "ERROR": "", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "", "Username": "", "Users": "", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "", diff --git a/src/lib/i18n/locales/es-ES/translation.json b/src/lib/i18n/locales/es-ES/translation.json index fe58946534..1a9bac0bab 100644 --- a/src/lib/i18n/locales/es-ES/translation.json +++ b/src/lib/i18n/locales/es-ES/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Ingresa tu rol", "Enter Your Username": "Ingresa tu nombre de usuario", "Enter your webhook URL": "Ingresa tu URL de webhook", + "Entra ID": "", "Error": "Error", "ERROR": "ERROR", "Error accessing directory": "Error accediendo al directorio", @@ -1609,6 +1610,7 @@ "User Webhooks": "Usuario Webhooks", "Username": "Nombre de Usuario", "Users": "Usuarios", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "Usando Documento Completo", "Using Focused Retrieval": "Usando Recuperación Focalizada", "Using the default arena model with all models. Click the plus button to add custom models.": "Usando el modelo de arena predeterminado con todos los modelos. Pulsar en el botón + para agregar modelos personalizados.", diff --git a/src/lib/i18n/locales/et-EE/translation.json b/src/lib/i18n/locales/et-EE/translation.json index c902f9883c..38a41e6caa 100644 --- a/src/lib/i18n/locales/et-EE/translation.json +++ b/src/lib/i18n/locales/et-EE/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Sisestage oma roll", "Enter Your Username": "Sisestage oma kasutajanimi", "Enter your webhook URL": "Sisestage oma webhook URL", + "Entra ID": "", "Error": "Viga", "ERROR": "VIGA", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "", "Username": "Kasutajanimi", "Users": "Kasutajad", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "Kasutatakse vaikimisi areena mudelit kõigi mudelitega. Kohandatud mudelite lisamiseks klõpsake plussmärgiga nuppu.", diff --git a/src/lib/i18n/locales/eu-ES/translation.json b/src/lib/i18n/locales/eu-ES/translation.json index 514232b1ba..dfdc80ffbd 100644 --- a/src/lib/i18n/locales/eu-ES/translation.json +++ b/src/lib/i18n/locales/eu-ES/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Sartu Zure Rola", "Enter Your Username": "Sartu Zure Erabiltzaile-izena", "Enter your webhook URL": "", + "Entra ID": "", "Error": "Errorea", "ERROR": "ERROREA", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "", "Username": "Erabiltzaile-izena", "Users": "Erabiltzaileak", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "Arena modelo lehenetsia erabiltzen modelo guztiekin. Egin klik plus botoian modelo pertsonalizatuak gehitzeko.", diff --git a/src/lib/i18n/locales/fa-IR/translation.json b/src/lib/i18n/locales/fa-IR/translation.json index 99719d7fcf..6d9d863d7d 100644 --- a/src/lib/i18n/locales/fa-IR/translation.json +++ b/src/lib/i18n/locales/fa-IR/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "نقش خود را وارد کنید", "Enter Your Username": "نام کاربری خود را وارد کنید", "Enter your webhook URL": "آدرس وب\u200cهوک خود را وارد کنید", + "Entra ID": "", "Error": "خطا", "ERROR": "خطا", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "وب\u200cهوک\u200cهای کاربر", "Username": "نام کاربری", "Users": "کاربران", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "در حال استفاده از مدل آرنا با همهٔ مدل\u200cهای دیگر به طور پیش\u200cفرض. برای افزودن مدل\u200cهای سفارشی، روی دکمه به\u200cعلاوه کلیک کنید.", diff --git a/src/lib/i18n/locales/fi-FI/translation.json b/src/lib/i18n/locales/fi-FI/translation.json index 66547f6813..a60ec2afd2 100644 --- a/src/lib/i18n/locales/fi-FI/translation.json +++ b/src/lib/i18n/locales/fi-FI/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Kirjoita roolisi", "Enter Your Username": "Kirjoita käyttäjätunnuksesi", "Enter your webhook URL": "Kirjoita webhook osoitteesi", + "Entra ID": "", "Error": "Virhe", "ERROR": "VIRHE", "Error accessing directory": "Virhe hakemistoa avattaessa", @@ -1608,6 +1609,7 @@ "User Webhooks": "Käyttäjän Webhook:it", "Username": "Käyttäjätunnus", "Users": "Käyttäjät", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "Koko asiakirjan käyttäminen", "Using Focused Retrieval": "Kohdennetun haun käyttäminen", "Using the default arena model with all models. Click the plus button to add custom models.": "Käytetään oletusarena-mallia kaikkien mallien kanssa. Napsauta plus-painiketta lisätäksesi mukautettuja malleja.", diff --git a/src/lib/i18n/locales/fr-CA/translation.json b/src/lib/i18n/locales/fr-CA/translation.json index d5795b850e..cacfa76240 100644 --- a/src/lib/i18n/locales/fr-CA/translation.json +++ b/src/lib/i18n/locales/fr-CA/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Entrez votre rôle", "Enter Your Username": "Entrez votre nom d'utilisateur", "Enter your webhook URL": "Entrez l'URL de votre webhook", + "Entra ID": "", "Error": "Erreur", "ERROR": "ERREUR", "Error accessing directory": "", @@ -1609,6 +1610,7 @@ "User Webhooks": "Webhooks utilisateur", "Username": "Nom d'utilisateur", "Users": "Utilisateurs", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "Utilisation du modèle d'arène par défaut avec tous les modèles. Cliquez sur le bouton plus pour ajouter des modèles personnalisés.", diff --git a/src/lib/i18n/locales/fr-FR/translation.json b/src/lib/i18n/locales/fr-FR/translation.json index baffcf5d1c..efcb3719b5 100644 --- a/src/lib/i18n/locales/fr-FR/translation.json +++ b/src/lib/i18n/locales/fr-FR/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Entrez votre rôle", "Enter Your Username": "Entrez votre nom d'utilisateur", "Enter your webhook URL": "Entrez l'URL de votre webhook", + "Entra ID": "", "Error": "Erreur", "ERROR": "ERREUR", "Error accessing directory": "", @@ -1609,6 +1610,7 @@ "User Webhooks": "Webhooks utilisateur", "Username": "Nom d'utilisateur", "Users": "Utilisateurs", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "Utilisation du modèle d'arène par défaut avec tous les modèles. Cliquez sur le bouton plus pour ajouter des modèles personnalisés.", diff --git a/src/lib/i18n/locales/gl-ES/translation.json b/src/lib/i18n/locales/gl-ES/translation.json index 0f39b5ab48..7758c36142 100644 --- a/src/lib/i18n/locales/gl-ES/translation.json +++ b/src/lib/i18n/locales/gl-ES/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Ingrese o seu rol", "Enter Your Username": "Ingrese o seu nome de usuario", "Enter your webhook URL": "Ingrese a sua URL de webhook", + "Entra ID": "", "Error": "Error", "ERROR": "ERROR", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "", "Username": "Nombre de usuario", "Users": "Usuarios", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "Usando o modelo de arena predeterminado con todos os modelos. Haga clic no botón mais para agregar modelos personalizados.", diff --git a/src/lib/i18n/locales/he-IL/translation.json b/src/lib/i18n/locales/he-IL/translation.json index 06ead24b86..3c7cc8f22f 100644 --- a/src/lib/i18n/locales/he-IL/translation.json +++ b/src/lib/i18n/locales/he-IL/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "הזן את התפקיד שלך", "Enter Your Username": "", "Enter your webhook URL": "", + "Entra ID": "", "Error": "שגיאה", "ERROR": "", "Error accessing directory": "", @@ -1609,6 +1610,7 @@ "User Webhooks": "", "Username": "", "Users": "משתמשים", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "", diff --git a/src/lib/i18n/locales/hi-IN/translation.json b/src/lib/i18n/locales/hi-IN/translation.json index 58d2e54c13..763672c885 100644 --- a/src/lib/i18n/locales/hi-IN/translation.json +++ b/src/lib/i18n/locales/hi-IN/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "अपनी भूमिका दर्ज करें", "Enter Your Username": "", "Enter your webhook URL": "", + "Entra ID": "", "Error": "चूक", "ERROR": "", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "", "Username": "", "Users": "उपयोगकर्ताओं", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "", diff --git a/src/lib/i18n/locales/hr-HR/translation.json b/src/lib/i18n/locales/hr-HR/translation.json index 97a395aa06..7b129cce70 100644 --- a/src/lib/i18n/locales/hr-HR/translation.json +++ b/src/lib/i18n/locales/hr-HR/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Unesite svoju ulogu", "Enter Your Username": "", "Enter your webhook URL": "", + "Entra ID": "", "Error": "Greška", "ERROR": "", "Error accessing directory": "", @@ -1609,6 +1610,7 @@ "User Webhooks": "", "Username": "", "Users": "Korisnici", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "", diff --git a/src/lib/i18n/locales/hu-HU/translation.json b/src/lib/i18n/locales/hu-HU/translation.json index 238b2f8187..4fddc3b6ba 100644 --- a/src/lib/i18n/locales/hu-HU/translation.json +++ b/src/lib/i18n/locales/hu-HU/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Add meg a szereped", "Enter Your Username": "Add meg a felhasználóneved", "Enter your webhook URL": "Add meg a webhook URL-t", + "Entra ID": "", "Error": "Hiba", "ERROR": "HIBA", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "Felhasználói webhookok", "Username": "Felhasználónév", "Users": "Felhasználók", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "Az alapértelmezett aréna modell használata az összes modellel. Kattintson a plusz gombra egyéni modellek hozzáadásához.", diff --git a/src/lib/i18n/locales/id-ID/translation.json b/src/lib/i18n/locales/id-ID/translation.json index 2e9392af41..190007bb70 100644 --- a/src/lib/i18n/locales/id-ID/translation.json +++ b/src/lib/i18n/locales/id-ID/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Masukkan Peran Anda", "Enter Your Username": "", "Enter your webhook URL": "", + "Entra ID": "", "Error": "Kesalahan", "ERROR": "", "Error accessing directory": "", @@ -1607,6 +1608,7 @@ "User Webhooks": "", "Username": "", "Users": "Pengguna", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "", diff --git a/src/lib/i18n/locales/ie-GA/translation.json b/src/lib/i18n/locales/ie-GA/translation.json index 1385b9a24b..265ddf4088 100644 --- a/src/lib/i18n/locales/ie-GA/translation.json +++ b/src/lib/i18n/locales/ie-GA/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Cuir isteach do Ról", "Enter Your Username": "Cuir isteach D'Ainm Úsáideora", "Enter your webhook URL": "Cuir isteach URL do webhook", + "Entra ID": "", "Error": "Earráid", "ERROR": "EARRÁID", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "Crúcaí Gréasáin Úsáideoir", "Username": "Ainm Úsáideora", "Users": "Úsáideoirí", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "Ag Úsáid an Doiciméid Iomláin", "Using Focused Retrieval": "Ag Úsáid Aisghabhála Dírithe", "Using the default arena model with all models. Click the plus button to add custom models.": "Ag baint úsáide as an tsamhail réimse réamhshocraithe le gach samhail. Cliceáil an cnaipe móide chun samhlacha saincheaptha a chur leis.", diff --git a/src/lib/i18n/locales/it-IT/translation.json b/src/lib/i18n/locales/it-IT/translation.json index 9b135be49c..1c417afd86 100644 --- a/src/lib/i18n/locales/it-IT/translation.json +++ b/src/lib/i18n/locales/it-IT/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Inserisci il Tuo Ruolo", "Enter Your Username": "Inserisci il Tuo Nome Utente", "Enter your webhook URL": "Inserisci l'URL del tuo webhook", + "Entra ID": "", "Error": "Errore", "ERROR": "ERRORE", "Error accessing directory": "", @@ -1609,6 +1610,7 @@ "User Webhooks": "Webhook Utente", "Username": "Nome Utente", "Users": "Utenti", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "Utilizzando il modello di arena predefinito con tutti i modelli. Fai clic sul pulsante più per aggiungere modelli personalizzati.", diff --git a/src/lib/i18n/locales/ja-JP/translation.json b/src/lib/i18n/locales/ja-JP/translation.json index 11295757bb..ba02177939 100644 --- a/src/lib/i18n/locales/ja-JP/translation.json +++ b/src/lib/i18n/locales/ja-JP/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "ロールを入力してください", "Enter Your Username": "ユーザー名を入力してください", "Enter your webhook URL": "Webhook URLを入力してください", + "Entra ID": "", "Error": "エラー", "ERROR": "エラー", "Error accessing directory": "ディレクトリへのアクセスに失敗しました", @@ -1607,6 +1608,7 @@ "User Webhooks": "ユーザWebhook", "Username": "ユーザー名", "Users": "ユーザー", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "ドキュメント全体を使用します", "Using Focused Retrieval": "選択的検索を使用します", "Using the default arena model with all models. Click the plus button to add custom models.": "デフォルトのアリーナモデルをすべてのモデルで使用します。プラスボタンをクリックしてカスタムモデルを追加", diff --git a/src/lib/i18n/locales/ka-GE/translation.json b/src/lib/i18n/locales/ka-GE/translation.json index 0b439135d6..e65b94b59a 100644 --- a/src/lib/i18n/locales/ka-GE/translation.json +++ b/src/lib/i18n/locales/ka-GE/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "შეიყვანეთ თქვენი როლი", "Enter Your Username": "", "Enter your webhook URL": "", + "Entra ID": "", "Error": "შეცდომა", "ERROR": "ERROR", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "", "Username": "მომხმარებლის სახელი", "Users": "მომხმარებლები", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "", diff --git a/src/lib/i18n/locales/kab-DZ/translation.json b/src/lib/i18n/locales/kab-DZ/translation.json index 54cdf68d13..808e49b17d 100644 --- a/src/lib/i18n/locales/kab-DZ/translation.json +++ b/src/lib/i18n/locales/kab-DZ/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Sekcem tamlilt-ik⋅im", "Enter Your Username": "Sekcem-d isem-ik·im n useqdac", "Enter your webhook URL": "Sekcem tansa URL n webhook-ik", + "Entra ID": "", "Error": "Tuccḍa", "ERROR": "TUCCḌA", "Error accessing directory": "Tuccḍa deg unekcum ɣer ukaram", @@ -1608,6 +1609,7 @@ "User Webhooks": "Webhooks n yiseqdacen", "Username": "Isem n useqdac", "Users": "Iseqdacen", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "Aseqdec n isemli Entire", "Using Focused Retrieval": "Aseqdec n Retrieval yeslummes", "Using the default arena model with all models. Click the plus button to add custom models.": "Aseqdec n tmudemt n uzna amezwer s yal timudmin. Tekki ɣef tqeffalt-nni n tmerniwt akken ad ternuḍ timudmin tinsayanin.", diff --git a/src/lib/i18n/locales/ko-KR/translation.json b/src/lib/i18n/locales/ko-KR/translation.json index ab14360b66..996516f334 100644 --- a/src/lib/i18n/locales/ko-KR/translation.json +++ b/src/lib/i18n/locales/ko-KR/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "역할 입력", "Enter Your Username": "사용자 이름 입력", "Enter your webhook URL": "웹훅 URL을 입력해 주세요", + "Entra ID": "", "Error": "오류", "ERROR": "오류", "Error accessing directory": "", @@ -1607,6 +1608,7 @@ "User Webhooks": "사용자 웹훅", "Username": "사용자 이름", "Users": "사용자", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "전체 문서 사용", "Using Focused Retrieval": "집중 검색 사용", "Using the default arena model with all models. Click the plus button to add custom models.": "모든 모델은 기본 아레나 모델을 사용중입니다. 플러스 버튼을 눌러 커스텀 모델을 추가하세요.", diff --git a/src/lib/i18n/locales/lt-LT/translation.json b/src/lib/i18n/locales/lt-LT/translation.json index 28efb09336..aa005e3dd4 100644 --- a/src/lib/i18n/locales/lt-LT/translation.json +++ b/src/lib/i18n/locales/lt-LT/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Įveskite savo rolę", "Enter Your Username": "", "Enter your webhook URL": "", + "Entra ID": "", "Error": "Klaida", "ERROR": "", "Error accessing directory": "", @@ -1610,6 +1611,7 @@ "User Webhooks": "", "Username": "", "Users": "Naudotojai", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "", diff --git a/src/lib/i18n/locales/ms-MY/translation.json b/src/lib/i18n/locales/ms-MY/translation.json index d466d0e16f..5cd45c50e6 100644 --- a/src/lib/i18n/locales/ms-MY/translation.json +++ b/src/lib/i18n/locales/ms-MY/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Masukkan Peranan Anda", "Enter Your Username": "", "Enter your webhook URL": "", + "Entra ID": "", "Error": "Ralat", "ERROR": "", "Error accessing directory": "", @@ -1607,6 +1608,7 @@ "User Webhooks": "", "Username": "", "Users": "Pengguna", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "", diff --git a/src/lib/i18n/locales/nb-NO/translation.json b/src/lib/i18n/locales/nb-NO/translation.json index 23023068dc..64a742d0c2 100644 --- a/src/lib/i18n/locales/nb-NO/translation.json +++ b/src/lib/i18n/locales/nb-NO/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Skriv inn rollen din", "Enter Your Username": "Skriv inn brukernavnet ditt", "Enter your webhook URL": "Angi URL for webhook", + "Entra ID": "", "Error": "Feil", "ERROR": "FEIL", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "", "Username": "Brukernavn", "Users": "Brukere", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "Bruker standard Arena-modellen med alle modeller. Klikk på plussknappen for å legge til egne modeller.", diff --git a/src/lib/i18n/locales/nl-NL/translation.json b/src/lib/i18n/locales/nl-NL/translation.json index f6e3b908e1..0380dbf660 100644 --- a/src/lib/i18n/locales/nl-NL/translation.json +++ b/src/lib/i18n/locales/nl-NL/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Voer je rol in", "Enter Your Username": "Voer je gebruikersnaam in", "Enter your webhook URL": "Voer je webhook-URL in", + "Entra ID": "", "Error": "Fout", "ERROR": "ERROR", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "Gebruiker-webhooks", "Username": "Gebruikersnaam", "Users": "Gebruikers", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "Het standaard arena-model gebruiken met alle modellen. Klik op de plusknop om aangepaste modellen toe te voegen.", diff --git a/src/lib/i18n/locales/pa-IN/translation.json b/src/lib/i18n/locales/pa-IN/translation.json index ef3dcad673..1e7c61c771 100644 --- a/src/lib/i18n/locales/pa-IN/translation.json +++ b/src/lib/i18n/locales/pa-IN/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "ਆਪਣੀ ਭੂਮਿਕਾ ਦਰਜ ਕਰੋ", "Enter Your Username": "", "Enter your webhook URL": "", + "Entra ID": "", "Error": "ਗਲਤੀ", "ERROR": "", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "", "Username": "", "Users": "ਉਪਭੋਗਤਾ", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "", diff --git a/src/lib/i18n/locales/pl-PL/translation.json b/src/lib/i18n/locales/pl-PL/translation.json index 78785961d8..13685f965d 100644 --- a/src/lib/i18n/locales/pl-PL/translation.json +++ b/src/lib/i18n/locales/pl-PL/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Podaj swoją rolę", "Enter Your Username": "Podaj swoją nazwę użytkownika", "Enter your webhook URL": "Podaj adres URL swojego webhooka", + "Entra ID": "", "Error": "Błąd", "ERROR": "BŁĄD", "Error accessing directory": "", @@ -1610,6 +1611,7 @@ "User Webhooks": "Webhooki użytkownika", "Username": "Nazwa użytkownika", "Users": "Użytkownicy", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "Korzystanie z domyślnego modelu areny ze wszystkimi modelami. Kliknij przycisk plus, aby dodać niestandardowe modele.", diff --git a/src/lib/i18n/locales/pt-BR/translation.json b/src/lib/i18n/locales/pt-BR/translation.json index 5a011f6917..63105c090e 100644 --- a/src/lib/i18n/locales/pt-BR/translation.json +++ b/src/lib/i18n/locales/pt-BR/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Digite Sua Função", "Enter Your Username": "Digite seu usuário", "Enter your webhook URL": "Insira a URL do seu webhook", + "Entra ID": "", "Error": "Erro", "ERROR": "ERRO", "Error accessing directory": "Erro ao acessar o diretório", @@ -1609,6 +1610,7 @@ "User Webhooks": "Webhooks do usuário", "Username": "Nome do Usuário", "Users": "Usuários", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "Usando o documento inteiro", "Using Focused Retrieval": "Usando Recuperação Focada", "Using the default arena model with all models. Click the plus button to add custom models.": "Usando a arena de modelos padrão para todos os modelos. Clique no botão mais para adicionar modelos personalizados.", diff --git a/src/lib/i18n/locales/pt-PT/translation.json b/src/lib/i18n/locales/pt-PT/translation.json index 2dd8f7d0d7..084ba37f37 100644 --- a/src/lib/i18n/locales/pt-PT/translation.json +++ b/src/lib/i18n/locales/pt-PT/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Escreva a sua Função", "Enter Your Username": "", "Enter your webhook URL": "", + "Entra ID": "", "Error": "Erro", "ERROR": "", "Error accessing directory": "", @@ -1609,6 +1610,7 @@ "User Webhooks": "", "Username": "", "Users": "Utilizadores", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "", diff --git a/src/lib/i18n/locales/ro-RO/translation.json b/src/lib/i18n/locales/ro-RO/translation.json index fd935e2ba6..a34ed33cb6 100644 --- a/src/lib/i18n/locales/ro-RO/translation.json +++ b/src/lib/i18n/locales/ro-RO/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Introduceți Rolul Dvs.", "Enter Your Username": "", "Enter your webhook URL": "", + "Entra ID": "", "Error": "Eroare", "ERROR": "EROARE", "Error accessing directory": "", @@ -1609,6 +1610,7 @@ "User Webhooks": "", "Username": "", "Users": "Utilizatori", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "Folosind modelul implicit de arenă cu toate modelele. Faceți clic pe butonul plus pentru a adăuga modele personalizate.", diff --git a/src/lib/i18n/locales/ru-RU/translation.json b/src/lib/i18n/locales/ru-RU/translation.json index 0f897f35a2..485279cda2 100644 --- a/src/lib/i18n/locales/ru-RU/translation.json +++ b/src/lib/i18n/locales/ru-RU/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Введите вашу роль", "Enter Your Username": "Введите свое имя пользователя", "Enter your webhook URL": "Введите URL вашего веб-хука", + "Entra ID": "", "Error": "Ошибка", "ERROR": "ОШИБКА", "Error accessing directory": "", @@ -1610,6 +1611,7 @@ "User Webhooks": "Пользовательские веб-хуки", "Username": "Имя пользователя", "Users": "Пользователи", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "Использование модели арены по умолчанию со всеми моделями. Нажмите кнопку «плюс», чтобы добавить пользовательские модели.", diff --git a/src/lib/i18n/locales/sk-SK/translation.json b/src/lib/i18n/locales/sk-SK/translation.json index df6699b9e9..1d19cde9f5 100644 --- a/src/lib/i18n/locales/sk-SK/translation.json +++ b/src/lib/i18n/locales/sk-SK/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Zadajte svoju rolu", "Enter Your Username": "", "Enter your webhook URL": "", + "Entra ID": "", "Error": "Chyba", "ERROR": "Chyba", "Error accessing directory": "", @@ -1610,6 +1611,7 @@ "User Webhooks": "", "Username": "Používateľské meno", "Users": "Používatelia", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "Používanie predvoleného modelu arény so všetkými modelmi. Kliknutím na tlačidlo plus pridajte vlastné modely.", diff --git a/src/lib/i18n/locales/sr-RS/translation.json b/src/lib/i18n/locales/sr-RS/translation.json index ee3d319deb..0243a32dda 100644 --- a/src/lib/i18n/locales/sr-RS/translation.json +++ b/src/lib/i18n/locales/sr-RS/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Унесите вашу улогу", "Enter Your Username": "", "Enter your webhook URL": "", + "Entra ID": "", "Error": "Грешка", "ERROR": "ГРЕШКА", "Error accessing directory": "", @@ -1609,6 +1610,7 @@ "User Webhooks": "", "Username": "Корисничко име", "Users": "Корисници", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "", diff --git a/src/lib/i18n/locales/sv-SE/translation.json b/src/lib/i18n/locales/sv-SE/translation.json index 73e4e6fa0a..863b2ce648 100644 --- a/src/lib/i18n/locales/sv-SE/translation.json +++ b/src/lib/i18n/locales/sv-SE/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Ange din roll", "Enter Your Username": "Ange ditt användarnamn", "Enter your webhook URL": "Ange din webhook-URL", + "Entra ID": "", "Error": "Fel", "ERROR": "FEL", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "Användar-webhooks", "Username": "Användarnamn", "Users": "Användare", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "Använda standardmodellen för arenan med alla modeller. Klicka på plusknappen för att lägga till anpassade modeller", diff --git a/src/lib/i18n/locales/th-TH/translation.json b/src/lib/i18n/locales/th-TH/translation.json index 8911468243..27cf5b487f 100644 --- a/src/lib/i18n/locales/th-TH/translation.json +++ b/src/lib/i18n/locales/th-TH/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "ใส่บทบาทของคุณ", "Enter Your Username": "กรอกชื่อบัญชีผู้ใช้ของคุณ", "Enter your webhook URL": "", + "Entra ID": "", "Error": "ข้อผิดพลาด", "ERROR": "", "Error accessing directory": "", @@ -1607,6 +1608,7 @@ "User Webhooks": "", "Username": "", "Users": "ผู้ใช้", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "ใช้โมเดล Arena กับโมเดลทั้งหมด คลิกปุ่มบวกเพื่อเพิ่มโมเดลที่กำหนดเอง", diff --git a/src/lib/i18n/locales/tk-TM/translation.json b/src/lib/i18n/locales/tk-TM/translation.json index ba045ab487..ddd2ab01f0 100644 --- a/src/lib/i18n/locales/tk-TM/translation.json +++ b/src/lib/i18n/locales/tk-TM/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "", "Enter Your Username": "", "Enter your webhook URL": "", + "Entra ID": "", "Error": "Ýalňyşlyk", "ERROR": "", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "", "Username": "Ulanyjy Ady", "Users": "Ulanyjylar", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "", diff --git a/src/lib/i18n/locales/tr-TR/translation.json b/src/lib/i18n/locales/tr-TR/translation.json index 9ec8a69e4a..c8ac6ba499 100644 --- a/src/lib/i18n/locales/tr-TR/translation.json +++ b/src/lib/i18n/locales/tr-TR/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Rolünüzü Girin", "Enter Your Username": "Kullanıcı Adınızı Girin", "Enter your webhook URL": "Webhook URL'nizi girin", + "Entra ID": "", "Error": "Hata", "ERROR": "HATA", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "", "Username": "Kullanıcı Adı", "Users": "Kullanıcılar", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "Tüm modellerle varsayılan arena modelini kullanıyor. Özel modeller eklemek için artı düğmesine tıklayın.", diff --git a/src/lib/i18n/locales/ug-CN/translation.json b/src/lib/i18n/locales/ug-CN/translation.json index 9d307e9976..33e506764d 100644 --- a/src/lib/i18n/locales/ug-CN/translation.json +++ b/src/lib/i18n/locales/ug-CN/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "رولىڭىزنى كىرگۈزۈڭ", "Enter Your Username": "ئىشلەتكۈچى نامىڭىزنى كىرگۈزۈڭ", "Enter your webhook URL": "webhook URL كىرگۈزۈڭ", + "Entra ID": "", "Error": "خاتا", "ERROR": "خاتالىق", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "ئىشلەتكۈچى Webhookلىرى", "Username": "ئىشلەتكۈچى نامى", "Users": "ئىشلەتكۈچىلەر", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "بارلىق مودېللاردا كۆڭۈلدىكى arena مودېلى ئىشلىتىلىدۇ. ئۆزلۈك مودېل قوشۇش ئۈچۈن قوشۇش كۇنۇپكىسىنى چېكىڭ.", diff --git a/src/lib/i18n/locales/uk-UA/translation.json b/src/lib/i18n/locales/uk-UA/translation.json index b6a30a13c2..93d597adf2 100644 --- a/src/lib/i18n/locales/uk-UA/translation.json +++ b/src/lib/i18n/locales/uk-UA/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Введіть вашу роль", "Enter Your Username": "Введіть своє ім'я користувача", "Enter your webhook URL": "Введіть URL вашого вебхука", + "Entra ID": "", "Error": "Помилка", "ERROR": "ПОМИЛКА", "Error accessing directory": "", @@ -1610,6 +1611,7 @@ "User Webhooks": "Вебхуки користувача", "Username": "Ім'я користувача", "Users": "Користувачі", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "Використовуючи модель арени за замовчуванням з усіма моделями. Натисніть кнопку плюс, щоб додати користувацькі моделі.", diff --git a/src/lib/i18n/locales/ur-PK/translation.json b/src/lib/i18n/locales/ur-PK/translation.json index a81c099a38..bd451a8bf1 100644 --- a/src/lib/i18n/locales/ur-PK/translation.json +++ b/src/lib/i18n/locales/ur-PK/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "اپنا کردار درج کریں", "Enter Your Username": "", "Enter your webhook URL": "", + "Entra ID": "", "Error": "غلطی", "ERROR": "غلطی", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "", "Username": "", "Users": "صارفین", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "تمام ماڈلز کے ساتھ ڈیفالٹ ارینا ماڈل استعمال کریں حسب ضرورت ماڈلز شامل کرنے کے لیے پلس بٹن پر کلک کریں", diff --git a/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json b/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json index 20fa357616..f9171881ec 100644 --- a/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json +++ b/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Ролингизни киритинг", "Enter Your Username": "Фойдаланувчи номингизни киритинг", "Enter your webhook URL": "Вебҳук УРЛ манзилингизни киритинг", + "Entra ID": "", "Error": "Хато", "ERROR": "ХАТО", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "Фойдаланувчи веб-ҳуклари", "Username": "Фойдаланувчи номи", "Users": "Фойдаланувчилар", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "Барча моделлар билан стандарт арена моделидан фойдаланиш. Махсус моделларни қўшиш учун ортиқча тугмасини босинг.", diff --git a/src/lib/i18n/locales/uz-Latn-Uz/translation.json b/src/lib/i18n/locales/uz-Latn-Uz/translation.json index 9af73fc9d2..6d96ebd4c6 100644 --- a/src/lib/i18n/locales/uz-Latn-Uz/translation.json +++ b/src/lib/i18n/locales/uz-Latn-Uz/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Rolingizni kiriting", "Enter Your Username": "Foydalanuvchi nomingizni kiriting", "Enter your webhook URL": "Vebhuk URL manzilingizni kiriting", + "Entra ID": "", "Error": "Xato", "ERROR": "XATO", "Error accessing directory": "", @@ -1608,6 +1609,7 @@ "User Webhooks": "Foydalanuvchi veb-huklari", "Username": "Foydalanuvchi nomi", "Users": "Foydalanuvchilar", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "Barcha modellar bilan standart arena modelidan foydalanish. Maxsus modellarni qo'shish uchun ortiqcha tugmasini bosing.", diff --git a/src/lib/i18n/locales/vi-VN/translation.json b/src/lib/i18n/locales/vi-VN/translation.json index 62b57c4906..f39b38eeac 100644 --- a/src/lib/i18n/locales/vi-VN/translation.json +++ b/src/lib/i18n/locales/vi-VN/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "Nhập vai trò của bạn", "Enter Your Username": "Nhập Tên đăng nhập của bạn", "Enter your webhook URL": "Nhập URL webhook của bạn", + "Entra ID": "", "Error": "Lỗi", "ERROR": "LỖI", "Error accessing directory": "", @@ -1607,6 +1608,7 @@ "User Webhooks": "Webhook Người dùng", "Username": "Tên đăng nhập", "Users": "Người sử dụng", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "", "Using Focused Retrieval": "", "Using the default arena model with all models. Click the plus button to add custom models.": "Sử dụng mô hình arena mặc định với tất cả các mô hình. Nhấp vào nút dấu cộng để thêm các mô hình tùy chỉnh.", diff --git a/src/lib/i18n/locales/zh-CN/translation.json b/src/lib/i18n/locales/zh-CN/translation.json index 831f77c904..f65dc8dd0f 100644 --- a/src/lib/i18n/locales/zh-CN/translation.json +++ b/src/lib/i18n/locales/zh-CN/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "输入您的权限组", "Enter Your Username": "输入您的用户名", "Enter your webhook URL": "输入您的 Webhook URL", + "Entra ID": "", "Error": "错误", "ERROR": "错误", "Error accessing directory": "访问目录时出错", @@ -1607,6 +1608,7 @@ "User Webhooks": "用户 Webhook", "Username": "用户名", "Users": "用户", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "使用完整文档", "Using Focused Retrieval": "使用聚焦检索", "Using the default arena model with all models. Click the plus button to add custom models.": "竞技场模型默认使用所有模型。点击上方的“+”按钮以添加自定义模型", diff --git a/src/lib/i18n/locales/zh-TW/translation.json b/src/lib/i18n/locales/zh-TW/translation.json index e8570743af..0360dc9ce6 100644 --- a/src/lib/i18n/locales/zh-TW/translation.json +++ b/src/lib/i18n/locales/zh-TW/translation.json @@ -630,6 +630,7 @@ "Enter Your Role": "輸入您的角色", "Enter Your Username": "輸入您的使用者名稱", "Enter your webhook URL": "輸入您的 webhook URL", + "Entra ID": "", "Error": "錯誤", "ERROR": "錯誤", "Error accessing directory": "存取目錄時發生錯誤", @@ -1607,6 +1608,7 @@ "User Webhooks": "使用者 Webhooks", "Username": "使用者名稱", "Users": "使用者", + "Uses DefaultAzureCredential to authenticate": "", "Using Entire Document": "使用完整檔案", "Using Focused Retrieval": "使用聚焦檢索", "Using the default arena model with all models. Click the plus button to add custom models.": "正在使用預設競技場模型與所有模型。點選加號按鈕以新增自訂模型。",