浏览代码

chore: format

Timothy Jaeryang Baek 2 周之前
父节点
当前提交
c01255570b
共有 60 个文件被更改,包括 126 次插入12 次删除
  1. 8 8
      backend/open_webui/routers/openai.py
  2. 3 3
      src/lib/components/AddConnectionModal.svelte
  3. 1 1
      src/lib/components/chat/Messages/Markdown/KatexRenderer.svelte
  4. 2 0
      src/lib/i18n/locales/ar-BH/translation.json
  5. 2 0
      src/lib/i18n/locales/ar/translation.json
  6. 2 0
      src/lib/i18n/locales/bg-BG/translation.json
  7. 2 0
      src/lib/i18n/locales/bn-BD/translation.json
  8. 2 0
      src/lib/i18n/locales/bo-TB/translation.json
  9. 2 0
      src/lib/i18n/locales/ca-ES/translation.json
  10. 2 0
      src/lib/i18n/locales/ceb-PH/translation.json
  11. 2 0
      src/lib/i18n/locales/cs-CZ/translation.json
  12. 2 0
      src/lib/i18n/locales/da-DK/translation.json
  13. 2 0
      src/lib/i18n/locales/de-DE/translation.json
  14. 2 0
      src/lib/i18n/locales/dg-DG/translation.json
  15. 2 0
      src/lib/i18n/locales/el-GR/translation.json
  16. 2 0
      src/lib/i18n/locales/en-GB/translation.json
  17. 2 0
      src/lib/i18n/locales/en-US/translation.json
  18. 2 0
      src/lib/i18n/locales/es-ES/translation.json
  19. 2 0
      src/lib/i18n/locales/et-EE/translation.json
  20. 2 0
      src/lib/i18n/locales/eu-ES/translation.json
  21. 2 0
      src/lib/i18n/locales/fa-IR/translation.json
  22. 2 0
      src/lib/i18n/locales/fi-FI/translation.json
  23. 2 0
      src/lib/i18n/locales/fr-CA/translation.json
  24. 2 0
      src/lib/i18n/locales/fr-FR/translation.json
  25. 2 0
      src/lib/i18n/locales/gl-ES/translation.json
  26. 2 0
      src/lib/i18n/locales/he-IL/translation.json
  27. 2 0
      src/lib/i18n/locales/hi-IN/translation.json
  28. 2 0
      src/lib/i18n/locales/hr-HR/translation.json
  29. 2 0
      src/lib/i18n/locales/hu-HU/translation.json
  30. 2 0
      src/lib/i18n/locales/id-ID/translation.json
  31. 2 0
      src/lib/i18n/locales/ie-GA/translation.json
  32. 2 0
      src/lib/i18n/locales/it-IT/translation.json
  33. 2 0
      src/lib/i18n/locales/ja-JP/translation.json
  34. 2 0
      src/lib/i18n/locales/ka-GE/translation.json
  35. 2 0
      src/lib/i18n/locales/kab-DZ/translation.json
  36. 2 0
      src/lib/i18n/locales/ko-KR/translation.json
  37. 2 0
      src/lib/i18n/locales/lt-LT/translation.json
  38. 2 0
      src/lib/i18n/locales/ms-MY/translation.json
  39. 2 0
      src/lib/i18n/locales/nb-NO/translation.json
  40. 2 0
      src/lib/i18n/locales/nl-NL/translation.json
  41. 2 0
      src/lib/i18n/locales/pa-IN/translation.json
  42. 2 0
      src/lib/i18n/locales/pl-PL/translation.json
  43. 2 0
      src/lib/i18n/locales/pt-BR/translation.json
  44. 2 0
      src/lib/i18n/locales/pt-PT/translation.json
  45. 2 0
      src/lib/i18n/locales/ro-RO/translation.json
  46. 2 0
      src/lib/i18n/locales/ru-RU/translation.json
  47. 2 0
      src/lib/i18n/locales/sk-SK/translation.json
  48. 2 0
      src/lib/i18n/locales/sr-RS/translation.json
  49. 2 0
      src/lib/i18n/locales/sv-SE/translation.json
  50. 2 0
      src/lib/i18n/locales/th-TH/translation.json
  51. 2 0
      src/lib/i18n/locales/tk-TM/translation.json
  52. 2 0
      src/lib/i18n/locales/tr-TR/translation.json
  53. 2 0
      src/lib/i18n/locales/ug-CN/translation.json
  54. 2 0
      src/lib/i18n/locales/uk-UA/translation.json
  55. 2 0
      src/lib/i18n/locales/ur-PK/translation.json
  56. 2 0
      src/lib/i18n/locales/uz-Cyrl-UZ/translation.json
  57. 2 0
      src/lib/i18n/locales/uz-Latn-Uz/translation.json
  58. 2 0
      src/lib/i18n/locales/vi-VN/translation.json
  59. 2 0
      src/lib/i18n/locales/zh-CN/translation.json
  60. 2 0
      src/lib/i18n/locales/zh-TW/translation.json

