@aws-amplify/ui 6.9.1 → 6.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/dist/esm/helpers/authenticator/facade.mjs +4 -2
  2. package/dist/esm/helpers/authenticator/formFields/defaults.mjs +4 -0
  3. package/dist/esm/helpers/authenticator/getRoute.mjs +4 -0
  4. package/dist/esm/helpers/authenticator/textUtil.mjs +30 -0
  5. package/dist/esm/i18n/dictionaries/authenticator/de.mjs +8 -0
  6. package/dist/esm/i18n/dictionaries/authenticator/defaultTexts.mjs +8 -0
  7. package/dist/esm/i18n/dictionaries/authenticator/en.mjs +8 -0
  8. package/dist/esm/i18n/dictionaries/authenticator/es.mjs +8 -0
  9. package/dist/esm/i18n/dictionaries/authenticator/fr.mjs +8 -0
  10. package/dist/esm/i18n/dictionaries/authenticator/he.mjs +8 -0
  11. package/dist/esm/i18n/dictionaries/authenticator/id.mjs +8 -0
  12. package/dist/esm/i18n/dictionaries/authenticator/it.mjs +8 -0
  13. package/dist/esm/i18n/dictionaries/authenticator/ja.mjs +8 -0
  14. package/dist/esm/i18n/dictionaries/authenticator/kr.mjs +8 -0
  15. package/dist/esm/i18n/dictionaries/authenticator/nb.mjs +8 -0
  16. package/dist/esm/i18n/dictionaries/authenticator/nl.mjs +8 -0
  17. package/dist/esm/i18n/dictionaries/authenticator/pl.mjs +8 -0
  18. package/dist/esm/i18n/dictionaries/authenticator/pt.mjs +8 -0
  19. package/dist/esm/i18n/dictionaries/authenticator/ru.mjs +8 -0
  20. package/dist/esm/i18n/dictionaries/authenticator/sv.mjs +8 -0
  21. package/dist/esm/i18n/dictionaries/authenticator/th.mjs +8 -0
  22. package/dist/esm/i18n/dictionaries/authenticator/tr.mjs +9 -1
  23. package/dist/esm/i18n/dictionaries/authenticator/ua.mjs +8 -0
  24. package/dist/esm/i18n/dictionaries/authenticator/zh.mjs +8 -0
  25. package/dist/esm/machines/authenticator/actions.mjs +22 -5
  26. package/dist/esm/machines/authenticator/actors/signIn.mjs +53 -49
  27. package/dist/esm/machines/authenticator/actors/signUp.mjs +2 -0
  28. package/dist/esm/machines/authenticator/actors/utils.mjs +13 -1
  29. package/dist/esm/machines/authenticator/guards.mjs +13 -1
  30. package/dist/esm/machines/authenticator/index.mjs +2 -1
  31. package/dist/esm/utils/utils.mjs +1 -1
  32. package/dist/index.js +306 -59
  33. package/dist/types/helpers/authenticator/facade.d.ts +4 -2
  34. package/dist/types/helpers/authenticator/textUtil.d.ts +7 -1
  35. package/dist/types/i18n/dictionaries/authenticator/defaultTexts.d.ts +8 -0
  36. package/dist/types/i18n/dictionaries/index.d.ts +8 -0
  37. package/dist/types/i18n/translations.d.ts +8 -0
  38. package/dist/types/machines/authenticator/actors/signIn.d.ts +2 -3
  39. package/dist/types/machines/authenticator/actors/signUp.d.ts +2 -3
  40. package/dist/types/machines/authenticator/actors/utils.d.ts +2 -0
  41. package/dist/types/machines/authenticator/types.d.ts +6 -3
  42. package/dist/types/types/authenticator/form.d.ts +1 -1
  43. package/dist/types/utils/utils.d.ts +1 -1
  44. package/package.json +2 -2
@@ -53,7 +53,7 @@ const getNextSendEventAliases = (send) => {
53
53
  };
54
54
  const getServiceContextFacade = (state) => {
55
55
  const actorContext = (getActorContext(state) ?? {});
56
- const { challengeName, codeDeliveryDetails, remoteError: error, validationError: validationErrors, totpSecretCode = null, unverifiedUserAttributes, username, } = actorContext;
56
+ const { allowedMfaTypes, challengeName, codeDeliveryDetails, remoteError: error, validationError: validationErrors, totpSecretCode = null, unverifiedUserAttributes, username, } = actorContext;
57
57
  const { socialProviders = [] } = state.context?.config ?? {};
58
58
  // check for user in actorContext prior to state context. actorContext is more "up to date",
59
59
  // but is not available on all states
@@ -76,6 +76,7 @@ const getServiceContextFacade = (state) => {
76
76
  }
77
77
  })(route);
