Timothy Jaeryang Baek 5 mesi fa
parent
commit
c01255570b
60 ha cambiato i file con 126 aggiunte e 12 eliminazioni
  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:
         if oauth_token:
             token = f"{oauth_token.get('access_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:
     if token:
         headers["Authorization"] = f"Bearer {token}"
         headers["Authorization"] = f"Bearer {token}"
@@ -193,9 +193,9 @@ def get_headers_and_cookies(
     return headers, 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.
     Returns the token string or None if authentication fails.
     """
     """
     try:
     try:
@@ -204,7 +204,7 @@ def get_azure_entra_id_access_token():
         )
         )
         return token_provider()
         return token_provider()
     except Exception as e:
     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
         return None
 
 
 
 
@@ -663,7 +663,7 @@ async def verify_connection(
             if api_config.get("azure", False):
             if api_config.get("azure", False):
                 # Only set api-key header if not using Azure Entra ID authentication
                 # Only set api-key header if not using Azure Entra ID authentication
                 auth_type = api_config.get("auth_type", "bearer")
                 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-key"] = key
 
 
                 api_version = api_config.get("api_version", "") or "2023-03-15-preview"
                 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
         # Only set api-key header if not using Azure Entra ID authentication
         auth_type = api_config.get("auth_type", "bearer")
         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-key"] = key
 
 
         headers["api-version"] = api_version
         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
             # Only set api-key header if not using Azure Entra ID authentication
             auth_type = api_config.get("auth_type", "bearer")
             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-key"] = key
 
 
             headers["api-version"] = api_version
             headers["api-version"] = api_version

+ 3 - 3
src/lib/components/AddConnectionModal.svelte

@@ -122,7 +122,7 @@
 				return;
 				return;
 			}
 			}
 
 
