diff --git a/apps/login/locales/de.json b/apps/login/locales/de.json index 8b3d4b311e..7606ef1a0a 100644 --- a/apps/login/locales/de.json +++ b/apps/login/locales/de.json @@ -37,6 +37,7 @@ "idp": { "title": "Mit SSO anmelden", "description": "Wählen Sie einen der folgenden Anbieter, um sich anzumelden", + "orSignInWith": "oder melden Sie sich an mit", "signInWithApple": "Mit Apple anmelden", "signInWithGoogle": "Mit Google anmelden", "signInWithAzureAD": "Mit AzureAD anmelden", diff --git a/apps/login/locales/en.json b/apps/login/locales/en.json index daaaeba108..e2032ee21a 100644 --- a/apps/login/locales/en.json +++ b/apps/login/locales/en.json @@ -37,6 +37,7 @@ "idp": { "title": "Sign in with SSO", "description": "Select one of the following providers to sign in", + "orSignInWith": "or sign in with", "signInWithApple": "Sign in with Apple", "signInWithGoogle": "Sign in with Google", "signInWithAzureAD": "Sign in with AzureAD", diff --git a/apps/login/locales/es.json b/apps/login/locales/es.json index b7dd57b4c0..f5a0b05801 100644 --- a/apps/login/locales/es.json +++ b/apps/login/locales/es.json @@ -37,6 +37,7 @@ "idp": { "title": "Iniciar sesión con SSO", "description": "Selecciona uno de los siguientes proveedores para iniciar sesión", + "orSignInWith": "o iniciar sesión con", "signInWithApple": "Iniciar sesión con Apple", "signInWithGoogle": "Iniciar sesión con Google", "signInWithAzureAD": "Iniciar sesión con AzureAD", diff --git a/apps/login/locales/it.json b/apps/login/locales/it.json index f476da3402..b12d0e978d 100644 --- a/apps/login/locales/it.json +++ b/apps/login/locales/it.json @@ -37,6 +37,7 @@ "idp": { "title": "Accedi con SSO", "description": "Seleziona uno dei seguenti provider per accedere", + "orSignInWith": "o accedi con", "signInWithApple": "Accedi con Apple", "signInWithGoogle": "Accedi con Google", "signInWithAzureAD": "Accedi con AzureAD", diff --git a/apps/login/locales/pl.json b/apps/login/locales/pl.json index 4dd607f3cb..6ce67bada9 100644 --- a/apps/login/locales/pl.json +++ b/apps/login/locales/pl.json @@ -37,6 +37,7 @@ "idp": { "title": "Zaloguj się za pomocą SSO", "description": "Wybierz jednego z poniższych dostawców, aby się zalogować", + "orSignInWith": "lub zaloguj się przez", "signInWithApple": "Zaloguj się przez Apple", "signInWithGoogle": "Zaloguj się przez Google", "signInWithAzureAD": "Zaloguj się przez AzureAD", diff --git a/apps/login/locales/ru.json b/apps/login/locales/ru.json index e8bbac212b..77d0314199 100644 --- a/apps/login/locales/ru.json +++ b/apps/login/locales/ru.json @@ -37,6 +37,7 @@ "idp": { "title": "Войти через SSO", "description": "Выберите одного из провайдеров для входа", + "orSignInWith": "или войти через", "signInWithApple": "Войти через Apple", "signInWithGoogle": "Войти через Google", "signInWithAzureAD": "Войти через AzureAD", diff --git a/apps/login/locales/zh.json b/apps/login/locales/zh.json index 7bc4ecf68a..e03a9fd62d 100644 --- a/apps/login/locales/zh.json +++ b/apps/login/locales/zh.json @@ -37,6 +37,7 @@ "idp": { "title": "使用 SSO 登录", "description": "选择以下提供商中的一个进行登录", + "orSignInWith": "或使用以下方式登录", "signInWithApple": "用 Apple 登录", "signInWithGoogle": "用 Google 登录", "signInWithAzureAD": "用 AzureAD 登录", diff --git a/apps/login/src/app/(login)/loginname/page.tsx b/apps/login/src/app/(login)/loginname/page.tsx index 79372729c4..9a404d5068 100644 --- a/apps/login/src/app/(login)/loginname/page.tsx +++ b/apps/login/src/app/(login)/loginname/page.tsx @@ -74,15 +74,17 @@ export default async function Page(props: { suffix={suffix} submit={submit} allowRegister={!!loginSettings?.allowRegister} - > - {identityProviders && ( + > + + {identityProviders && ( +
{t("orSignInWith")}
{!!identityProviders.length && identityProviders?.map(renderIDPButton)} {state?.error && (