+ 8 - 8
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

+ 3 - 3
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}
 													<option value="system_oauth">{$i18n.t('OAuth')}</option>
 													{#if azure}
-														<option value="azure_entra_id">{$i18n.t('Azure Entra ID')}</option>
+														<option value="microsoft_entra_id">{$i18n.t('Entra ID')}</option>
 													{/if}
 												{/if}
 											{/if}
@@ -364,7 +364,7 @@
 											>
 												{$i18n.t('Forwards system user OAuth access token to authenticate')}
 											</div>
-										{:else if ['azure_ad', 'azure_entra_id'].includes(auth_type)}
+										{:else if ['azure_ad', 'microsoft_entra_id'].includes(auth_type)}
 											<div
 												class={`text-xs self-center translate-y-[1px] ${($settings?.highContrastMode ?? false) ? 'text-gray-800 dark:text-gray-100' : 'text-gray-500'}`}
 											>

+ 1 - 1
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;
 	});

+ 2 - 0
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.": "",

+ 2 - 0
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.": "يتم استخدام نموذج الساحة الافتراضي مع جميع النماذج. اضغط على زر + لإضافة نماذج مخصصة.",

+ 2 - 0
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.": "Използване на стандартния арена модел с всички модели. Кликнете бутона плюс, за да добавите персонализирани модели.",

+ 2 - 0
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.": "",

+ 2 - 0
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 དཔེ་དབྱིབས་བེད་སྤྱོད་གཏོང་བཞིན་པ། སྲོལ་བཟོས་དཔེ་དབྱིབས་སྣོན་པར་བསྣན་རྟགས་མཐེབ་གནོན་ལ་མནན་པ།",

+ 2 - 0
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.",

+ 2 - 0
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.": "",

+ 2 - 0
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.",

+ 2 - 0
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.",

+ 2 - 0
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.",

+ 2 - 0
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.": "",

+ 2 - 0
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 με όλα τα μοντέλα. Κάντε κλικ στο κουμπί συν για να προσθέσετε προσαρμοσμένα μοντέλα.",

+ 2 - 0
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.": "",

+ 2 - 0
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.": "",

+ 2 - 0
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.",

+ 2 - 0
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.",

+ 2 - 0
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.",

+ 2 - 0
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علاوه کلیک کنید.",

+ 2 - 0
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.",

+ 2 - 0
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.",

+ 2 - 0
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.",

+ 2 - 0
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.",

+ 2 - 0
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.": "",

+ 2 - 0
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.": "",

+ 2 - 0
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.": "",

+ 2 - 0
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.",

+ 2 - 0
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.": "",

+ 2 - 0
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.",

+ 2 - 0
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.",

+ 2 - 0
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.": "デフォルトのアリーナモデルをすべてのモデルで使用します。プラスボタンをクリックしてカスタムモデルを追加",

+ 2 - 0
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.": "",

+ 2 - 0
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.",

+ 2 - 0
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.": "모든 모델은 기본 아레나 모델을 사용중입니다. 플러스 버튼을 눌러 커스텀 모델을 추가하세요.",

+ 2 - 0
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.": "",

+ 2 - 0
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.": "",

+ 2 - 0
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.",

+ 2 - 0
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.",

+ 2 - 0
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.": "",

+ 2 - 0
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.",

+ 2 - 0
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.",

+ 2 - 0
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.": "",

+ 2 - 0
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.",

+ 2 - 0
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.": "Использование модели арены по умолчанию со всеми моделями. Нажмите кнопку «плюс», чтобы добавить пользовательские модели.",

+ 2 - 0
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.",

+ 2 - 0
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.": "",

+ 2 - 0
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",

+ 2 - 0
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 กับโมเดลทั้งหมด คลิกปุ่มบวกเพื่อเพิ่มโมเดลที่กำหนดเอง",

+ 2 - 0
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.": "",

+ 2 - 0
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.",

+ 2 - 0
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 مودېلى ئىشلىتىلىدۇ. ئۆزلۈك مودېل قوشۇش ئۈچۈن قوشۇش كۇنۇپكىسىنى چېكىڭ.",

+ 2 - 0
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.": "Використовуючи модель арени за замовчуванням з усіма моделями. Натисніть кнопку плюс, щоб додати користувацькі моделі.",

+ 2 - 0
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.": "تمام ماڈلز کے ساتھ ڈیفالٹ ارینا ماڈل استعمال کریں حسب ضرورت ماڈلز شامل کرنے کے لیے پلس بٹن پر کلک کریں",

+ 2 - 0
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.": "Барча моделлар билан стандарт арена моделидан фойдаланиш. Махсус моделларни қўшиш учун ортиқча тугмасини босинг.",

+ 2 - 0
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.",

+ 2 - 0
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.",

+ 2 - 0
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.": "竞技场模型默认使用所有模型。点击上方的“+”按钮以添加自定义模型",

+ 2 - 0
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.": "正在使用預設競技場模型與所有模型。點選加號按鈕以新增自訂模型。",