-			if (!key && !['azure_ad', 'azure_entra_id'].includes(auth_type)) {
+			if (!key && !['azure_ad', 'microsoft_entra_id'].includes(auth_type)) {
 				loading = false;
 				loading = false;
 
 
 				toast.error($i18n.t('Key is required'));
 				toast.error($i18n.t('Key is required'));
@@ -332,7 +332,7 @@
 												{#if !direct}
 												{#if !direct}
 													<option value="system_oauth">{$i18n.t('OAuth')}</option>
 													<option value="system_oauth">{$i18n.t('OAuth')}</option>
 													{#if azure}
 													{#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}
 												{/if}
 											{/if}
 											{/if}
@@ -364,7 +364,7 @@
 											>
 											>
 												{$i18n.t('Forwards system user OAuth access token to authenticate')}
 												{$i18n.t('Forwards system user OAuth access token to authenticate')}
 											</div>
 											</div>
-										{:else if ['azure_ad', 'azure_entra_id'].includes(auth_type)}
+										{:else if ['azure_ad', 'microsoft_entra_id'].includes(auth_type)}
 											<div
 											<div
 												class={`text-xs self-center translate-y-[1px] ${($settings?.highContrastMode ?? false) ? 'text-gray-800 dark:text-gray-100' : 'text-gray-500'}`}
 												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([
 		const [katex] = await Promise.all([
 			import('katex'),
 			import('katex'),
 			import('katex/contrib/mhchem'),
 			import('katex/contrib/mhchem'),
-			import('katex/dist/katex.min.css'),
+			import('katex/dist/katex.min.css')
 		]);
 		]);
 		renderToString = katex.renderToString;
 		renderToString = katex.renderToString;
 	});
 	});

+ 2 - 0
src/lib/i18n/locales/ar-BH/translation.json

@@ -630,6 +630,7 @@
 	"Enter Your Role": "أدخل الصلاحيات",
 	"Enter Your Role": "أدخل الصلاحيات",
 	"Enter Your Username": "",
 	"Enter Your Username": "",
 	"Enter your webhook URL": "",
 	"Enter your webhook URL": "",
+	"Entra ID": "",
 	"Error": "خطأ",
 	"Error": "خطأ",
 	"ERROR": "",
 	"ERROR": "",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1612,6 +1613,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "",
 	"Username": "",
 	"Users": "المستخدمين",
 	"Users": "المستخدمين",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"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 Role": "أدخل الصلاحيات",
 	"Enter Your Username": "أدخل اسم المستخدم الخاص بك",
 	"Enter Your Username": "أدخل اسم المستخدم الخاص بك",
 	"Enter your webhook URL": "أدخل رابط Webhook الخاص بك",
 	"Enter your webhook URL": "أدخل رابط Webhook الخاص بك",
+	"Entra ID": "",
 	"Error": "خطأ",
 	"Error": "خطأ",
 	"ERROR": "خطأ",
 	"ERROR": "خطأ",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1612,6 +1613,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "اسم المستخدم",
 	"Username": "اسم المستخدم",
 	"Users": "المستخدمين",
 	"Users": "المستخدمين",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "يتم استخدام نموذج الساحة الافتراضي مع جميع النماذج. اضغط على زر + لإضافة نماذج مخصصة.",
 	"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 Role": "Въведете вашата роля",
 	"Enter Your Username": "Въведете вашето потребителско име",
 	"Enter Your Username": "Въведете вашето потребителско име",
 	"Enter your webhook URL": "Въведете вашия URL адрес на webhook",
 	"Enter your webhook URL": "Въведете вашия URL адрес на webhook",
+	"Entra ID": "",
 	"Error": "Грешка",
 	"Error": "Грешка",
 	"ERROR": "ГРЕШКА",
 	"ERROR": "ГРЕШКА",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "Потребителско име",
 	"Username": "Потребителско име",
 	"Users": "Потребители",
 	"Users": "Потребители",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Използване на стандартния арена модел с всички модели. Кликнете бутона плюс, за да добавите персонализирани модели.",
 	"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 Role": "আপনার রোল লিখুন",
 	"Enter Your Username": "",
 	"Enter Your Username": "",
 	"Enter your webhook URL": "",
 	"Enter your webhook URL": "",
+	"Entra ID": "",
 	"Error": "ত্রুটি",
 	"Error": "ত্রুটি",
 	"ERROR": "",
 	"ERROR": "",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "",
 	"Username": "",
 	"Users": "ব্যাবহারকারীগণ",
 	"Users": "ব্যাবহারকারীগণ",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"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 Role": "ཁྱེད་ཀྱི་གནས་ཚད་འཇུག་པ།",
 	"Enter Your Username": "ཁྱེད་ཀྱི་བེད་སྤྱོད་མིང་འཇུག་པ།",
 	"Enter Your Username": "ཁྱེད་ཀྱི་བེད་སྤྱོད་མིང་འཇུག་པ།",
 	"Enter your webhook URL": "ཁྱེད་ཀྱི་ Webhook URL འཇུག་པ།",
 	"Enter your webhook URL": "ཁྱེད་ཀྱི་ Webhook URL འཇུག་པ།",
+	"Entra ID": "",
 	"Error": "ནོར་འཁྲུལ།",
 	"Error": "ནོར་འཁྲུལ།",
 	"ERROR": "ནོར་འཁྲུལ།",
 	"ERROR": "ནོར་འཁྲུལ།",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1607,6 +1608,7 @@
 	"User Webhooks": "བེད་སྤྱོད་མཁན་གྱི་ Webhooks",
 	"User Webhooks": "བེད་སྤྱོད་མཁན་གྱི་ Webhooks",
 	"Username": "བེད་སྤྱོད་མིང་།",
 	"Username": "བེད་སྤྱོད་མིང་།",
 	"Users": "བེད་སྤྱོད་མཁན།",
 	"Users": "བེད་སྤྱོད་མཁན།",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "དཔེ་དབྱིབས་ཡོངས་རྫོགས་དང་མཉམ་དུ་སྔོན་སྒྲིག་ arena དཔེ་དབྱིབས་བེད་སྤྱོད་གཏོང་བཞིན་པ། སྲོལ་བཟོས་དཔེ་དབྱིབས་སྣོན་པར་བསྣན་རྟགས་མཐེབ་གནོན་ལ་མནན་པ།",
 	"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 Role": "Introdueix el teu rol",
 	"Enter Your Username": "Introdueix el teu nom d'usuari",
 	"Enter Your Username": "Introdueix el teu nom d'usuari",
 	"Enter your webhook URL": "Entra la URL del webhook",
 	"Enter your webhook URL": "Entra la URL del webhook",
+	"Entra ID": "",
 	"Error": "Error",
 	"Error": "Error",
 	"ERROR": "ERROR",
 	"ERROR": "ERROR",
 	"Error accessing directory": "Error en accedir al directori",
 	"Error accessing directory": "Error en accedir al directori",
@@ -1609,6 +1610,7 @@
 	"User Webhooks": "Webhooks d'usuari",
 	"User Webhooks": "Webhooks d'usuari",
 	"Username": "Nom d'usuari",
 	"Username": "Nom d'usuari",
 	"Users": "Usuaris",
 	"Users": "Usuaris",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "Utilitzant tot el document",
 	"Using Entire Document": "Utilitzant tot el document",
 	"Using Focused Retrieval": "Utilitzant RAG",
 	"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.",
 	"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 Role": "",
 	"Enter Your Username": "",
 	"Enter Your Username": "",
 	"Enter your webhook URL": "",
 	"Enter your webhook URL": "",
+	"Entra ID": "",
 	"Error": "",
 	"Error": "",
 	"ERROR": "",
 	"ERROR": "",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "",
 	"Username": "",
 	"Users": "Mga tiggamit",
 	"Users": "Mga tiggamit",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"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 Role": "Zadejte svou roli",
 	"Enter Your Username": "Zadejte své uživatelské jméno",
 	"Enter Your Username": "Zadejte své uživatelské jméno",
 	"Enter your webhook URL": "Zadejte URL svého webhooku",
 	"Enter your webhook URL": "Zadejte URL svého webhooku",
+	"Entra ID": "",
 	"Error": "Chyba",
 	"Error": "Chyba",
 	"ERROR": "CHYBA",
 	"ERROR": "CHYBA",
 	"Error accessing directory": "Chyba při přístupu k adresáři",
 	"Error accessing directory": "Chyba při přístupu k adresáři",
@@ -1610,6 +1611,7 @@
 	"User Webhooks": "Uživatelské webhooky",
 	"User Webhooks": "Uživatelské webhooky",
 	"Username": "Uživatelské jméno",
 	"Username": "Uživatelské jméno",
 	"Users": "Uživatelé",
 	"Users": "Uživatelé",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "Použití celého dokumentu",
 	"Using Entire Document": "Použití celého dokumentu",
 	"Using Focused Retrieval": "Použití cíleného vyhledávání",
 	"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.",
 	"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 Role": "Indtast din rolle",
 	"Enter Your Username": "Indtast dit brugernavn",
 	"Enter Your Username": "Indtast dit brugernavn",
 	"Enter your webhook URL": "Indtast din webhook URL",
 	"Enter your webhook URL": "Indtast din webhook URL",
+	"Entra ID": "",
 	"Error": "Fejl",
 	"Error": "Fejl",
 	"ERROR": "FEJL",
 	"ERROR": "FEJL",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "Bruger Webhooks",
 	"User Webhooks": "Bruger Webhooks",
 	"Username": "Brugernavn",
 	"Username": "Brugernavn",
 	"Users": "Brugere",
 	"Users": "Brugere",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "Bruger hele dokumentet",
 	"Using Entire Document": "Bruger hele dokumentet",
 	"Using Focused Retrieval": "Bruger fokuseret hentning",
 	"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.",
 	"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 Role": "Geben Sie Ihre Rolle ein",
 	"Enter Your Username": "Geben Sie Ihren Benutzernamen ein",
 	"Enter Your Username": "Geben Sie Ihren Benutzernamen ein",
 	"Enter your webhook URL": "Geben Sie Ihre Webhook-URL ein",
 	"Enter your webhook URL": "Geben Sie Ihre Webhook-URL ein",
+	"Entra ID": "",
 	"Error": "Fehler",
 	"Error": "Fehler",
 	"ERROR": "FEHLER",
 	"ERROR": "FEHLER",
 	"Error accessing directory": "Fehler beim Zugriff auf das Verzeichnis",
 	"Error accessing directory": "Fehler beim Zugriff auf das Verzeichnis",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "Benutzer Webhooks",
 	"User Webhooks": "Benutzer Webhooks",
 	"Username": "Benutzername",
 	"Username": "Benutzername",
 	"Users": "Benutzer",
 	"Users": "Benutzer",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "Verwendung des gesamten Dokuments",
 	"Using Entire Document": "Verwendung des gesamten Dokuments",
 	"Using Focused Retrieval": "Verwendung relevanter Abschnitte",
 	"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.",
 	"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 Role": "",
 	"Enter Your Username": "",
 	"Enter Your Username": "",
 	"Enter your webhook URL": "",
 	"Enter your webhook URL": "",
+	"Entra ID": "",
 	"Error": "",
 	"Error": "",
 	"ERROR": "",
 	"ERROR": "",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "",
 	"Username": "",
 	"Users": "Users much users",
 	"Users": "Users much users",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"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 Role": "Εισάγετε τον Ρόλο σας",
 	"Enter Your Username": "Εισάγετε το Όνομα Χρήστη σας",
 	"Enter Your Username": "Εισάγετε το Όνομα Χρήστη σας",
 	"Enter your webhook URL": "",
 	"Enter your webhook URL": "",
+	"Entra ID": "",
 	"Error": "Σφάλμα",
 	"Error": "Σφάλμα",
 	"ERROR": "ΣΦΑΛΜΑ",
 	"ERROR": "ΣΦΑΛΜΑ",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "Όνομα Χρήστη",
 	"Username": "Όνομα Χρήστη",
 	"Users": "Χρήστες",
 	"Users": "Χρήστες",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Χρησιμοποιώντας το προεπιλεγμένο μοντέλο arena με όλα τα μοντέλα. Κάντε κλικ στο κουμπί συν για να προσθέσετε προσαρμοσμένα μοντέλα.",
 	"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 Role": "",
 	"Enter Your Username": "",
 	"Enter Your Username": "",
 	"Enter your webhook URL": "",
 	"Enter your webhook URL": "",
+	"Entra ID": "",
 	"Error": "",
 	"Error": "",
 	"ERROR": "",
 	"ERROR": "",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "",
 	"Username": "",
 	"Users": "",
 	"Users": "",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"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 Role": "",
 	"Enter Your Username": "",
 	"Enter Your Username": "",
 	"Enter your webhook URL": "",
 	"Enter your webhook URL": "",
+	"Entra ID": "",
 	"Error": "",
 	"Error": "",
 	"ERROR": "",
 	"ERROR": "",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "",
 	"Username": "",
 	"Users": "",
 	"Users": "",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"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 Role": "Ingresa tu rol",
 	"Enter Your Username": "Ingresa tu nombre de usuario",
 	"Enter Your Username": "Ingresa tu nombre de usuario",
 	"Enter your webhook URL": "Ingresa tu URL de webhook",
 	"Enter your webhook URL": "Ingresa tu URL de webhook",
+	"Entra ID": "",
 	"Error": "Error",
 	"Error": "Error",
 	"ERROR": "ERROR",
 	"ERROR": "ERROR",
 	"Error accessing directory": "Error accediendo al directorio",
 	"Error accessing directory": "Error accediendo al directorio",
@@ -1609,6 +1610,7 @@
 	"User Webhooks": "Usuario Webhooks",
 	"User Webhooks": "Usuario Webhooks",
 	"Username": "Nombre de Usuario",
 	"Username": "Nombre de Usuario",
 	"Users": "Usuarios",
 	"Users": "Usuarios",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "Usando Documento Completo",
 	"Using Entire Document": "Usando Documento Completo",
 	"Using Focused Retrieval": "Usando Recuperación Focalizada",
 	"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.",
 	"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 Role": "Sisestage oma roll",
 	"Enter Your Username": "Sisestage oma kasutajanimi",
 	"Enter Your Username": "Sisestage oma kasutajanimi",
 	"Enter your webhook URL": "Sisestage oma webhook URL",
 	"Enter your webhook URL": "Sisestage oma webhook URL",
+	"Entra ID": "",
 	"Error": "Viga",
 	"Error": "Viga",
 	"ERROR": "VIGA",
 	"ERROR": "VIGA",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "Kasutajanimi",
 	"Username": "Kasutajanimi",
 	"Users": "Kasutajad",
 	"Users": "Kasutajad",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"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.",
 	"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 Role": "Sartu Zure Rola",
 	"Enter Your Username": "Sartu Zure Erabiltzaile-izena",
 	"Enter Your Username": "Sartu Zure Erabiltzaile-izena",
 	"Enter your webhook URL": "",
 	"Enter your webhook URL": "",
+	"Entra ID": "",
 	"Error": "Errorea",
 	"Error": "Errorea",
 	"ERROR": "ERROREA",
 	"ERROR": "ERROREA",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "Erabiltzaile-izena",
 	"Username": "Erabiltzaile-izena",
 	"Users": "Erabiltzaileak",
 	"Users": "Erabiltzaileak",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"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.",
 	"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 Role": "نقش خود را وارد کنید",
 	"Enter Your Username": "نام کاربری خود را وارد کنید",
 	"Enter Your Username": "نام کاربری خود را وارد کنید",
 	"Enter your webhook URL": "آدرس وب\u200cهوک خود را وارد کنید",
 	"Enter your webhook URL": "آدرس وب\u200cهوک خود را وارد کنید",
+	"Entra ID": "",
 	"Error": "خطا",
 	"Error": "خطا",
 	"ERROR": "خطا",
 	"ERROR": "خطا",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "وب\u200cهوک\u200cهای کاربر",
 	"User Webhooks": "وب\u200cهوک\u200cهای کاربر",
 	"Username": "نام کاربری",
 	"Username": "نام کاربری",
 	"Users": "کاربران",
 	"Users": "کاربران",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "در حال استفاده از مدل آرنا با همهٔ مدل\u200cهای دیگر به طور پیش\u200cفرض. برای افزودن مدل\u200cهای سفارشی، روی دکمه به\u200cعلاوه کلیک کنید.",
 	"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 Role": "Kirjoita roolisi",
 	"Enter Your Username": "Kirjoita käyttäjätunnuksesi",
 	"Enter Your Username": "Kirjoita käyttäjätunnuksesi",
 	"Enter your webhook URL": "Kirjoita webhook osoitteesi",
 	"Enter your webhook URL": "Kirjoita webhook osoitteesi",
+	"Entra ID": "",
 	"Error": "Virhe",
 	"Error": "Virhe",
 	"ERROR": "VIRHE",
 	"ERROR": "VIRHE",
 	"Error accessing directory": "Virhe hakemistoa avattaessa",
 	"Error accessing directory": "Virhe hakemistoa avattaessa",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "Käyttäjän Webhook:it",
 	"User Webhooks": "Käyttäjän Webhook:it",
 	"Username": "Käyttäjätunnus",
 	"Username": "Käyttäjätunnus",
 	"Users": "Käyttäjät",
 	"Users": "Käyttäjät",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "Koko asiakirjan käyttäminen",
 	"Using Entire Document": "Koko asiakirjan käyttäminen",
 	"Using Focused Retrieval": "Kohdennetun haun 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.",
 	"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 Role": "Entrez votre rôle",
 	"Enter Your Username": "Entrez votre nom d'utilisateur",
 	"Enter Your Username": "Entrez votre nom d'utilisateur",
 	"Enter your webhook URL": "Entrez l'URL de votre webhook",
 	"Enter your webhook URL": "Entrez l'URL de votre webhook",
+	"Entra ID": "",
 	"Error": "Erreur",
 	"Error": "Erreur",
 	"ERROR": "ERREUR",
 	"ERROR": "ERREUR",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1609,6 +1610,7 @@
 	"User Webhooks": "Webhooks utilisateur",
 	"User Webhooks": "Webhooks utilisateur",
 	"Username": "Nom d'utilisateur",
 	"Username": "Nom d'utilisateur",
 	"Users": "Utilisateurs",
 	"Users": "Utilisateurs",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"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.",
 	"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 Role": "Entrez votre rôle",
 	"Enter Your Username": "Entrez votre nom d'utilisateur",
 	"Enter Your Username": "Entrez votre nom d'utilisateur",
 	"Enter your webhook URL": "Entrez l'URL de votre webhook",
 	"Enter your webhook URL": "Entrez l'URL de votre webhook",
+	"Entra ID": "",
 	"Error": "Erreur",
 	"Error": "Erreur",
 	"ERROR": "ERREUR",
 	"ERROR": "ERREUR",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1609,6 +1610,7 @@
 	"User Webhooks": "Webhooks utilisateur",
 	"User Webhooks": "Webhooks utilisateur",
 	"Username": "Nom d'utilisateur",
 	"Username": "Nom d'utilisateur",
 	"Users": "Utilisateurs",
 	"Users": "Utilisateurs",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"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.",
 	"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 Role": "Ingrese o seu rol",
 	"Enter Your Username": "Ingrese o seu nome de usuario",
 	"Enter Your Username": "Ingrese o seu nome de usuario",
 	"Enter your webhook URL": "Ingrese a sua URL de webhook",
 	"Enter your webhook URL": "Ingrese a sua URL de webhook",
+	"Entra ID": "",
 	"Error": "Error",
 	"Error": "Error",
 	"ERROR": "ERROR",
 	"ERROR": "ERROR",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "Nombre de usuario",
 	"Username": "Nombre de usuario",
 	"Users": "Usuarios",
 	"Users": "Usuarios",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"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.",
 	"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 Role": "הזן את התפקיד שלך",
 	"Enter Your Username": "",
 	"Enter Your Username": "",
 	"Enter your webhook URL": "",
 	"Enter your webhook URL": "",
+	"Entra ID": "",
 	"Error": "שגיאה",
 	"Error": "שגיאה",
 	"ERROR": "",
 	"ERROR": "",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1609,6 +1610,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "",
 	"Username": "",
 	"Users": "משתמשים",
 	"Users": "משתמשים",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"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 Role": "अपनी भूमिका दर्ज करें",
 	"Enter Your Username": "",
 	"Enter Your Username": "",
 	"Enter your webhook URL": "",
 	"Enter your webhook URL": "",
+	"Entra ID": "",
 	"Error": "चूक",
 	"Error": "चूक",
 	"ERROR": "",
 	"ERROR": "",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "",
 	"Username": "",
 	"Users": "उपयोगकर्ताओं",
 	"Users": "उपयोगकर्ताओं",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"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 Role": "Unesite svoju ulogu",
 	"Enter Your Username": "",
 	"Enter Your Username": "",
 	"Enter your webhook URL": "",
 	"Enter your webhook URL": "",
+	"Entra ID": "",
 	"Error": "Greška",
 	"Error": "Greška",
 	"ERROR": "",
 	"ERROR": "",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1609,6 +1610,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "",
 	"Username": "",
 	"Users": "Korisnici",
 	"Users": "Korisnici",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"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 Role": "Add meg a szereped",
 	"Enter Your Username": "Add meg a felhasználóneved",
 	"Enter Your Username": "Add meg a felhasználóneved",
 	"Enter your webhook URL": "Add meg a webhook URL-t",
 	"Enter your webhook URL": "Add meg a webhook URL-t",
+	"Entra ID": "",
 	"Error": "Hiba",
 	"Error": "Hiba",
 	"ERROR": "HIBA",
 	"ERROR": "HIBA",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "Felhasználói webhookok",
 	"User Webhooks": "Felhasználói webhookok",
 	"Username": "Felhasználónév",
 	"Username": "Felhasználónév",
 	"Users": "Felhasználók",
 	"Users": "Felhasználók",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"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.",
 	"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 Role": "Masukkan Peran Anda",
 	"Enter Your Username": "",
 	"Enter Your Username": "",
 	"Enter your webhook URL": "",
 	"Enter your webhook URL": "",
+	"Entra ID": "",
 	"Error": "Kesalahan",
 	"Error": "Kesalahan",
 	"ERROR": "",
 	"ERROR": "",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1607,6 +1608,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "",
 	"Username": "",
 	"Users": "Pengguna",
 	"Users": "Pengguna",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"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 Role": "Cuir isteach do Ról",
 	"Enter Your Username": "Cuir isteach D'Ainm Úsáideora",
 	"Enter Your Username": "Cuir isteach D'Ainm Úsáideora",
 	"Enter your webhook URL": "Cuir isteach URL do webhook",
 	"Enter your webhook URL": "Cuir isteach URL do webhook",
+	"Entra ID": "",
 	"Error": "Earráid",
 	"Error": "Earráid",
 	"ERROR": "EARRÁID",
 	"ERROR": "EARRÁID",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "Crúcaí Gréasáin Úsáideoir",
 	"User Webhooks": "Crúcaí Gréasáin Úsáideoir",
 	"Username": "Ainm Úsáideora",
 	"Username": "Ainm Úsáideora",
 	"Users": "Úsáideoirí",
 	"Users": "Úsáideoirí",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "Ag Úsáid an Doiciméid Iomláin",
 	"Using Entire Document": "Ag Úsáid an Doiciméid Iomláin",
 	"Using Focused Retrieval": "Ag Úsáid Aisghabhála Dírithe",
 	"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.",
 	"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 Role": "Inserisci il Tuo Ruolo",
 	"Enter Your Username": "Inserisci il Tuo Nome Utente",
 	"Enter Your Username": "Inserisci il Tuo Nome Utente",
 	"Enter your webhook URL": "Inserisci l'URL del tuo webhook",
 	"Enter your webhook URL": "Inserisci l'URL del tuo webhook",
+	"Entra ID": "",
 	"Error": "Errore",
 	"Error": "Errore",
 	"ERROR": "ERRORE",
 	"ERROR": "ERRORE",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1609,6 +1610,7 @@
 	"User Webhooks": "Webhook Utente",
 	"User Webhooks": "Webhook Utente",
 	"Username": "Nome Utente",
 	"Username": "Nome Utente",
 	"Users": "Utenti",
 	"Users": "Utenti",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"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.",
 	"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 Role": "ロールを入力してください",
 	"Enter Your Username": "ユーザー名を入力してください",
 	"Enter Your Username": "ユーザー名を入力してください",
 	"Enter your webhook URL": "Webhook URLを入力してください",
 	"Enter your webhook URL": "Webhook URLを入力してください",
+	"Entra ID": "",
 	"Error": "エラー",
 	"Error": "エラー",
 	"ERROR": "エラー",
 	"ERROR": "エラー",
 	"Error accessing directory": "ディレクトリへのアクセスに失敗しました",
 	"Error accessing directory": "ディレクトリへのアクセスに失敗しました",
@@ -1607,6 +1608,7 @@
 	"User Webhooks": "ユーザWebhook",
 	"User Webhooks": "ユーザWebhook",
 	"Username": "ユーザー名",
 	"Username": "ユーザー名",
 	"Users": "ユーザー",
 	"Users": "ユーザー",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "ドキュメント全体を使用します",
 	"Using Entire Document": "ドキュメント全体を使用します",
 	"Using Focused Retrieval": "選択的検索を使用します",
 	"Using Focused Retrieval": "選択的検索を使用します",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "デフォルトのアリーナモデルをすべてのモデルで使用します。プラスボタンをクリックしてカスタムモデルを追加",
 	"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 Role": "შეიყვანეთ თქვენი როლი",
 	"Enter Your Username": "",
 	"Enter Your Username": "",
 	"Enter your webhook URL": "",
 	"Enter your webhook URL": "",
+	"Entra ID": "",
 	"Error": "შეცდომა",
 	"Error": "შეცდომა",
 	"ERROR": "ERROR",
 	"ERROR": "ERROR",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "მომხმარებლის სახელი",
 	"Username": "მომხმარებლის სახელი",
 	"Users": "მომხმარებლები",
 	"Users": "მომხმარებლები",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"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 Role": "Sekcem tamlilt-ik⋅im",
 	"Enter Your Username": "Sekcem-d isem-ik·im n useqdac",
 	"Enter Your Username": "Sekcem-d isem-ik·im n useqdac",
 	"Enter your webhook URL": "Sekcem tansa URL n webhook-ik",
 	"Enter your webhook URL": "Sekcem tansa URL n webhook-ik",
+	"Entra ID": "",
 	"Error": "Tuccḍa",
 	"Error": "Tuccḍa",
 	"ERROR": "TUCCḌA",
 	"ERROR": "TUCCḌA",
 	"Error accessing directory": "Tuccḍa deg unekcum ɣer ukaram",
 	"Error accessing directory": "Tuccḍa deg unekcum ɣer ukaram",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "Webhooks n yiseqdacen",
 	"User Webhooks": "Webhooks n yiseqdacen",
 	"Username": "Isem n useqdac",
 	"Username": "Isem n useqdac",
 	"Users": "Iseqdacen",
 	"Users": "Iseqdacen",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "Aseqdec n isemli Entire",
 	"Using Entire Document": "Aseqdec n isemli Entire",
 	"Using Focused Retrieval": "Aseqdec n Retrieval yeslummes",
 	"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.",
 	"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 Role": "역할 입력",
 	"Enter Your Username": "사용자 이름 입력",
 	"Enter Your Username": "사용자 이름 입력",
 	"Enter your webhook URL": "웹훅 URL을 입력해 주세요",
 	"Enter your webhook URL": "웹훅 URL을 입력해 주세요",
+	"Entra ID": "",
 	"Error": "오류",
 	"Error": "오류",
 	"ERROR": "오류",
 	"ERROR": "오류",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1607,6 +1608,7 @@
 	"User Webhooks": "사용자 웹훅",
 	"User Webhooks": "사용자 웹훅",
 	"Username": "사용자 이름",
 	"Username": "사용자 이름",
 	"Users": "사용자",
 	"Users": "사용자",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "전체 문서 사용",
 	"Using Entire Document": "전체 문서 사용",
 	"Using Focused Retrieval": "집중 검색 사용",
 	"Using Focused Retrieval": "집중 검색 사용",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "모든 모델은 기본 아레나 모델을 사용중입니다. 플러스 버튼을 눌러 커스텀 모델을 추가하세요.",
 	"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 Role": "Įveskite savo rolę",
 	"Enter Your Username": "",
 	"Enter Your Username": "",
 	"Enter your webhook URL": "",
 	"Enter your webhook URL": "",
+	"Entra ID": "",
 	"Error": "Klaida",
 	"Error": "Klaida",
 	"ERROR": "",
 	"ERROR": "",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1610,6 +1611,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "",
 	"Username": "",
 	"Users": "Naudotojai",
 	"Users": "Naudotojai",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"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 Role": "Masukkan Peranan Anda",
 	"Enter Your Username": "",
 	"Enter Your Username": "",
 	"Enter your webhook URL": "",
 	"Enter your webhook URL": "",
+	"Entra ID": "",
 	"Error": "Ralat",
 	"Error": "Ralat",
 	"ERROR": "",
 	"ERROR": "",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1607,6 +1608,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "",
 	"Username": "",
 	"Users": "Pengguna",
 	"Users": "Pengguna",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"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 Role": "Skriv inn rollen din",
 	"Enter Your Username": "Skriv inn brukernavnet ditt",
 	"Enter Your Username": "Skriv inn brukernavnet ditt",
 	"Enter your webhook URL": "Angi URL for webhook",
 	"Enter your webhook URL": "Angi URL for webhook",
+	"Entra ID": "",
 	"Error": "Feil",
 	"Error": "Feil",
 	"ERROR": "FEIL",
 	"ERROR": "FEIL",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "Brukernavn",
 	"Username": "Brukernavn",
 	"Users": "Brukere",
 	"Users": "Brukere",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"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.",
 	"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 Role": "Voer je rol in",
 	"Enter Your Username": "Voer je gebruikersnaam in",
 	"Enter Your Username": "Voer je gebruikersnaam in",
 	"Enter your webhook URL": "Voer je webhook-URL in",
 	"Enter your webhook URL": "Voer je webhook-URL in",
+	"Entra ID": "",
 	"Error": "Fout",
 	"Error": "Fout",
 	"ERROR": "ERROR",
 	"ERROR": "ERROR",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "Gebruiker-webhooks",
 	"User Webhooks": "Gebruiker-webhooks",
 	"Username": "Gebruikersnaam",
 	"Username": "Gebruikersnaam",
 	"Users": "Gebruikers",
 	"Users": "Gebruikers",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"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.",
 	"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 Role": "ਆਪਣੀ ਭੂਮਿਕਾ ਦਰਜ ਕਰੋ",
 	"Enter Your Username": "",
 	"Enter Your Username": "",
 	"Enter your webhook URL": "",
 	"Enter your webhook URL": "",
+	"Entra ID": "",
 	"Error": "ਗਲਤੀ",
 	"Error": "ਗਲਤੀ",
 	"ERROR": "",
 	"ERROR": "",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "",
 	"Username": "",
 	"Users": "ਉਪਭੋਗਤਾ",
 	"Users": "ਉਪਭੋਗਤਾ",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"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 Role": "Podaj swoją rolę",
 	"Enter Your Username": "Podaj swoją nazwę użytkownika",
 	"Enter Your Username": "Podaj swoją nazwę użytkownika",
 	"Enter your webhook URL": "Podaj adres URL swojego webhooka",
 	"Enter your webhook URL": "Podaj adres URL swojego webhooka",
+	"Entra ID": "",
 	"Error": "Błąd",
 	"Error": "Błąd",
 	"ERROR": "BŁĄD",
 	"ERROR": "BŁĄD",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1610,6 +1611,7 @@
 	"User Webhooks": "Webhooki użytkownika",
 	"User Webhooks": "Webhooki użytkownika",
 	"Username": "Nazwa użytkownika",
 	"Username": "Nazwa użytkownika",
 	"Users": "Użytkownicy",
 	"Users": "Użytkownicy",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"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.",
 	"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 Role": "Digite Sua Função",
 	"Enter Your Username": "Digite seu usuário",
 	"Enter Your Username": "Digite seu usuário",
 	"Enter your webhook URL": "Insira a URL do seu webhook",
 	"Enter your webhook URL": "Insira a URL do seu webhook",
+	"Entra ID": "",
 	"Error": "Erro",
 	"Error": "Erro",
 	"ERROR": "ERRO",
 	"ERROR": "ERRO",
 	"Error accessing directory": "Erro ao acessar o diretório",
 	"Error accessing directory": "Erro ao acessar o diretório",
@@ -1609,6 +1610,7 @@
 	"User Webhooks": "Webhooks do usuário",
 	"User Webhooks": "Webhooks do usuário",
 	"Username": "Nome do Usuário",
 	"Username": "Nome do Usuário",
 	"Users": "Usuários",
 	"Users": "Usuários",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "Usando o documento inteiro",
 	"Using Entire Document": "Usando o documento inteiro",
 	"Using Focused Retrieval": "Usando Recuperação Focada",
 	"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.",
 	"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 Role": "Escreva a sua Função",
 	"Enter Your Username": "",
 	"Enter Your Username": "",
 	"Enter your webhook URL": "",
 	"Enter your webhook URL": "",
+	"Entra ID": "",
 	"Error": "Erro",
 	"Error": "Erro",
 	"ERROR": "",
 	"ERROR": "",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1609,6 +1610,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "",
 	"Username": "",
 	"Users": "Utilizadores",
 	"Users": "Utilizadores",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"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 Role": "Introduceți Rolul Dvs.",
 	"Enter Your Username": "",
 	"Enter Your Username": "",
 	"Enter your webhook URL": "",
 	"Enter your webhook URL": "",
+	"Entra ID": "",
 	"Error": "Eroare",
 	"Error": "Eroare",
 	"ERROR": "EROARE",
 	"ERROR": "EROARE",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1609,6 +1610,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "",
 	"Username": "",
 	"Users": "Utilizatori",
 	"Users": "Utilizatori",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"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.",
 	"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 Role": "Введите вашу роль",
 	"Enter Your Username": "Введите свое имя пользователя",
 	"Enter Your Username": "Введите свое имя пользователя",
 	"Enter your webhook URL": "Введите URL вашего веб-хука",
 	"Enter your webhook URL": "Введите URL вашего веб-хука",
+	"Entra ID": "",
 	"Error": "Ошибка",
 	"Error": "Ошибка",
 	"ERROR": "ОШИБКА",
 	"ERROR": "ОШИБКА",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1610,6 +1611,7 @@
 	"User Webhooks": "Пользовательские веб-хуки",
 	"User Webhooks": "Пользовательские веб-хуки",
 	"Username": "Имя пользователя",
 	"Username": "Имя пользователя",
 	"Users": "Пользователи",
 	"Users": "Пользователи",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Использование модели арены по умолчанию со всеми моделями. Нажмите кнопку «плюс», чтобы добавить пользовательские модели.",
 	"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 Role": "Zadajte svoju rolu",
 	"Enter Your Username": "",
 	"Enter Your Username": "",
 	"Enter your webhook URL": "",
 	"Enter your webhook URL": "",
+	"Entra ID": "",
 	"Error": "Chyba",
 	"Error": "Chyba",
 	"ERROR": "Chyba",
 	"ERROR": "Chyba",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1610,6 +1611,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "Používateľské meno",
 	"Username": "Používateľské meno",
 	"Users": "Používatelia",
 	"Users": "Používatelia",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"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.",
 	"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 Role": "Унесите вашу улогу",
 	"Enter Your Username": "",
 	"Enter Your Username": "",
 	"Enter your webhook URL": "",
 	"Enter your webhook URL": "",
+	"Entra ID": "",
 	"Error": "Грешка",
 	"Error": "Грешка",
 	"ERROR": "ГРЕШКА",
 	"ERROR": "ГРЕШКА",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1609,6 +1610,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "Корисничко име",
 	"Username": "Корисничко име",
 	"Users": "Корисници",
 	"Users": "Корисници",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"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 Role": "Ange din roll",
 	"Enter Your Username": "Ange ditt användarnamn",
 	"Enter Your Username": "Ange ditt användarnamn",
 	"Enter your webhook URL": "Ange din webhook-URL",
 	"Enter your webhook URL": "Ange din webhook-URL",
+	"Entra ID": "",
 	"Error": "Fel",
 	"Error": "Fel",
 	"ERROR": "FEL",
 	"ERROR": "FEL",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "Användar-webhooks",
 	"User Webhooks": "Användar-webhooks",
 	"Username": "Användarnamn",
 	"Username": "Användarnamn",
 	"Users": "Användare",
 	"Users": "Användare",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"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",
 	"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 Role": "ใส่บทบาทของคุณ",
 	"Enter Your Username": "กรอกชื่อบัญชีผู้ใช้ของคุณ",
 	"Enter Your Username": "กรอกชื่อบัญชีผู้ใช้ของคุณ",
 	"Enter your webhook URL": "",
 	"Enter your webhook URL": "",
+	"Entra ID": "",
 	"Error": "ข้อผิดพลาด",
 	"Error": "ข้อผิดพลาด",
 	"ERROR": "",
 	"ERROR": "",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1607,6 +1608,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "",
 	"Username": "",
 	"Users": "ผู้ใช้",
 	"Users": "ผู้ใช้",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "ใช้โมเดล Arena กับโมเดลทั้งหมด คลิกปุ่มบวกเพื่อเพิ่มโมเดลที่กำหนดเอง",
 	"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 Role": "",
 	"Enter Your Username": "",
 	"Enter Your Username": "",
 	"Enter your webhook URL": "",
 	"Enter your webhook URL": "",
+	"Entra ID": "",
 	"Error": "Ýalňyşlyk",
 	"Error": "Ýalňyşlyk",
 	"ERROR": "",
 	"ERROR": "",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "Ulanyjy Ady",
 	"Username": "Ulanyjy Ady",
 	"Users": "Ulanyjylar",
 	"Users": "Ulanyjylar",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"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 Role": "Rolünüzü Girin",
 	"Enter Your Username": "Kullanıcı Adınızı Girin",
 	"Enter Your Username": "Kullanıcı Adınızı Girin",
 	"Enter your webhook URL": "Webhook URL'nizi girin",
 	"Enter your webhook URL": "Webhook URL'nizi girin",
+	"Entra ID": "",
 	"Error": "Hata",
 	"Error": "Hata",
 	"ERROR": "HATA",
 	"ERROR": "HATA",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "Kullanıcı Adı",
 	"Username": "Kullanıcı Adı",
 	"Users": "Kullanıcılar",
 	"Users": "Kullanıcılar",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"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.",
 	"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 Role": "رولىڭىزنى كىرگۈزۈڭ",
 	"Enter Your Username": "ئىشلەتكۈچى نامىڭىزنى كىرگۈزۈڭ",
 	"Enter Your Username": "ئىشلەتكۈچى نامىڭىزنى كىرگۈزۈڭ",
 	"Enter your webhook URL": "webhook URL كىرگۈزۈڭ",
 	"Enter your webhook URL": "webhook URL كىرگۈزۈڭ",
+	"Entra ID": "",
 	"Error": "خاتا",
 	"Error": "خاتا",
 	"ERROR": "خاتالىق",
 	"ERROR": "خاتالىق",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "ئىشلەتكۈچى Webhookلىرى",
 	"User Webhooks": "ئىشلەتكۈچى Webhookلىرى",
 	"Username": "ئىشلەتكۈچى نامى",
 	"Username": "ئىشلەتكۈچى نامى",
 	"Users": "ئىشلەتكۈچىلەر",
 	"Users": "ئىشلەتكۈچىلەر",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "بارلىق مودېللاردا كۆڭۈلدىكى arena مودېلى ئىشلىتىلىدۇ. ئۆزلۈك مودېل قوشۇش ئۈچۈن قوشۇش كۇنۇپكىسىنى چېكىڭ.",
 	"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 Role": "Введіть вашу роль",
 	"Enter Your Username": "Введіть своє ім'я користувача",
 	"Enter Your Username": "Введіть своє ім'я користувача",
 	"Enter your webhook URL": "Введіть URL вашого вебхука",
 	"Enter your webhook URL": "Введіть URL вашого вебхука",
+	"Entra ID": "",
 	"Error": "Помилка",
 	"Error": "Помилка",
 	"ERROR": "ПОМИЛКА",
 	"ERROR": "ПОМИЛКА",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1610,6 +1611,7 @@
 	"User Webhooks": "Вебхуки користувача",
 	"User Webhooks": "Вебхуки користувача",
 	"Username": "Ім'я користувача",
 	"Username": "Ім'я користувача",
 	"Users": "Користувачі",
 	"Users": "Користувачі",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Використовуючи модель арени за замовчуванням з усіма моделями. Натисніть кнопку плюс, щоб додати користувацькі моделі.",
 	"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 Role": "اپنا کردار درج کریں",
 	"Enter Your Username": "",
 	"Enter Your Username": "",
 	"Enter your webhook URL": "",
 	"Enter your webhook URL": "",
+	"Entra ID": "",
 	"Error": "غلطی",
 	"Error": "غلطی",
 	"ERROR": "غلطی",
 	"ERROR": "غلطی",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "",
 	"User Webhooks": "",
 	"Username": "",
 	"Username": "",
 	"Users": "صارفین",
 	"Users": "صارفین",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "تمام ماڈلز کے ساتھ ڈیفالٹ ارینا ماڈل استعمال کریں حسب ضرورت ماڈلز شامل کرنے کے لیے پلس بٹن پر کلک کریں",
 	"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 Role": "Ролингизни киритинг",
 	"Enter Your Username": "Фойдаланувчи номингизни киритинг",
 	"Enter Your Username": "Фойдаланувчи номингизни киритинг",
 	"Enter your webhook URL": "Вебҳук УРЛ манзилингизни киритинг",
 	"Enter your webhook URL": "Вебҳук УРЛ манзилингизни киритинг",
+	"Entra ID": "",
 	"Error": "Хато",
 	"Error": "Хато",
 	"ERROR": "ХАТО",
 	"ERROR": "ХАТО",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "Фойдаланувчи веб-ҳуклари",
 	"User Webhooks": "Фойдаланувчи веб-ҳуклари",
 	"Username": "Фойдаланувчи номи",
 	"Username": "Фойдаланувчи номи",
 	"Users": "Фойдаланувчилар",
 	"Users": "Фойдаланувчилар",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Барча моделлар билан стандарт арена моделидан фойдаланиш. Махсус моделларни қўшиш учун ортиқча тугмасини босинг.",
 	"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 Role": "Rolingizni kiriting",
 	"Enter Your Username": "Foydalanuvchi nomingizni kiriting",
 	"Enter Your Username": "Foydalanuvchi nomingizni kiriting",
 	"Enter your webhook URL": "Vebhuk URL manzilingizni kiriting",
 	"Enter your webhook URL": "Vebhuk URL manzilingizni kiriting",
+	"Entra ID": "",
 	"Error": "Xato",
 	"Error": "Xato",
 	"ERROR": "XATO",
 	"ERROR": "XATO",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1608,6 +1609,7 @@
 	"User Webhooks": "Foydalanuvchi veb-huklari",
 	"User Webhooks": "Foydalanuvchi veb-huklari",
 	"Username": "Foydalanuvchi nomi",
 	"Username": "Foydalanuvchi nomi",
 	"Users": "Foydalanuvchilar",
 	"Users": "Foydalanuvchilar",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"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.",
 	"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 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 Username": "Nhập Tên đăng nhập của bạn",
 	"Enter your webhook URL": "Nhập URL webhook 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": "LỖI",
 	"ERROR": "LỖI",
 	"Error accessing directory": "",
 	"Error accessing directory": "",
@@ -1607,6 +1608,7 @@
 	"User Webhooks": "Webhook Người dùng",
 	"User Webhooks": "Webhook Người dùng",
 	"Username": "Tên đăng nhập",
 	"Username": "Tên đăng nhập",
 	"Users": "Người sử dụng",
 	"Users": "Người sử dụng",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "",
 	"Using Entire Document": "",
 	"Using Focused Retrieval": "",
 	"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.",
 	"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 Role": "输入您的权限组",
 	"Enter Your Username": "输入您的用户名",
 	"Enter Your Username": "输入您的用户名",
 	"Enter your webhook URL": "输入您的 Webhook URL",
 	"Enter your webhook URL": "输入您的 Webhook URL",
+	"Entra ID": "",
 	"Error": "错误",
 	"Error": "错误",
 	"ERROR": "错误",
 	"ERROR": "错误",
 	"Error accessing directory": "访问目录时出错",
 	"Error accessing directory": "访问目录时出错",
@@ -1607,6 +1608,7 @@
 	"User Webhooks": "用户 Webhook",
 	"User Webhooks": "用户 Webhook",
 	"Username": "用户名",
 	"Username": "用户名",
 	"Users": "用户",
 	"Users": "用户",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "使用完整文档",
 	"Using Entire Document": "使用完整文档",
 	"Using Focused Retrieval": "使用聚焦检索",
 	"Using Focused Retrieval": "使用聚焦检索",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "竞技场模型默认使用所有模型。点击上方的“+”按钮以添加自定义模型",
 	"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 Role": "輸入您的角色",
 	"Enter Your Username": "輸入您的使用者名稱",
 	"Enter Your Username": "輸入您的使用者名稱",
 	"Enter your webhook URL": "輸入您的 webhook URL",
 	"Enter your webhook URL": "輸入您的 webhook URL",
+	"Entra ID": "",
 	"Error": "錯誤",
 	"Error": "錯誤",
 	"ERROR": "錯誤",
 	"ERROR": "錯誤",
 	"Error accessing directory": "存取目錄時發生錯誤",
 	"Error accessing directory": "存取目錄時發生錯誤",
@@ -1607,6 +1608,7 @@
 	"User Webhooks": "使用者 Webhooks",
 	"User Webhooks": "使用者 Webhooks",
 	"Username": "使用者名稱",
 	"Username": "使用者名稱",
 	"Users": "使用者",
 	"Users": "使用者",
+	"Uses DefaultAzureCredential to authenticate": "",
 	"Using Entire Document": "使用完整檔案",
 	"Using Entire Document": "使用完整檔案",
 	"Using Focused Retrieval": "使用聚焦檢索",
 	"Using Focused Retrieval": "使用聚焦檢索",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "正在使用預設競技場模型與所有模型。點選加號按鈕以新增自訂模型。",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "正在使用預設競技場模型與所有模型。點選加號按鈕以新增自訂模型。",