78
78
  const facade = {
79
+ allowedMfaTypes,
79
80
  authStatus,
80
81
  challengeName,
81
82
  codeDeliveryDetails,
@@ -101,7 +102,7 @@ const getServiceContextFacade = (state) => {
101
102
  };
102
103
  const getNextServiceContextFacade = (state) => {
103
104
  const actorContext = (getActorContext(state) ?? {});
104
- const { challengeName, codeDeliveryDetails, remoteError: errorMessage, totpSecretCode, unverifiedUserAttributes, username, } = actorContext;
105
+ const { allowedMfaTypes, challengeName, codeDeliveryDetails, remoteError: errorMessage, totpSecretCode, unverifiedUserAttributes, username, } = actorContext;
105
106
  const { socialProviders: federatedProviders, loginMechanisms } = state.context?.config ?? {};
106
107
  const loginMechanism = loginMechanisms?.[0];
107
108
  const actorState = getActorState(state);
@@ -109,6 +110,7 @@ const getNextServiceContextFacade = (state) => {
109
110
  // @todo-migration remove this cast for Authenticator.Next
110
111
  const route = getRoute(state, actorState);
111
112
  return {
113
+ allowedMfaTypes,
112
114
  challengeName,
113
115
  codeDeliveryDetails,
114
116
  errorMessage,
@@ -118,6 +118,9 @@ const getForceNewPasswordFormFields = (state) => {
118
118
  }
119
119
  return formField;
120
120
  };
121
+ const getSetupEmailFormFields = (_) => ({
122
+ email: getDefaultFormField('email'),
123
+ });
121
124
  /** Collect all the defaultFormFields getters */
122
125
  const defaultFormFieldsGetters = {
123
126
  signIn: getSignInFormFields,
@@ -128,6 +131,7 @@ const defaultFormFieldsGetters = {
128
131
  forgotPassword: getForgotPasswordFormFields,
129
132
  confirmResetPassword: getConfirmResetPasswordFormFields,
130
133
  confirmVerifyUser: getConfirmationCodeFormFields,
134
+ setupEmail: getSetupEmailFormFields,
131
135
  setupTotp: getConfirmationCodeFormFields,
132
136
  };
133
137
 
@@ -42,6 +42,10 @@ const getRoute = (state, actorState) => {
42
42
  return 'verifyUser';
43
43
  case actorState?.matches('confirmVerifyUserAttribute'):
44
44
  return 'confirmVerifyUser';
45
+ case actorState?.matches('setupEmail'):
46
+ return 'setupEmail';
47
+ case actorState?.matches('selectMfaType'):
48
+ return 'selectMfaType';
45
49
  case state.matches('getCurrentUser'):
46
50
  case actorState?.matches('fetchUserAttributes'):
47
51
  /**
@@ -1,10 +1,13 @@
1
1
  import { translate, DefaultTexts } from '../../i18n/translations.mjs';
2
+ import { defaultTexts } from '../../i18n/dictionaries/index.mjs';
2
3
 
3
4
  /**
4
5
  * ConfirmSignIn
5
6
  */
6
7
  const getChallengeText = (challengeName) => {
7
8
  switch (challengeName) {
9
+ case 'EMAIL_OTP':
10
+ return translate(DefaultTexts.CONFIRM_EMAIL);
8
11
  case 'SMS_MFA':
9
12
  return translate(DefaultTexts.CONFIRM_SMS);
10
13
  case 'SOFTWARE_TOKEN_MFA':
@@ -53,6 +56,27 @@ const getSignInWithFederationText = (route, provider) => {
53
56
  const isSignIn = route === 'signIn';
54
57
  return translate(`Sign ${isSignIn ? 'In' : 'Up'} with ${providerNameMap[provider]}`);
55
58
  };
59
+ /**
60
+ * SelectMfaType
61
+ */
62
+ const getSelectMfaTypeByChallengeName = (challengeName) => {
63
+ if (challengeName === 'MFA_SETUP') {
64
+ return translate(DefaultTexts.MFA_SETUP_SELECTION);
65
+ }
66
+ return translate(DefaultTexts.MFA_SELECTION);
67
+ };
68
+ const getMfaTypeLabelByValue = (mfaType) => {
69
+ switch (mfaType) {
70
+ case 'EMAIL':
71
+ return translate(defaultTexts.EMAIL_OTP);
72
+ case 'SMS':
73
+ return translate(defaultTexts.SMS_MFA);
74
+ case 'TOTP':
75
+ return translate(defaultTexts.SOFTWARE_TOKEN_MFA);
76
+ default:
77
+ return translate(mfaType);
78
+ }
79
+ };
56
80
  const authenticatorTextUtil = {
57
81
  /** Shared */
58
82
  getBackToSignInText: () => translate(DefaultTexts.BACK_SIGN_IN),
@@ -89,6 +113,8 @@ const authenticatorTextUtil = {
89
113
  getChallengeText,
90
114
  /** ForgotPassword */
91
115
  getResetYourPasswordText: () => translate(DefaultTexts.RESET_PASSWORD),
116
+ /** SetupEmail */
117
+ getSetupEmailText: () => translate(DefaultTexts.SETUP_EMAIL),
92
118
  /** SetupTotp */
93
119
  getSetupTotpText: () => translate(DefaultTexts.SETUP_TOTP),
94
120
  // TODO: add defaultText for below
@@ -97,6 +123,10 @@ const authenticatorTextUtil = {
97
123
  getCopiedText: () => translate('COPIED'),
98
124
  /** FederatedSignIn */
99
125
  getSignInWithFederationText,
126
+ /** SelectMfaType */
127
+ getMfaTypeLabelByValue,
128
+ getSelectMfaTypeByChallengeName,
129
+ getSelectMfaTypeText: () => translate(DefaultTexts.SELECT_MFA_TYPE),
100
130
  /** VerifyUser */
101
131
  getSkipText: () => translate(DefaultTexts.SKIP),
102
132
  getVerifyText: () => translate(DefaultTexts.VERIFY),
@@ -2,10 +2,12 @@ const deDict = {
2
2
  'Account recovery requires verified contact information': 'Zurücksetzen des Accounts benötigt einen verifizierten Account',
3
3
  'Add your Profile': 'Ihr Profil hinzufügen',
4
4
  'Add your Website': 'Ihre Website hinzufügen',
5
+ 'Authenticator App (TOTP)': 'Authentifikator-App (TOTP)',
5
6
  'Back to Sign In': 'Zurück zur Anmeldung',
6
7
  'Change Password': 'Passwort ändern',
7
8
  Changing: 'Ändern von',
8
9
  Code: 'Code',
10
+ 'Confirm Email Code': 'E-Mail-Code bestätigen',
9
11
  'Confirm Password': 'Passwort bestätigen',
10
12
  'Please confirm your Password': 'Bitte bestätigen Sie Ihr Passwort',
11
13
  'Confirm Sign Up': 'Registrierung bestätigen',
@@ -19,6 +21,7 @@ const deDict = {
19
21
  'Creating Account': 'Account wird erstellt',
20
22
  'Dismiss alert': 'Warnung verwerfen',
21
23
  Email: 'E-Mail',
24
+ 'Email Message': 'E-Mail-Nachricht',
22
25
  'Enter your Birthdate': 'Geben Sie Ihr Geburtsdatum ein',
23
26
  'Enter your code': 'Geben Sie Ihren Code ein',
24
27
  'Enter your Confirmation Code': 'Geben Sie Ihren Bestätigungs-Code ein',
@@ -39,6 +42,8 @@ const deDict = {
39
42
  'Hide password': 'Passwort verbergen',
40
43
  'It may take a minute to arrive': 'Es kann eine Minute dauern, bis er ankommt',
41
44
  Loading: 'Wird geladen',
45
+ 'Multi-Factor Authentication': 'Multifaktor-Authentifizierung',
46
+ 'Multi-Factor Authentication Setup': 'Einrichtung der Multifaktor-Authentifizierung',
42
47
  'New password': 'Neues Passwort',
43
48
  or: 'oder',
44
49
  Password: 'Passwort',
@@ -46,9 +51,11 @@ const deDict = {
46
51
  'Resend Code': 'Code erneut senden',
47
52
  'Reset your Password': 'Zurücksetzen des Passworts',
48
53
  'Reset your password': 'Zurücksetzen des passworts',
54
+ 'Select MFA Type': 'MFA-Typ auswählen',
49
55
  'Send code': 'Code senden',
50
56
  'Send Code': 'Code senden',
51
57
  Sending: 'Wird gesendet',
58
+ 'Setup Email': 'E-Mail einrichten',
52
59
  'Setup TOTP': 'TOTP einrichten',
53
60
  'Show password': 'Passwort anzeigen',
54
61
  'Sign in to your account': 'Melden Sie sich mit Ihrem Account an',
@@ -62,6 +69,7 @@ const deDict = {
62
69
  Skip: 'Überspringen',
63
70
  Submit: 'Abschicken',
64
71
  Submitting: 'Wird gesendet',
72
+ 'Text Message (SMS)': 'Textnachricht (SMS)',
65
73
  Username: 'Benutzername',
66
74
  'Verify Contact': 'Kontakt verifizieren',
67
75
  Verify: 'Verifizieren',
@@ -15,6 +15,7 @@ const defaultTexts = {
15
15
  CONFIRM_RESET_PASSWORD_HEADING: 'Reset your Password',
16
16
  CONFIRM_SIGNUP_HEADING: 'Confirm Sign Up',
17
17
  CONFIRM_SMS: 'Confirm SMS Code',
18
+ CONFIRM_EMAIL: 'Confirm Email Code',
18
19
  // If challenge name is not returned
19
20
  CONFIRM_MFA_DEFAULT: 'Confirm MFA Code',
20
21
  CONFIRM_TOTP: 'Confirm TOTP Code',
@@ -24,6 +25,7 @@ const defaultTexts = {
24
25
  CREATE_ACCOUNT: 'Create Account',
25
26
  CREATING_ACCOUNT: 'Creating Account',
26
27
  EMAIL_ADDRESS: 'Email',
28
+ EMAIL_OTP: 'Email Message',
27
29
  ENTER_BIRTHDATE: 'Enter your Birthdate',
28
30
  ENTER_CODE: 'Enter your code',
29
31
  ENTER_CONFIRMATION_CODE: 'Enter your Confirmation Code',
@@ -45,6 +47,8 @@ const defaultTexts = {
45
47
  LOADING: 'Loading',
46
48
  LOGIN_NAME: 'Username',
47
49
  MIDDLE_NAME: 'Middle Name',
50
+ MFA_SETUP_SELECTION: 'Multi-Factor Authentication Setup',
51
+ MFA_SELECTION: 'Multi-Factor Authentication',
48
52
  NAME: 'Name',
49
53
  NICKNAME: 'Nickname',
50
54
  NEW_PASSWORD: 'New password',
@@ -58,6 +62,8 @@ const defaultTexts = {
58
62
  RESET_PASSWORD: 'Reset Password',
59
63
  SEND_CODE: 'Send code',
60
64
  SENDING: 'Sending',
65
+ SELECT_MFA_TYPE: 'Select MFA Type',
66
+ SETUP_EMAIL: 'Setup Email',
61
67
  SETUP_TOTP: 'Setup TOTP',
62
68
  SHOW_PASSWORD: 'Show password',
63
69
  SIGN_IN_BUTTON: 'Sign in',
@@ -70,8 +76,10 @@ const defaultTexts = {
70
76
  SIGN_UP_BUTTON: 'Create a new account',
71
77
  SIGNING_IN_BUTTON: 'Signing in',
72
78
  SKIP: 'Skip',
79
+ SMS_MFA: 'Text Message (SMS)',
73
80
  SUBMIT: 'Submit',
74
81
  SUBMITTING: 'Submitting',
82
+ SOFTWARE_TOKEN_MFA: 'Authenticator App (TOTP)',
75
83
  UPPERCASE_COPY: 'COPY',
76
84
  VERIFY_CONTACT: 'Verify Contact',
77
85
  VERIFY_HEADING: 'Account recovery requires verified contact information',
@@ -2,10 +2,12 @@ const enDict = {
2
2
  'Account recovery requires verified contact information': 'Account recovery requires verified contact information',
3
3
  'Add your Profile': 'Add your Profile',
4
4
  'Add your Website': 'Add your Website',
5
+ 'Authenticator App (TOTP)': 'Authenticator App (TOTP)',
5
6
  'Back to Sign In': 'Back to Sign In',
6
7
  'Change Password': 'Change Password',
7
8
  Changing: 'Changing',
8
9
  Code: 'Code',
10
+ 'Confirm Email Code': 'Confirm Email Code',
9
11
  'Confirm Password': 'Confirm Password',
10
12
  'Confirm Sign Up': 'Confirm Sign Up',
11
13
  'Confirm SMS Code': 'Confirm SMS Code',
@@ -19,6 +21,7 @@ const enDict = {
19
21
  'Creating Account': 'Creating Account',
20
22
  'Dismiss alert': 'Dismiss alert',
21
23
  Email: 'Email',
24
+ 'Email Message': 'Email Message',
22
25
  'Enter your Birthdate': 'Enter your Birthdate',
23
26
  'Enter your code': 'Enter your code',
24
27
  'Enter your Confirmation Code': 'Enter your Confirmation Code',
@@ -37,6 +40,8 @@ const enDict = {
37
40
  'Hide password': 'Hide password',
38
41
  'It may take a minute to arrive': 'It may take a minute to arrive',
39
42
  Loading: 'Loading',
43
+ 'Multi-Factor Authentication': 'Multi-Factor Authentication',
44
+ 'Multi-Factor Authentication Setup': 'Multi-Factor Authentication Setup',
40
45
  'New password': 'New password',
41
46
  or: 'or',
42
47
  Password: 'Password',
@@ -45,9 +50,11 @@ const enDict = {
45
50
  'Resend Code': 'Resend Code',
46
51
  'Reset your password': 'Reset your password',
47
52
  'Reset your Password': 'Reset your Password',
53
+ 'Select MFA Type': 'Select MFA Type',
48
54
  'Send code': 'Send code',
49
55
  'Send Code': 'Send Code',
50
56
  Sending: 'Sending',
57
+ 'Setup Email': 'Setup Email',
51
58
  'Setup TOTP': 'Setup TOTP',
52
59
  'Show password': 'Show password',
53
60
  'Sign in to your account': 'Sign in to your account',
@@ -61,6 +68,7 @@ const enDict = {
61
68
  Skip: 'Skip',
62
69
  Submit: 'Submit',
63
70
  Submitting: 'Submitting',
71
+ 'Text Message (SMS)': 'Text Message (SMS)',
64
72
  Username: 'Username',
65
73
  'Verify Contact': 'Verify Contact',
66
74
  Verify: 'Verify',
@@ -1,10 +1,12 @@
1
1
  const esDict = {
2
2
  'Account recovery requires verified contact information': 'La recuperación de la cuenta requiere información de contacto verificada',
3
+ 'Authenticator App (TOTP)': 'Aplicación de autenticación (TOTP)',
3
4
  'Back to Sign In': 'Volver a inicio de sesión',
4
5
  'Change Password': 'Cambiar contraseña',
5
6
  Changing: 'Cambiando',
6
7
  Code: 'Código',
7
8
  'Code *': 'Código *',
9
+ 'Confirm Email Code': 'Confirmar el código de correo electrónico',
8
10
  'Confirm Password': 'Confirmar contraseña',
9
11
  'Confirm Sign Up': 'Confirmar registro',
10
12
  'Confirm SMS Code': 'Confirmar el código de SMS',
@@ -17,6 +19,7 @@ const esDict = {
17
19
  'Creating Account': 'Creando cuenta',
18
20
  'Dismiss alert': 'Descartar alerta',
19
21
  Email: 'Email',
22
+ 'Email Message': 'Mensaje de correo electrónico',
20
23
  'Enter your code': 'Ingrese el código',
21
24
  'Enter your Email': 'Escriba su Email',
22
25
  'Enter your email': 'Escriba su email',
@@ -27,6 +30,8 @@ const esDict = {
27
30
  'Hide password': 'Ocultar contraseña',
28
31
  'It may take a minute to arrive': 'Es posible que tarde un minuto en llegar',
29
32
  Loading: 'Cargando',
33
+ 'Multi-Factor Authentication': 'Autenticación multifactor',
34
+ 'Multi-Factor Authentication Setup': 'Configuración de autenticación multifactor',
30
35
  'New password': 'Nueva contraseña',
31
36
  or: 'o',
32
37
  Password: 'Contraseña',
@@ -34,9 +39,11 @@ const esDict = {
34
39
  'Resend Code': 'Reenviar código',
35
40
  'Reset your password': 'Restablecer su contraseña',
36
41
  'Reset your Password': 'Restablecer su Contraseña',
42
+ 'Select MFA Type': 'Seleccionar el tipo de MFA',
37
43
  'Send code': 'Enviar código',
38
44
  'Send Code': 'Enviar código',
39
45
  Sending: 'Enviando',
46
+ 'Setup Email': 'Configurar correo electrónico',
40
47
  'Setup TOTP': 'Configurar TOTP',
41
48
  'Show password': 'Mostrar contraseña',
42
49
  'Sign in to your account': 'Iniciar sesión en tu cuenta',
@@ -50,6 +57,7 @@ const esDict = {
50
57
  Skip: 'Omitir',
51
58
  Submit: 'Enviar',
52
59
  Submitting: 'Enviando',
60
+ 'Text Message (SMS)': 'Mensaje de texto (SMS)',
53
61
  Username: 'Nombre de usuario',
54
62
  'Verify Contact': 'Verificar contacto',
55
63
  Verify: 'Verificar',
@@ -1,9 +1,11 @@
1
1
  const frDict = {
2
2
  'Account recovery requires verified contact information': 'La récupération du compte nécessite des informations de contact vérifiées',
3
+ 'Authenticator App (TOTP)': 'Application d’authentification (TOTP)',
3
4
  'Back to Sign In': 'Retour à la connexion',
4
5
  'Change Password': 'Modifier le mot de passe',
5
6
  Changing: 'Modification en cours',
6
7
  Code: 'Code',
8
+ 'Confirm Email Code': 'Confirmer le code e-mail',
7
9
  'Confirm Password': 'Confirmez le mot de passe',
8
10
  'Confirm Sign Up': "Confirmer l'inscription",
9
11
  'Confirm SMS Code': 'Confirmer le code SMS',
@@ -16,6 +18,7 @@ const frDict = {
16
18
  'Creating Account': `Création d'un compte`,
17
19
  'Dismiss alert': `Supprimer l'alerte`,
18
20
  Email: 'Email',
21
+ 'Email Message': 'Message de l’e-mail',
19
22
  'Enter your code': 'Saisissez cotre code de confirmation',
20
23
  'Enter your Email': 'Saisissez votre adresse e-mail',
21
24
  'Enter your email': 'Saisissez votre adresse e-mail',
@@ -25,6 +28,8 @@ const frDict = {
25
28
  'Hide password': 'Masquer le mot de passe',
26
29
  'It may take a minute to arrive': 'Cela peut prendre une minute',
27
30
  Loading: 'Chargement en cours',
31
+ 'Multi-Factor Authentication': 'Authentification multifactorielle',
32
+ 'Multi-Factor Authentication Setup': 'Configuration de l’authentification multifactorielle',
28
33
  'New password': 'Nouveau mot de passe',
29
34
  or: 'ou',
30
35
  Password: 'Mot de passe',
@@ -32,9 +37,11 @@ const frDict = {
32
37
  'Resend Code': 'Renvoyer le code',
33
38
  'Reset your Password': 'Réinitialiser votre mot de passe',
34
39
  'Reset your password': 'Réinitialisez votre mot de passe',
40
+ 'Select MFA Type': 'Sélectionner le type de MFA',
35
41
  'Send code': 'Envoyer le code',
36
42
  'Send Code': "M'envoyer un code",
37
43
  Sending: 'Envoi en cours',
44
+ 'Setup Email': 'E-mail de configuration',
38
45
  'Setup TOTP': 'Configuration de TOTP',
39
46
  'Show password': 'Afficher le mot de passe',
40
47
  'Sign in to your account': 'Connexion à votre compte',
@@ -48,6 +55,7 @@ const frDict = {
48
55
  Skip: 'Passer',
49
56
  Submit: 'Soumettre',
50
57
  Submitting: 'Envoi en cours',
58
+ 'Text Message (SMS)': 'Message texte (SMS)',
51
59
  Username: "Nom d'utilisateur",
52
60
  'Verify Contact': 'Vérifier le contact',
53
61
  Verify: 'Vérifier',
@@ -1,9 +1,11 @@
1
1
  const heDict = {
2
2
  'Account recovery requires verified contact information': 'שחזור לקוח דורש עוד מידע',
3
+ 'Authenticator App (TOTP)': 'אפליקציית אימות (TOTP)',
3
4
  'Back to Sign In': 'חזור להרשמה',
4
5
  'Change Password': 'עדכון סיסמא',
5
6
  Changing: 'מעדכן',
6
7
  Code: 'קוד',
8
+ 'Confirm Email Code': 'אמת קוד אימייל',
7
9
  'Confirm Password': 'אשר סיסמא',
8
10
  'Confirm Sign Up': 'אשר הרשמה',
9
11
  'Confirm SMS Code': 'אשר sms קוד',
@@ -16,6 +18,7 @@ const heDict = {
16
18
  'Creating Account': 'יצירת משתמש',
17
19
  'Dismiss alert': 'הסר התראה',
18
20
  Email: 'אימייל',
21
+ 'Email Message': 'הודעת אימייל',
19
22
  'Enter your code': 'הכנס את הקוד',
20
23
  'Enter your Email': 'הכנס את המייל שלך',
21
24
  'Enter your phone number': 'הכנס את מספר הטלפון שלך',
@@ -23,6 +26,8 @@ const heDict = {
23
26
  'Forgot your password?': 'שכחת סיסמא ?',
24
27
  'Hide password': 'הסתר סיסמא',
25
28
  Loading: 'טוען',
29
+ 'Multi-Factor Authentication': 'אימות רב-גורמי',
30
+ 'Multi-Factor Authentication Setup': 'הגדרת אימות רב-גורמי',
26
31
  'New password': 'סיסמא חדשה',
27
32
  or: 'אוֹ',
28
33
  Password: 'סיסמא',
@@ -30,9 +35,11 @@ const heDict = {
30
35
  'Resend Code': 'שלח קוד שוב',
31
36
  'Reset your password': 'אפס סיסמא',
32
37
  'Reset your Password': 'אפס סיסמא',
38
+ 'Select MFA Type': 'בחר סוג אימות רב-גורמי',
33
39
  'Send code': 'שלח קוד',
34
40
  'Send Code': 'שלח קוד',
35
41
  Sending: 'שולח',
42
+ 'Setup Email': 'הגדר אימייל',
36
43
  'Setup TOTP': 'Setup TOTP',
37
44
  'Show password': 'הצג סיסמא',
38
45
  'Sign in to your account': 'התחבר לחשבון שלך',
@@ -46,6 +53,7 @@ const heDict = {
46
53
  Skip: 'דלג',
47
54
  Submit: 'שלח',
48
55
  Submitting: 'שולח',
56
+ 'Text Message (SMS)': 'הודעת טקסט (SMS)',
49
57
  Username: 'שם משתמש',
50
58
  'Verify Contact': 'אמת איש קשר',
51
59
  Verify: 'אמת',
@@ -1,9 +1,11 @@
1
1
  const idDict = {
2
2
  'Account recovery requires verified contact information': 'Pemulihan akun memerlukan informasi kontak terverifikasi',
3
+ 'Authenticator App (TOTP)': 'Aplikasi Pengauntentikasi (TOTP)',
3
4
  'Back to Sign In': 'Kembali ke Masuk',
4
5
  'Change Password': 'Ubah kata sandi',
5
6
  Changing: 'Mengubah',
6
7
  Code: 'Kode',
8
+ 'Confirm Email Code': 'Konfirmasi Kode Email',
7
9
  'Confirm Password': 'Konfirmasi kata sandi',
8
10
  'Confirm Sign Up': 'Konfirmasi Pendaftaran',
9
11
  'Confirm SMS Code': 'Konfirmasi Kode SMS',
@@ -16,6 +18,7 @@ const idDict = {
16
18
  'Creating Account': 'Membuat Akun',
17
19
  'Dismiss alert': 'Hentikan pemberitahuan',
18
20
  Email: 'Email',
21
+ 'Email Message': 'Pesan Email',
19
22
  'Enter your code': 'Masukkan kode anda',
20
23
  'Enter your Email': 'Masukkan email anda',
21
24
  'Enter your phone number': 'Masukkan nomor telepon anda',
@@ -24,6 +27,8 @@ const idDict = {
24
27
  'Hide password': 'Sembunyikan kata sandi',
25
28
  'It may take a minute to arrive': 'Mungkin perlu waktu satu menit untuk tiba',
26
29
  Loading: 'Memuat',
30
+ 'Multi-Factor Authentication': 'Autentikasi Multifaktor',
31
+ 'Multi-Factor Authentication Setup': 'Pengaturan Autentikasi Multifaktor',
27
32
  'New password': 'Kata sandi baru',
28
33
  or: 'atau',
29
34
  Password: 'Kata sandi',
@@ -31,9 +36,11 @@ const idDict = {
31
36
  'Resend Code': 'Kirim ulang kodenya',
32
37
  'Reset your Password': 'Reset Kata Sandi',
33
38
  'Reset your password': 'Ubah kata sandi anda',
39
+ 'Select MFA Type': 'Pilih tipe MFA',
34
40
  'Send code': 'Kirim kode',
35
41
  'Send Code': 'Kirim Kode',
36
42
  Sending: 'Mengirim',
43
+ 'Setup Email': 'Atur Email',
37
44
  'Setup TOTP': 'Siapkan TOTP',
38
45
  'Show password': 'Tampilkan kata sandi',
39
46
  'Sign in to your account': 'Masuk akun anda',
@@ -47,6 +54,7 @@ const idDict = {
47
54
  Skip: 'Lewati',
48
55
  Submit: 'Ajukan',
49
56
  Submitting: 'Mengajukan',
57
+ 'Text Message (SMS)': 'Pesan Teks (SMS)',
50
58
  Username: 'Nama akun',
51
59
  'Verify Contact': 'Verifikasi Kontak',
52
60
  Verify: 'Verifikasi',
@@ -1,9 +1,11 @@
1
1
  const itDict = {
2
2
  'Account recovery requires verified contact information': "Il ripristino dell'account richiede informazioni di contatto verificate",
3
+ 'Authenticator App (TOTP)': 'App di autenticazione (TOTP)',
3
4
  'Back to Sign In': 'Torna alla schermata di accesso',
4
5
  'Change Password': 'Cambia la password',
5
6
  Changing: 'Modifica in corso',
6
7
  Code: 'Codice',
8
+ 'Confirm Email Code': 'Conferma codice e-mail',
7
9
  'Confirm Password': 'Conferma la password',
8
10
  'Confirm Sign Up': 'Conferma registrazione',
9
11
  'Confirm SMS Code': 'Conferma codice SMS',
@@ -16,6 +18,7 @@ const itDict = {
16
18
  'Creating Account': 'Creazione account in corso',
17
19
  'Dismiss alert': `Ignora l'avviso`,
18
20
  Email: 'Email',
21
+ 'Email Message': 'Messaggio e-mail',
19
22
  'Enter your code': 'Inserisci il tuo codice',
20
23
  'Enter your Email': 'Inserisci la tua e-mail',
21
24
  'Enter your phone number': 'Inserisci il tuo numero di telefono"',
@@ -24,6 +27,8 @@ const itDict = {
24
27
  'Hide password': 'Nascondi password',
25
28
  'It may take a minute to arrive': "L'arrivo potrebbe richiedere qualche minuto",
26
29
  Loading: 'Caricamento in corso',
30
+ 'Multi-Factor Authentication': 'Autenticazione a più fattori',
31
+ 'Multi-Factor Authentication Setup': "Configurazione dell'autenticazione a più fattori",
27
32
  'New password': 'Nuova password',
28
33
  or: 'oppure',
29
34
  Password: 'Password',
@@ -31,9 +36,11 @@ const itDict = {
31
36
  'Resend Code': 'Invia nuovamente il codice',
32
37
  'Reset your Password': 'Reimposta la tua Password',
33
38
  'Reset your password': 'Reimposta la tua password',
39
+ 'Select MFA Type': 'Seleziona il tipo di MFA',
34
40
  'Send code': 'Invia codice',
35
41
  'Send Code': 'Invia codice',
36
42
  Sending: 'Invio in corso',
43
+ 'Setup Email': "Configura l'e-mail",
37
44
  'Setup TOTP': 'Configura TOTP',
38
45
  'Show password': 'Mostra password',
39
46
  'Sign in to your account': 'Accedi al tuo account',
@@ -47,6 +54,7 @@ const itDict = {
47
54
  Skip: 'Salta',
48
55
  Submit: 'Invia',
49
56
  Submitting: 'Invio in corso',
57
+ 'Text Message (SMS)': 'Messaggio di testo (SMS)',
50
58
  Username: 'Nome utente',
51
59
  'Verify Contact': 'Verifica contatto',
52
60
  Verify: 'Verifica',
@@ -1,9 +1,11 @@
1
1
  const jaDict = {
2
2
  'Account recovery requires verified contact information': 'アカウントの復旧には確認済みの連絡先が必要です',
3
+ 'Authenticator App (TOTP)': '認証アプリ (TOTP)',
3
4
  'Back to Sign In': 'サインインに戻る',
4
5
  'Change Password': 'パスワードを変える ',
5
6
  Changing: '変更中',
6
7
  Code: 'コード',
8
+ 'Confirm Email Code': 'E メールコードを確認',
7
9
  'Confirm Password': 'パスワードの確認',
8
10
  'Confirm Sign Up': '登録する',
9
11
  'Confirm SMS Code': 'SMS コードを確認',
@@ -16,6 +18,7 @@ const jaDict = {
16
18
  'Creating Account': 'アカウントの作成中',
17
19
  'Dismiss alert': 'アラートを閉じる',
18
20
  Email: 'メールアドレス',
21
+ 'Email Message': 'E メールメッセージ',
19
22
  'Enter your code': 'コードを入力',
20
23
  'Enter your Email': 'メールアドレスを入力',
21
24
  'Enter your phone number': '電話番号を入力',
@@ -25,6 +28,8 @@ const jaDict = {
25
28
  'Hide password': 'パスワードを非表示',
26
29
  'It may take a minute to arrive': '到着するまでに 1 分かかることがあります',
27
30
  Loading: 'ロード中',
31
+ 'Multi-Factor Authentication': '多要素認証',
32
+ 'Multi-Factor Authentication Setup': '多要素認証のセットアップ',
28
33
  'New password': '新しいパスワード',
29
34
  or: '又は',
30
35
  Password: 'パスワード ',
@@ -32,9 +37,11 @@ const jaDict = {
32
37
  'Resend Code': 'コードを再送信',
33
38
  'Reset your Password': 'パスワードをリセット',
34
39
  'Reset your password': 'パスワードをリセットする',
40
+ 'Select MFA Type': 'MFA タイプを選択',
35
41
  'Send code': 'コードを送信',
36
42
  'Send Code': 'コードを送信',
37
43
  Sending: '送信中',
44
+ 'Setup Email': 'E メールをセットアップ',
38
45
  'Setup TOTP': 'TOTP をセットアップ',
39
46
  'Show password': 'パスワードを表示',
40
47
  'Sign in to your account': 'アカウントにサインイン ',
@@ -48,6 +55,7 @@ const jaDict = {
48
55
  Skip: 'スキップ',
49
56
  Submit: '送信',
50
57
  Submitting: '送信中',
58
+ 'Text Message (SMS)': 'テキストメッセージ (SMS)',
51
59
  Username: 'ユーザー名 ',
52
60
  'Verify Contact': '連絡先を確認',
53
61
  Verify: '確認',
@@ -1,9 +1,11 @@
1
1
  const krDict = {
2
2
  'Account recovery requires verified contact information': '계정 복구를 위해 연락처 확인이 필요합니다',
3
+ 'Authenticator App (TOTP)': '인증 앱(TOTP)',
3
4
  'Back to Sign In': '로그인으로 돌아가기',
4
5
  'Change Password': '비밀번호 변경하기',
5
6
  Changing: '변경중',
6
7
  Code: '코드',
8
+ 'Confirm Email Code': '이메일 코드 확인',
7
9
  'Confirm Password': '비밀번호 재확인',
8
10
  'Confirm Sign Up': '회원가입 확인',
9
11
  'Confirm SMS Code': '휴대폰 본인 확인',
@@ -16,6 +18,7 @@ const krDict = {
16
18
  'Creating Account': '회원가입중',
17
19
  'Dismiss alert': '알림 무시',
18
20
  Email: '이메일',
21
+ 'Email Message': '이메일 메시지',
19
22
  'Enter your Birthdate': '생년월일 입력',
20
23
  'Enter your code': '인증번호를 입력해주세요',
21
24
  'Enter your Confirmation Code': '확인 코드 입력',
@@ -32,6 +35,8 @@ const krDict = {
32
35
  'Hide password': '비밀번호 숨기기',
33
36
  'It may take a minute to arrive': '도착하는 데 1분 정도 걸릴 수 있습니다',
34
37
  Loading: '로딩중',
38
+ 'Multi-Factor Authentication': '다중 인증',
39
+ 'Multi-Factor Authentication Setup': '다중 인증 설정',
35
40
  'New password': '새 비밀번호',
36
41
  or: '또는',
37
42
  Password: '비밀번호',
@@ -40,9 +45,11 @@ const krDict = {
40
45
  'Resend Code': '인증번호 재전송',
41
46
  'Reset your password': '비밀번호 재설정',
42
47
  'Reset your Password': '비밀번호 재설정',
48
+ 'Select MFA Type': 'MFA 유형 선택',
43
49
  'Send code': '인증코드 보내기',
44
50
  'Send Code': '코드 전송',
45
51
  Sending: '전송중',
52
+ 'Setup Email': '이메일 설정',
46
53
  'Setup TOTP': 'TOTP 설정하기',
47
54
  'Show password': '비밀번호 보이기',
48
55
  'Sign in to your account': '로그인',
@@ -56,6 +63,7 @@ const krDict = {
56
63
  Skip: '다음에 하기',
57
64
  Submit: '확인',
58
65
  Submitting: '확인중',
66
+ 'Text Message (SMS)': '문자 메시지(SMS)',
59
67
  Username: '아이디',
60
68
  'Verify Contact': '연락처 확인',
61
69
  Verify: '인증',
@@ -2,10 +2,12 @@ const nbDict = {
2
2
  'Account recovery requires verified contact information': 'Gjenoppretting av konto krever verifisert kontaktinformajson',
3
3
  'Add your Profile': 'Legg til profilen din',
4
4
  'Add your Website': 'Legg til nettsiden din',
5
+ 'Authenticator App (TOTP)': 'Autentiseringsapp (TOTP)',
5
6
  'Back to Sign In': 'Tilbake til innlogging',
6
7
  'Change Password': 'Bytt passord',
7
8
  Changing: 'Endre',
8
9
  Code: 'Kode',
10
+ 'Confirm Email Code': 'Bekreft e-postkode',
9
11
  'Confirm Password': 'Bekreft passordet',
10
12
  'Confirm Sign Up': 'Bekreft registrering',
11
13
  'Confirm SMS Code': 'Bekreft SMS-kode',
@@ -18,6 +20,7 @@ const nbDict = {
18
20
  'Creating Account': 'Oppretter konto',
19
21
  'Dismiss alert': 'Avvis varsel',
20
22
  Email: 'E-post',
23
+ 'Email Message': 'E-postmelding',
21
24
  'Enter your Birthdate': 'Skriv inn fødselsdatoen din',
22
25
  'Enter your code': 'Skriv inn koden din',
23
26
  'Enter your Confirmation Code': 'Skriv inn bekreftelseskoden din',
@@ -36,6 +39,8 @@ const nbDict = {
36
39
  'Hide password': 'Skjul passordet',
37
40
  'It may take a minute to arrive': 'Det kan ta et minutt for å komme frem',
38
41
  Loading: 'Laster inn',
42
+ 'Multi-Factor Authentication': 'Flerfaktorautentisering',
43
+ 'Multi-Factor Authentication Setup': 'Oppsett av flerfaktorautentisering',
39
44
  'New password': 'Nytt passord',
40
45
  or: 'eller',
41
46
  Password: 'Passord',
@@ -44,9 +49,11 @@ const nbDict = {
44
49
  'Resend Code': 'Send koden på nytt',
45
50
  'Reset your password': 'Nullstill passordet ditt',
46
51
  'Reset your Password': 'Nullstill passordet ditt',
52
+ 'Select MFA Type': 'Velg MFA-type',
47
53
  'Send code': 'Send kode',
48
54
  'Send Code': 'Send kode',
49
55
  Sending: 'Sender',
56
+ 'Setup Email': 'Konfigurer e-post',
50
57
  'Setup TOTP': 'Konfigurer TOTP',
51
58
  'Show password': 'Vis passordet',
52
59
  'Sign in to your account': 'Logg inn på kontoen din',
@@ -60,6 +67,7 @@ const nbDict = {
60
67
  Skip: 'Hopp over',
61
68
  Submit: 'Send inn',
62
69
  Submitting: 'Sender inn',
70
+ 'Text Message (SMS)': 'Tekstmelding (SMS)',
63
71
  Username: 'Brukernavn',
64
72
  'Verify Contact': 'Bekreft kontakt',
65
73
  Verify: 'Bekreft',