Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates to account not found #117

Merged
merged 2 commits into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion ar-001/auth.json
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,20 @@
"continue_button": "إنشاء حساب",
"back_button": "العودة إلى تسجيل الدخول",
"sign_in_another_way_separator": "أو",
"sign_in_another_way_link": "تسجيل الدخول بطريقة أخرى"
"sign_in_another_way_link": "تسجيل الدخول بطريقة أخرى",
"password_input_label": "كلمة المرور",
"password_input_error_extra_space": "لا يمكن أن تبدأ كلمة المرور أو تنتهي بمسافة",
"password_input_error_too_common": "هذه كلمة المرور شائعة جدًا. اجعلها أكثر صعوبة في التخمين.",
"password_input_error_too_short": "يجب أن تتكون كلمات المرور من 8 أحرف على الأقل",
"confirm_password_input_label": "تأكيد كلمة المرور",
"confirm_password_input_error_mismatch": "تأكد من أن كلمات المرور متطابقة",
"password_input_error_unknown_error": "خطأ في المصادقة",
"first_name_input_label": "الإسم الأول",
"first_name_input_error_required": "الرجاء إدخال إسمك الأول",
"last_name_input_label": "إسم العائلة ",
"disclaimer": "من خلال المتابعة، فإنك توافق على سياساتنا",
"disclaimer_terms_of_use_link": "الشروط",
"disclaimer_privacy_link": "سياسة الخصوصية"
},
"email_address_verification_email": {
"email_body": "ستنتهي صلاحية هذا الرمز خلال ساعتين. إذا كنت تعتقد أنه لا ينبغي أن تتلقى هذه الرسالة الإلكترونية، فيمكنك تجاهلها بأمان.",
Expand Down
66 changes: 65 additions & 1 deletion auth-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1575,6 +1575,9 @@
"heading": {
"type": "string"
},
"heading_sign_up": {
"type": "string"
},
"description": {
"type": "string"
},
Expand All @@ -1598,19 +1601,80 @@
},
"sign_in_another_way_link": {
"type": "string"
},
"password_input_label": {
"type": "string"
},
"password_input_error_too_common": {
"type": "string"
},
"password_input_error_too_short": {
"type": "string"
},
"password_input_error_extra_space": {
"type": "string"
},
"confirm_password_input_label": {
"type": "string"
},
"confirm_password_input_error_mismatch": {
"type": "string"
},
"password_input_error_unknown_error": {
"type": "string"
},
"first_name_input_label": {
"type": "string"
},
"first_name_input_error_required": {
"type": "string"
},
"last_name_input_label": {
"type": "string"
},
"last_name_input_error_required": {
"type": "string"
},
"disclaimer_privacy_link": {
"type": "string"
},
"disclaimer_terms_of_use_link": {
"type": "string"
},
"disclaimer_clickwrap_input_label": {
"type": "string"
},
"disclaimer_clickwrap_error_required": {
"type": "string"
}
},
"required": [
"page_title",
"heading",
"heading_sign_up",
"description",
"description_sign_ups_disabled",
"description_social",
"description_credential",
"continue_button",
"back_button",
"sign_in_another_way_separator",
"sign_in_another_way_link"
"sign_in_another_way_link",
"password_input_label",
"password_input_error_too_common",
"password_input_error_too_short",
"password_input_error_extra_space",
"confirm_password_input_label",
"confirm_password_input_error_mismatch",
"password_input_error_unknown_error",
"first_name_input_label",
"first_name_input_error_required",
"last_name_input_label",
"last_name_input_error_required",
"disclaimer_privacy_link",
"disclaimer_terms_of_use_link",
"disclaimer_clickwrap_input_label",
"disclaimer_clickwrap_error_required"
]
},
"phone_number_component": {
Expand Down
17 changes: 16 additions & 1 deletion cs/auth.json
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,22 @@
"continue_button": "Vytvořit účet",
"back_button": "Zpět na přihlášení",
"sign_in_another_way_separator": "nebo",
"sign_in_another_way_link": "přihlásit se jiným způsobem"
"sign_in_another_way_link": "přihlásit se jiným způsobem",
"first_name_input_label": "Jméno",
"first_name_input_error_required": "Prosím, zadejte svoje jméno",
"last_name_input_label": "Příjmení",
"last_name_input_error_required": "Prosím, zadejte svoje příjmení",
"disclaimer": "Pokračováním souhlasíte s našimi zásadami",
"disclaimer_privacy_link": "Zásady ochrany osobních údajů",
"disclaimer_terms_of_use_link": "Podmínky užívání",
"disclaimer_clickwrap_error_required": "K pokračování musíte přečíst a přijmout zásady",
"password_input_label": "Heslo",
"password_input_error_too_common": "To heslo je docela běžné. Udělejte ho složitějším na odhad.",
"password_input_error_too_short": "Hesla musí mít alespoň 8 znaků",
"password_input_error_extra_space": "Heslo nesmí začínat nebo končit mezerou",
"confirm_password_input_label": "Potvrďte heslo",
"confirm_password_input_error_mismatch": "Ujistěte se, že hesla jsou identická",
"password_input_error_unknown_error": "Chyba s ověřením"
},
"phone_number_component": {
"phone_input_label": "Telefonní číslo",
Expand Down
17 changes: 16 additions & 1 deletion da/auth.json
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,22 @@
"continue_button": "Opret konto",
"back_button": "Tilbage til log ind",
"sign_in_another_way_separator": "eller",
"sign_in_another_way_link": "log ind på en anden måde"
"sign_in_another_way_link": "log ind på en anden måde",
"password_input_label": "Adgangskode",
"password_input_error_too_common": "Den adgangskode er ret almindelig. Gør den sværere at gætte.",
"password_input_error_too_short": "Adgangskoder skal være mindst 8 tegn",
"password_input_error_extra_space": "En adgangskode må ikke begynde eller slutte med et mellemrum",
"confirm_password_input_label": "Bekræft adgangskode",
"confirm_password_input_error_mismatch": "Sørg for, at adgangskoderne er identiske",
"password_input_error_unknown_error": "Fejl ved godkendelse",
"first_name_input_label": "Fornavn",
"first_name_input_error_required": "Indtast dit fornavn",
"last_name_input_label": "Efternavn",
"last_name_input_error_required": "Indtast dit efternavn",
"disclaimer_privacy_link": "Privatlivspolitik",
"disclaimer_terms_of_use_link": "Vilkår for brug",
"disclaimer_clickwrap_input_label": "Accepter betingelser",
"disclaimer_clickwrap_error_required": "Du skal læse og acceptere betingelserne for at fortsætte"
},
"phone_number_component": {
"phone_input_label": "Telefonnummer",
Expand Down
17 changes: 16 additions & 1 deletion de/auth.json
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,22 @@
"continue_button": "Konto erstellen",
"back_button": "Zurück zur Anmeldung",
"sign_in_another_way_separator": "oder",
"sign_in_another_way_link": "andere Anmeldemethode wählen"
"sign_in_another_way_link": "andere Anmeldemethode wählen",
"first_name_input_label": "Vorname",
"first_name_input_error_required": "Bitte geben Sie Ihren Vornamen ein",
"last_name_input_label": "Nachname",
"last_name_input_error_required": "Bitte geben Sie Ihren Nachnamen ein",
"disclaimer_clickwrap_input_label": "Richtlinien akzeptieren",
"disclaimer_clickwrap_error_required": "Sie müssen die Richtlinien lesen und akzeptieren, um fortzufahren",
"disclaimer_terms_of_use_link": "Nutzungsbedingungen",
"disclaimer_privacy_link": "Datenschutzrichtlinie",
"password_input_label": "Passwort",
"password_input_error_extra_space": "Ein Passwort darf nicht mit einem Leerzeichen beginnen oder enden.",
"password_input_error_too_common": "Dieses Passwort ist ziemlich verbreitet. Wählen Sie ein sichereres Passwort.",
"password_input_error_too_short": "Passwörter müssen mindestens 8 Zeichen lang sein.",
"confirm_password_input_label": "Passwort bestätigen",
"confirm_password_input_error_mismatch": "Stellen Sie sicher, dass die Passwörter identisch sind",
"password_input_error_unknown_error": "Fehler bei der Authentifizierung"
},
"phone_number_component": {
"phone_input_label": "Telefonnummer",
Expand Down
18 changes: 17 additions & 1 deletion en-AU/auth.json
Original file line number Diff line number Diff line change
Expand Up @@ -381,14 +381,30 @@
"account_not_found_page": {
"page_title": "Account not found",
"heading": "We can’t find your account",
"heading_sign_up": "Almost there",
"description": "We just need a few more details to finalize your account.",
"description_sign_ups_disabled": "Try using a different account or sign-in option",
"description_social": "Do you want to create a new one with your ${social_provider_name} account?",
"description_credential": "Do you want to create a new account with ${credential} now?",
"continue_button": "Create account",
"back_button": "Back to sign in",
"sign_in_another_way_separator": "or",
"sign_in_another_way_link": "sign in another way"
"sign_in_another_way_link": "Sign in another way",
"password_input_label": "Password",
"password_input_error_too_common": "That password is quite common. Make it harder to guess.",
"password_input_error_too_short": "Passwords need to be at least 8 characters",
"password_input_error_extra_space": "A password can't start or end with a space",
"confirm_password_input_label": "Confirm password",
"confirm_password_input_error_mismatch": "Make sure passwords are identical",
"password_input_error_unknown_error": "Error with authentication",
"first_name_input_label": "First name",
"first_name_input_error_required": "Please enter your first name",
"last_name_input_label": "Last name",
"last_name_input_error_required": "Please enter your last name",
"disclaimer_privacy_link": "Privacy Policy",
"disclaimer_terms_of_use_link": "Terms of use",
"disclaimer_clickwrap_input_label": "Accept policies",
"disclaimer_clickwrap_error_required": "You must read and accept the policies to continue"
},
"phone_number_component": {
"phone_input_label": "Phone number",
Expand Down
18 changes: 17 additions & 1 deletion en-GB/auth.json
Original file line number Diff line number Diff line change
Expand Up @@ -379,14 +379,30 @@
"account_not_found_page": {
"page_title": "Account not found",
"heading": "We can’t find your account",
"heading_sign_up": "Almost there",
"description": "We just need a few more details to finalise your account.",
"description_sign_ups_disabled": "Try using a different account or sign-in option",
"description_social": "Do you want to create a new one with your ${social_provider_name} account?",
"description_credential": "Do you want to create a new account with ${credential} now?",
"continue_button": "Create account",
"back_button": "Back to sign in",
"sign_in_another_way_separator": "or",
"sign_in_another_way_link": "sign in another way"
"sign_in_another_way_link": "Sign in another way",
"password_input_label": "Password",
"password_input_error_too_common": "That password is quite common. Make it harder to guess.",
"password_input_error_too_short": "Passwords need to be at least 8 characters",
"password_input_error_extra_space": "A password can't start or end with a space",
"confirm_password_input_label": "Confirm password",
"confirm_password_input_error_mismatch": "Make sure passwords are identical",
"password_input_error_unknown_error": "Error with authentication",
"first_name_input_label": "First name",
"first_name_input_error_required": "Please enter your first name",
"last_name_input_label": "Last name",
"last_name_input_error_required": "Please enter your last name",
"disclaimer_privacy_link": "Privacy Policy",
"disclaimer_terms_of_use_link": "Terms of use",
"disclaimer_clickwrap_input_label": "Accept policies",
"disclaimer_clickwrap_error_required": "You must read and accept the policies to continue"
},
"phone_number_component": {
"phone_input_label": "Phone number",
Expand Down
18 changes: 17 additions & 1 deletion en-US/auth.json
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,7 @@
},
"account_not_found_page": {
"page_title": "Account not found",
"heading_sign_up": "Almost there",
"heading": "We can’t find your account",
"description": "We just need a few more details to finalize your account.",
"description_sign_ups_disabled": "Try using a different account or sign-in option",
Expand All @@ -386,7 +387,22 @@
"continue_button": "Create account",
"back_button": "Back to sign in",
"sign_in_another_way_separator": "or",
"sign_in_another_way_link": "sign in another way"
"sign_in_another_way_link": "Sign in another way",
"password_input_label": "Password",
"password_input_error_too_common": "That password is quite common. Make it harder to guess.",
"password_input_error_too_short": "Passwords need to be at least 8 characters",
"password_input_error_extra_space": "A password can't start or end with a space",
"confirm_password_input_label": "Confirm password",
"confirm_password_input_error_mismatch": "Make sure passwords are identical",
"password_input_error_unknown_error": "Error with authentication",
"first_name_input_label": "First name",
"first_name_input_error_required": "Please enter your first name",
"last_name_input_label": "Last name",
"last_name_input_error_required": "Please enter your last name",
"disclaimer_privacy_link": "Privacy Policy",
"disclaimer_terms_of_use_link": "Terms of use",
"disclaimer_clickwrap_input_label": "Accept policies",
"disclaimer_clickwrap_error_required": "You must read and accept the policies to continue"
},
"phone_number_component": {
"phone_input_label": "Phone number",
Expand Down
18 changes: 17 additions & 1 deletion en/auth.json
Original file line number Diff line number Diff line change
Expand Up @@ -401,14 +401,30 @@
"account_not_found_page": {
"page_title": "Account not found",
"heading": "We can’t find your account",
"heading_sign_up": "Almost there",
"description": "We just need a few more details to finalize your account.",
"description_sign_ups_disabled": "Try using a different account or sign-in option",
"description_social": "Do you want to create a new one with your ${social_provider_name} account?",
"description_credential": "Do you want to create a new account with ${credential} now?",
"continue_button": "Create account",
"back_button": "Back to sign in",
"sign_in_another_way_separator": "or",
"sign_in_another_way_link": "sign in another way"
"sign_in_another_way_link": "Sign in another way",
"password_input_label": "Password",
"password_input_error_too_common": "That password is quite common. Make it harder to guess.",
"password_input_error_too_short": "Passwords need to be at least 8 characters",
"password_input_error_extra_space": "A password can't start or end with a space",
"confirm_password_input_label": "Confirm password",
"confirm_password_input_error_mismatch": "Make sure passwords are identical",
"password_input_error_unknown_error": "Error with authentication",
"first_name_input_label": "First name",
"first_name_input_error_required": "Please enter your first name",
"last_name_input_label": "Last name",
"last_name_input_error_required": "Please enter your last name",
"disclaimer_privacy_link": "Privacy Policy",
"disclaimer_terms_of_use_link": "Terms of use",
"disclaimer_clickwrap_input_label": "Accept policies",
"disclaimer_clickwrap_error_required": "You must read and accept the policies to continue"
},
"phone_number_component": {
"phone_input_label": "Phone number",
Expand Down
17 changes: 16 additions & 1 deletion es/auth.json
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,22 @@
"continue_button": "Crear cuenta",
"back_button": "Volver a iniciar sesión",
"sign_in_another_way_separator": "o",
"sign_in_another_way_link": "iniciar sesión de otra manera"
"sign_in_another_way_link": "iniciar sesión de otra manera",
"first_name_input_label": "Nombre",
"first_name_input_error_required": "Ingrese su nombre",
"last_name_input_label": "Apellido",
"last_name_input_error_required": "Ingrese su apellido",
"disclaimer_clickwrap_input_label": "Aceptar políticas",
"disclaimer_clickwrap_error_required": "Debe leer y aceptar las políticas para continuar",
"disclaimer_terms_of_use_link": "Términos de uso",
"disclaimer_privacy_link": "Política de privacidad",
"password_input_label": "Contraseña",
"password_input_error_extra_space": "Una contraseña no puede empezar o terminar con un espacio",
"password_input_error_too_common": "Esa contraseña es bastante común. Haga que sea más difícil de adivinar.",
"password_input_error_too_short": "Las contraseñas deben tener al menos 8 caracteres",
"confirm_password_input_label": "Confirmar contraseña",
"confirm_password_input_error_mismatch": "Asegúrese de que las contraseñas sean idénticas",
"password_input_error_unknown_error": "Error de autenticación"
},
"phone_number_component": {
"phone_input_label": "Número de teléfono",
Expand Down
17 changes: 16 additions & 1 deletion fa/auth.json
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,22 @@
"continue_button": "ایجاد حساب",
"back_button": "بازگشت به ورود",
"sign_in_another_way_separator": "یا",
"sign_in_another_way_link": "ورود به روش دیگر"
"sign_in_another_way_link": "ورود به روش دیگر",
"first_name_input_label": "نام",
"first_name_input_error_required": "لطفا نام خود را وارد کنید",
"last_name_input_label": "نام خانوادگی",
"last_name_input_error_required": "لطفاً نام خانوادگی خود را وارد کنید",
"disclaimer_privacy_link": "حریم خصوصی",
"disclaimer_terms_of_use_link": "شرایط استفاده",
"disclaimer_clickwrap_input_label": "پذیرش قوانین",
"disclaimer_clickwrap_error_required": "برای ادامه باید قوانین را بخوانید و بپذیرید",
"password_input_label": "رمز عبور",
"password_input_error_too_common": "از رمز عبور متداول استفاده نکنید",
"password_input_error_too_short": "رمز عبور باید حداقل 8 کاراکتر باشد",
"password_input_error_extra_space": "رمز عبور نمی‌توواند با فاصله شروع یا تمام شود",
"confirm_password_input_label": "تایید رمز عبور",
"confirm_password_input_error_mismatch": "دو ورودی یکسان نیستند",
"password_input_error_unknown_error": "خطا در احراز هویت"
},
"phone_number_component": {
"phone_input_label": "شماره تلفن",
Expand Down
Loading
Loading