Skip to content

Commit

Permalink
add translations for click wrap, provide email & sso pages
Browse files Browse the repository at this point in the history
  • Loading branch information
viv-kinde committed Feb 19, 2025
1 parent 2ed9fde commit 8a673a4
Show file tree
Hide file tree
Showing 39 changed files with 1,524 additions and 1 deletion.
36 changes: 36 additions & 0 deletions ar-001/auth.json
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,42 @@
"email_or_username_input_error_invalid": "أدخل بريدًا إلكترونيًا أو اسم مستخدم صالح",
"use_username_link": "التبديل إلى اسم المستخدم",
"use_email_or_username_link": "التبديل إلى اسم المستخدم أو البريد الإلكتروني"
},
"continue_with_sso_page": {
"page_title": "تسجيل الدخول | ${business_name}",
"heading": "المتابعة باستخدام SSO",
"description": "قام المسؤول بتمكين تسجيل الدخول الأحادي (SSO). استخدم بريدك الإلكتروني للعمل للوصول إلى حسابك.",
"continue_button": "متابعة",
"return_to_login_link": "العودة إلى تسجيل الدخول",
"email_input_label": "البريد الإلكتروني",
"email_input_error_invitation_mismatch": "يجب أن يتطابق البريد الإلكتروني مع البريد الذي تم إرسال الدعوة إليه",
"email_input_error_invalid": "أدخل بريدًا إلكترونيًا صالحًا",
"email_input_error_required": "البريد الإلكتروني مطلوب",
"email_input_error_saml_sso": "لم يتم تكوين هذا النطاق لاستخدام SAML SSO",
"email_input_error_no_account_found": "لم يتم العثور على حساب بهذا البريد الإلكتروني",
"credit_powered_by": "بدعم من"
},
"click_wrap_page": {
"page_title": "التسجيل | ${business_name}",
"heading": "اقتربنا من الانتهاء",
"description": "للمتابعة، نحتاج منك قراءة سياساتنا والموافقة عليها.",
"continue_button": "متابعة",
"disclaimer_clickwrap_input_label": "الموافقة على السياسات",
"disclaimer_privacy_link": "سياسة الخصوصية",
"disclaimer_terms_of_use_link": "شروط الاستخدام",
"disclaimer_clickwrap_error_required": "يجب عليك قراءة السياسات والموافقة عليها للمتابعة",
"clickwrap_accepted_error_unknown_error": "حدث خطأ في المصادقة",
"credit_powered_by": "بدعم من"
},
"provide_email_page": {
"page_title": "التسجيل | ${business_name}",
"heading": "نحتاج إلى بريدك الإلكتروني أيضًا",
"description": "امتلاك بريد إلكتروني يساعدنا في التحقق من هويتك والتواصل معك بشأن حسابك",
"continue_button": "متابعة",
"email_input_label": "البريد الإلكتروني",
"email_input_error_invalid": "أدخل بريدًا إلكترونيًا صالحًا",
"email_input_error_required": "البريد الإلكتروني مطلوب",
"credit_powered_by": "بدعم من"
}
}
}
146 changes: 145 additions & 1 deletion auth-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1774,6 +1774,147 @@
"use_username_link",
"use_email_or_username_link"
]
},
"continue_with_sso_page": {
"type": "object",
"properties": {
"page_title": {
"type": "string"
},
"heading": {
"type": "string"
},
"description": {
"type": "string"
},
"continue_button": {
"type": "string"
},
"return_to_login_link": {
"type": "string"
},
"email_input_label": {
"type": "string"
},
"email_input_error_invitation_mismatch": {
"type": "string"
},
"email_input_error_invalid": {
"type": "string"
},
"email_input_error_required": {
"type": "string"
},
"email_input_error_saml_sso": {
"type": "string"
},
"email_input_error_no_account_found": {
"type": "string"
},
"credit_powered_by": {
"type": "string"
}
},
"required": [
"page_title",
"heading",
"description",
"continue_button",
"return_to_login_link",
"email_input_label",
"email_input_error_invitation_mismatch",
"email_input_error_invalid",
"email_input_error_required",
"email_input_error_saml_sso",
"email_input_error_no_account_found",
"credit_powered_by"
]
},
"click_wrap_page": {
"type": "object",
"properties": {
"page_title": {
"type": "string"
},
"heading": {
"type": "string"
},
"description": {
"type": "string"
},
"continue_button": {
"type": "string"
},
"disclaimer_clickwrap_input_label": {
"type": "string"
},
"disclaimer_privacy_link": {
"type": "string"
},
"disclaimer_terms_of_use_link": {
"type": "string"
},
"disclaimer_clickwrap_error_required": {
"type": "string"
},
"clickwrap_accepted_error_unknown_error": {
"type": "string"
},
"credit_powered_by": {
"type": "string"
}
},
"required": [
"page_title",
"heading",
"description",
"continue_button",
"disclaimer_clickwrap_input_label",
"disclaimer_privacy_link",
"disclaimer_terms_of_use_link",
"disclaimer_clickwrap_error_required",
"clickwrap_accepted_error_unknown_error",
"credit_powered_by"
]
},
"provide_email_page": {
"type": "object",
"properties": {
"page_title": {
"type": "string"
},
"heading": {
"type": "string"
},
"description": {
"type": "string"
},
"continue_button": {
"type": "string"
},
"email_input_label": {
"type": "string"
},
"email_input_error_invalid": {
"type": "string"
},
"email_input_error_required": {
"type": "string"
},
"credit_powered_by": {
"type": "string"
}
},
"required": [
"page_title",
"heading",
"description",
"continue_button",
"email_input_label",
"email_input_error_invalid",
"email_input_error_required",
"credit_powered_by"
]
}
},
"required": [
Expand Down Expand Up @@ -1806,7 +1947,10 @@
"general_errors",
"account_not_found_page",
"phone_number_component",
"username_component"
"username_component",
"provide_email_page",
"clickwrap_page",
"continue_with_sso_page"
]
}
},
Expand Down
36 changes: 36 additions & 0 deletions cs/auth.json
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,42 @@
"phone_input_error_required": "Telefonní číslo nemůže být prázdné",
"phone_input_error_invalid_format": "Vložte platné číslo, bez mezer, nebo předčíslí.",
"phone_input_error_no_account_found": "Účet s tímto telefonním číslem nebyl nalezen."
},
"continue_with_sso_page": {
"page_title": "Přihlásit se | ${business_name}",
"heading": "Pokračovat přes SSO",
"description": "Váš administrátor povolil jednotné přihlášení (SSO). Použijte svůj pracovní e-mail pro přístup k účtu.",
"continue_button": "Pokračovat",
"return_to_login_link": "Zpět na přihlášení",
"email_input_label": "E-mail",
"email_input_error_invitation_mismatch": "E-mail musí odpovídat tomu, na který byla zaslána vaše pozvánka",
"email_input_error_invalid": "Zadejte platný e-mail",
"email_input_error_required": "E-mail je povinný",
"email_input_error_saml_sso": "Tato doména není nastavena pro použití SAML SSO",
"email_input_error_no_account_found": "Pro tento e-mail nebyl nalezen žádný účet",
"credit_powered_by": "Běží na technologii"
},
"click_wrap_page": {
"page_title": "Registrace | ${business_name}",
"heading": "Téměř hotovo",
"description": "Pro pokračování si prosím přečtěte a přijměte naše zásady.",
"continue_button": "Pokračovat",
"disclaimer_clickwrap_input_label": "Souhlasím se zásadami",
"disclaimer_privacy_link": "Zásady ochrany osobních údajů",
"disclaimer_terms_of_use_link": "Podmínky použití",
"disclaimer_clickwrap_error_required": "Musíte si přečíst a přijmout zásady, abyste mohli pokračovat",
"clickwrap_accepted_error_unknown_error": "Chyba při ověřování",
"credit_powered_by": "Běží na technologii"
},
"provide_email_page": {
"page_title": "Registrace | ${business_name}",
"heading": "Potřebujeme i váš e-mail",
"description": "E-mail nám pomůže ověřit vaši identitu a kontaktovat vás ohledně vašeho účtu.",
"continue_button": "Pokračovat",
"email_input_label": "E-mail",
"email_input_error_invalid": "Zadejte platný e-mail",
"email_input_error_required": "E-mail je povinný",
"credit_powered_by": "Běží na technologii"
}
}
}
36 changes: 36 additions & 0 deletions da/auth.json
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,42 @@
"email_or_username_input_error_invalid": "Indtast en gyldig e-mail eller brugernavn",
"use_username_link": "Skift til brugernavn",
"use_email_or_username_link": "Skift til brugernavn eller e-mail"
},
"continue_with_sso_page": {
"page_title": "Log ind | ${business_name}",
"heading": "Fortsæt med SSO",
"description": "Din administrator har aktiveret Single Sign-On. Brug din arbejds-e-mail for at få adgang til din konto.",
"continue_button": "Fortsæt",
"return_to_login_link": "Tilbage til login",
"email_input_label": "E-mail",
"email_input_error_invitation_mismatch": "E-mailen skal matche den, som din invitation blev sendt til",
"email_input_error_invalid": "Indtast en gyldig e-mail",
"email_input_error_required": "E-mail er påkrævet",
"email_input_error_saml_sso": "Dette domæne er ikke konfigureret til at bruge SAML SSO",
"email_input_error_no_account_found": "Ingen konto fundet med denne e-mail",
"credit_powered_by": "Drevet af"
},
"click_wrap_page": {
"page_title": "Tilmeld dig | ${business_name}",
"heading": "Næsten færdig",
"description": "For at fortsætte skal du læse og acceptere vores politikker.",
"continue_button": "Fortsæt",
"disclaimer_clickwrap_input_label": "Accepter politikker",
"disclaimer_privacy_link": "Privatlivspolitik",
"disclaimer_terms_of_use_link": "Brugsbetingelser",
"disclaimer_clickwrap_error_required": "Du skal læse og acceptere politikkerne for at fortsætte",
"clickwrap_accepted_error_unknown_error": "Fejl ved godkendelse",
"credit_powered_by": "Leveret af"
},
"provide_email_page": {
"page_title": "Tilmeld dig | ${business_name}",
"heading": "Vi har også brug for din e-mail",
"description": "At have en e-mail giver os mulighed for at verificere din identitet og kontakte dig om din konto.",
"continue_button": "Fortsæt",
"email_input_label": "E-mail",
"email_input_error_invalid": "Indtast en gyldig e-mail",
"email_input_error_required": "E-mail er påkrævet",
"credit_powered_by": "Leveret af"
}
}
}
36 changes: 36 additions & 0 deletions de/auth.json
Original file line number Diff line number Diff line change
Expand Up @@ -446,6 +446,42 @@
"email_or_username_input_error_invalid": "Geben Sie eine gültige E-Mail-Adresse oder einen Benutzernamen ein",
"use_username_link": "Zu Benutzername wechseln",
"use_email_or_username_link": "Zu Benutzername oder E-Mail wechseln"
},
"continue_with_sso_page": {
"page_title": "Anmelden | ${business_name}",
"heading": "Mit SSO fortfahren",
"description": "Ihr Administrator hat Single Sign-On aktiviert. Verwenden Sie Ihre geschäftliche E-Mail-Adresse, um auf Ihr Konto zuzugreifen.",
"continue_button": "Weiter",
"return_to_login_link": "Zurück zur Anmeldung",
"email_input_label": "E-Mail",
"email_input_error_invitation_mismatch": "Die E-Mail muss mit der übereinstimmen, an die Ihre Einladung gesendet wurde",
"email_input_error_invalid": "Geben Sie eine gültige E-Mail-Adresse ein",
"email_input_error_required": "E-Mail ist erforderlich",
"email_input_error_saml_sso": "Diese Domain ist nicht für die Verwendung von SAML SSO konfiguriert",
"email_input_error_no_account_found": "Kein Konto mit dieser E-Mail-Adresse gefunden",
"credit_powered_by": "Bereitgestellt von"
},
"click_wrap_page": {
"page_title": "Registrieren | ${business_name}",
"heading": "Fast geschafft",
"description": "Um fortzufahren, müssen Sie unsere Richtlinien lesen und akzeptieren.",
"continue_button": "Weiter",
"disclaimer_clickwrap_input_label": "Richtlinien akzeptieren",
"disclaimer_privacy_link": "Datenschutzrichtlinie",
"disclaimer_terms_of_use_link": "Nutzungsbedingungen",
"disclaimer_clickwrap_error_required": "Sie müssen die Richtlinien lesen und akzeptieren, um fortzufahren",
"clickwrap_accepted_error_unknown_error": "Fehler bei der Authentifizierung",
"credit_powered_by": "Bereitgestellt von"
},
"provide_email_page": {
"page_title": "Registrieren | ${business_name}",
"heading": "Wir benötigen auch Ihre E-Mail-Adresse",
"description": "Eine E-Mail-Adresse ermöglicht es uns, Ihre Identität zu verifizieren und Sie bezüglich Ihres Kontos zu kontaktieren.",
"continue_button": "Weiter",
"email_input_label": "E-Mail",
"email_input_error_invalid": "Geben Sie eine gültige E-Mail-Adresse ein",
"email_input_error_required": "E-Mail ist erforderlich",
"credit_powered_by": "Bereitgestellt von"
}
}
}
36 changes: 36 additions & 0 deletions en-AU/auth.json
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,42 @@
"email_or_username_input_error_invalid": "Enter a valid email or username",
"use_username_link": "Switch to username",
"use_email_or_username_link": "Switch to username or email"
},
"continue_with_sso_page": {
"page_title": "Sign in | ${business_name}",
"heading": "Continue with SSO",
"description": "Your admin has enabled Single Sign-On. Use your work email to access your account.",
"continue_button": "Continue",
"return_to_login_link": "Return to login",
"email_input_label": "Email",
"email_input_error_invitation_mismatch": "The email must match the one your invitation was sent to",
"email_input_error_invalid": "Enter a valid email",
"email_input_error_required": "Email is required",
"email_input_error_saml_sso": "This domain is not configured to use SAML SSO",
"email_input_error_no_account_found": "No account found with this email",
"credit_powered_by": "Powered by"
},
"click_wrap_page": {
"page_title": "Sign up | ${business_name}",
"heading": "Almost there",
"description": "To continue, we need you to read and accept our policies.",
"continue_button": "Continue",
"disclaimer_clickwrap_input_label": "Accept policies",
"disclaimer_privacy_link": "Privacy Policy",
"disclaimer_terms_of_use_link": "Terms of use",
"disclaimer_clickwrap_error_required": "You must read and accept the policies to continue",
"clickwrap_accepted_error_unknown_error": "Error with authentication",
"credit_powered_by": "Powered by"
},
"provide_email_page": {
"page_title": "Sign up | ${business_name}",
"heading": "We need your email too",
"description": "Having an email lets us verify your identity and contact you about your account",
"continue_button": "Continue",
"email_input_label": "Email",
"email_input_error_invalid": "Enter a valid email",
"email_input_error_required": "Email is required",
"credit_powered_by": "Powered by"
}
}
}
Loading

0 comments on commit 8a673a4

Please sign in to comment.