@aws-amplify/ui 5.8.0 → 6.0.0
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.
- package/dist/esm/helpers/accountSettings/utils.mjs +33 -1
- package/dist/esm/helpers/accountSettings/validator.mjs +120 -1
- package/dist/esm/helpers/authenticator/actor.mjs +20 -1
- package/dist/esm/helpers/authenticator/constants.mjs +144 -1
- package/dist/esm/helpers/authenticator/defaultAuthHubHandler.mjs +52 -0
- package/dist/esm/helpers/authenticator/facade.mjs +137 -1
- package/dist/esm/helpers/authenticator/form.mjs +43 -1
- package/dist/esm/helpers/authenticator/formFields/defaults.mjs +132 -1
- package/dist/esm/helpers/authenticator/formFields/formFields.mjs +62 -1
- package/dist/esm/helpers/authenticator/formFields/utils.mjs +35 -0
- package/dist/esm/helpers/authenticator/getRoute.mjs +47 -0
- package/dist/esm/helpers/authenticator/textUtil.mjs +112 -1
- package/dist/esm/helpers/authenticator/utils.mjs +38 -1
- package/dist/esm/helpers/utils.mjs +5 -1
- package/dist/esm/i18n/country-dial-codes.mjs +210 -1
- package/dist/esm/i18n/dictionaries/authenticator/de.mjs +87 -1
- package/dist/esm/i18n/dictionaries/authenticator/defaultTexts.mjs +83 -1
- package/dist/esm/i18n/dictionaries/authenticator/en.mjs +74 -1
- package/dist/esm/i18n/dictionaries/authenticator/es.mjs +83 -1
- package/dist/esm/i18n/dictionaries/authenticator/fr.mjs +92 -1
- package/dist/esm/i18n/dictionaries/authenticator/he.mjs +54 -1
- package/dist/esm/i18n/dictionaries/authenticator/id.mjs +96 -1
- package/dist/esm/i18n/dictionaries/authenticator/it.mjs +82 -1
- package/dist/esm/i18n/dictionaries/authenticator/ja.mjs +86 -1
- package/dist/esm/i18n/dictionaries/authenticator/kr.mjs +71 -1
- package/dist/esm/i18n/dictionaries/authenticator/nb.mjs +95 -1
- package/dist/esm/i18n/dictionaries/authenticator/nl.mjs +67 -1
- package/dist/esm/i18n/dictionaries/authenticator/pl.mjs +71 -1
- package/dist/esm/i18n/dictionaries/authenticator/pt.mjs +61 -1
- package/dist/esm/i18n/dictionaries/authenticator/ru.mjs +61 -1
- package/dist/esm/i18n/dictionaries/authenticator/sv.mjs +82 -1
- package/dist/esm/i18n/dictionaries/authenticator/tr.mjs +76 -1
- package/dist/esm/i18n/dictionaries/authenticator/ua.mjs +84 -1
- package/dist/esm/i18n/dictionaries/authenticator/zh.mjs +74 -1
- package/dist/esm/i18n/dictionaries/index.mjs +47 -1
- package/dist/esm/i18n/translations.mjs +67 -1
- package/dist/esm/index.mjs +28 -1
- package/dist/esm/machines/authenticator/actions.mjs +188 -1
- package/dist/esm/machines/authenticator/actors/forgotPassword.mjs +184 -0
- package/dist/esm/machines/authenticator/actors/signIn.mjs +328 -1
- package/dist/esm/machines/authenticator/actors/signOut.mjs +28 -1
- package/dist/esm/machines/authenticator/actors/signUp.mjs +295 -0
- package/dist/esm/machines/authenticator/actors/verifyUserAttributes.mjs +106 -0
- package/dist/esm/machines/authenticator/defaultServices.mjs +102 -1
- package/dist/esm/machines/authenticator/guards.mjs +70 -0
- package/dist/esm/machines/authenticator/index.mjs +368 -1
- package/dist/esm/machines/authenticator/utils.mjs +71 -0
- package/dist/esm/theme/breakpoints.mjs +14 -1
- package/dist/esm/theme/createTheme.mjs +156 -1
- package/dist/esm/theme/defaultDarkModeOverride.mjs +128 -1
- package/dist/esm/theme/defaultTheme.mjs +10 -1
- package/dist/esm/theme/tokens/borderWidths.mjs +7 -1
- package/dist/esm/theme/tokens/colors.mjs +166 -1
- package/dist/esm/theme/tokens/components/accordion.mjs +47 -0
- package/dist/esm/theme/tokens/components/alert.mjs +35 -1
- package/dist/esm/theme/tokens/components/authenticator.mjs +39 -1
- package/dist/esm/theme/tokens/components/autocomplete.mjs +42 -1
- package/dist/esm/theme/tokens/components/badge.mjs +44 -1
- package/dist/esm/theme/tokens/components/breadcrumbs.mjs +34 -1
- package/dist/esm/theme/tokens/components/button.mjs +685 -1
- package/dist/esm/theme/tokens/components/card.mjs +27 -1
- package/dist/esm/theme/tokens/components/checkbox.mjs +87 -1
- package/dist/esm/theme/tokens/components/checkboxField.mjs +8 -1
- package/dist/esm/theme/tokens/components/collection.mjs +72 -1
- package/dist/esm/theme/tokens/components/copy.mjs +18 -1
- package/dist/esm/theme/tokens/components/dialCodeSelect.mjs +7 -1
- package/dist/esm/theme/tokens/components/divider.mjs +22 -1
- package/dist/esm/theme/tokens/components/dropZone.mjs +46 -1
- package/dist/esm/theme/tokens/components/field.mjs +20 -1
- package/dist/esm/theme/tokens/components/fieldControl.mjs +131 -1
- package/dist/esm/theme/tokens/components/fieldGroup.mjs +11 -1
- package/dist/esm/theme/tokens/components/fieldMessages.mjs +13 -1
- package/dist/esm/theme/tokens/components/fieldset.mjs +40 -1
- package/dist/esm/theme/tokens/components/flex.mjs +9 -1
- package/dist/esm/theme/tokens/components/heading.mjs +30 -1
- package/dist/esm/theme/tokens/components/highlightMatch.mjs +7 -1
- package/dist/esm/theme/tokens/components/icon.mjs +6 -1
- package/dist/esm/theme/tokens/components/image.mjs +8 -1
- package/dist/esm/theme/tokens/components/inAppMessaging.mjs +23 -1
- package/dist/esm/theme/tokens/components/index.mjs +111 -1
- package/dist/esm/theme/tokens/components/input.mjs +12 -1
- package/dist/esm/theme/tokens/components/link.mjs +9 -1
- package/dist/esm/theme/tokens/components/liveness.mjs +7 -1
- package/dist/esm/theme/tokens/components/loader.mjs +42 -1
- package/dist/esm/theme/tokens/components/menu.mjs +27 -1
- package/dist/esm/theme/tokens/components/message.mjs +102 -1
- package/dist/esm/theme/tokens/components/pagination.mjs +40 -1
- package/dist/esm/theme/tokens/components/passwordField.mjs +38 -1
- package/dist/esm/theme/tokens/components/phoneNumberField.mjs +10 -1
- package/dist/esm/theme/tokens/components/placeholder.mjs +18 -1
- package/dist/esm/theme/tokens/components/radio.mjs +67 -1
- package/dist/esm/theme/tokens/components/radioGroup.mjs +19 -1
- package/dist/esm/theme/tokens/components/rating.mjs +9 -1
- package/dist/esm/theme/tokens/components/searchField.mjs +39 -1
- package/dist/esm/theme/tokens/components/select.mjs +63 -1
- package/dist/esm/theme/tokens/components/selectField.mjs +16 -1
- package/dist/esm/theme/tokens/components/sliderField.mjs +70 -1
- package/dist/esm/theme/tokens/components/stepperField.mjs +33 -1
- package/dist/esm/theme/tokens/components/storagemanager.mjs +97 -1
- package/dist/esm/theme/tokens/components/switchField.mjs +61 -1
- package/dist/esm/theme/tokens/components/table.mjs +105 -1
- package/dist/esm/theme/tokens/components/tabs.mjs +59 -1
- package/dist/esm/theme/tokens/components/text.mjs +28 -1
- package/dist/esm/theme/tokens/components/textAreaField.mjs +11 -1
- package/dist/esm/theme/tokens/components/textField.mjs +12 -1
- package/dist/esm/theme/tokens/components/toggleButton.mjs +96 -1
- package/dist/esm/theme/tokens/components/toggleButtonGroup.mjs +7 -1
- package/dist/esm/theme/tokens/fontSizes.mjs +14 -1
- package/dist/esm/theme/tokens/fontWeights.mjs +13 -1
- package/dist/esm/theme/tokens/fonts.mjs +19 -1
- package/dist/esm/theme/tokens/index.mjs +65 -1
- package/dist/esm/theme/tokens/lineHeights.mjs +7 -1
- package/dist/esm/theme/tokens/opacities.mjs +15 -1
- package/dist/esm/theme/tokens/outlineOffsets.mjs +7 -1
- package/dist/esm/theme/tokens/outlineWidths.mjs +7 -1
- package/dist/esm/theme/tokens/radii.mjs +11 -1
- package/dist/esm/theme/tokens/shadows.mjs +28 -1
- package/dist/esm/theme/tokens/space.mjs +29 -1
- package/dist/esm/theme/tokens/time.mjs +7 -1
- package/dist/esm/theme/tokens/transforms.mjs +10 -1
- package/dist/esm/theme/utils.mjs +81 -1
- package/dist/esm/types/authenticator/attributes.mjs +41 -1
- package/dist/esm/types/authenticator/user.mjs +18 -1
- package/dist/esm/types/authenticator/utils.mjs +5 -1
- package/dist/esm/types/primitives/componentClassName.mjs +164 -1
- package/dist/esm/utils/classNames.mjs +39 -0
- package/dist/esm/utils/setUserAgent/constants.mjs +43 -0
- package/dist/esm/utils/setUserAgent/setUserAgent.mjs +65 -0
- package/dist/esm/utils/utils.mjs +227 -0
- package/dist/esm/validators/index.mjs +19 -1
- package/dist/index.js +8396 -1
- package/dist/styles/StorageManager.css +138 -0
- package/dist/styles/StorageManager.layer.css +140 -0
- package/dist/styles/_fieldControl.css +0 -0
- package/dist/styles/_fieldControl.layer.css +3 -0
- package/dist/styles/accordion.css +64 -0
- package/dist/styles/accordion.layer.css +66 -0
- package/dist/styles/alert.css +44 -0
- package/dist/styles/alert.layer.css +46 -0
- package/dist/styles/authenticator.css +72 -0
- package/dist/styles/authenticator.layer.css +74 -0
- package/dist/styles/autocomplete.css +48 -0
- package/dist/styles/autocomplete.layer.css +50 -0
- package/dist/styles/badge.css +35 -0
- package/dist/styles/badge.layer.css +37 -0
- package/dist/styles/base.css +1491 -0
- package/dist/styles/base.layer.css +1493 -0
- package/dist/styles/breadcrumbs.css +40 -0
- package/dist/styles/breadcrumbs.layer.css +42 -0
- package/dist/styles/button.css +1122 -0
- package/dist/styles/button.layer.css +1124 -0
- package/dist/styles/card.css +26 -0
- package/dist/styles/card.layer.css +28 -0
- package/dist/styles/checkbox.css +95 -0
- package/dist/styles/checkbox.layer.css +97 -0
- package/dist/styles/checkboxField.css +6 -0
- package/dist/styles/checkboxField.layer.css +8 -0
- package/dist/styles/collection.css +70 -0
- package/dist/styles/collection.layer.css +72 -0
- package/dist/styles/copy.css +27 -0
- package/dist/styles/copy.layer.css +29 -0
- package/dist/styles/dialCodeSelect.css +3 -0
- package/dist/styles/dialCodeSelect.layer.css +5 -0
- package/dist/styles/divider.css +47 -0
- package/dist/styles/divider.layer.css +49 -0
- package/dist/styles/dropZone.css +45 -0
- package/dist/styles/dropZone.layer.css +47 -0
- package/dist/styles/field.css +17 -0
- package/dist/styles/field.layer.css +19 -0
- package/dist/styles/fieldGroup.css +130 -0
- package/dist/styles/fieldGroup.layer.css +132 -0
- package/dist/styles/fieldMessages.css +10 -0
- package/dist/styles/fieldMessages.layer.css +12 -0
- package/dist/styles/fieldModifiers.css +15 -0
- package/dist/styles/fieldModifiers.layer.css +17 -0
- package/dist/styles/fieldset.css +37 -0
- package/dist/styles/fieldset.layer.css +39 -0
- package/dist/styles/flex.css +8 -0
- package/dist/styles/flex.layer.css +10 -0
- package/dist/styles/grid.css +3 -0
- package/dist/styles/grid.layer.css +5 -0
- package/dist/styles/heading.css +40 -0
- package/dist/styles/heading.layer.css +42 -0
- package/dist/styles/highlightMatch.css +3 -0
- package/dist/styles/highlightMatch.layer.css +5 -0
- package/dist/styles/icon.css +14 -0
- package/dist/styles/icon.layer.css +16 -0
- package/dist/styles/image.css +9 -0
- package/dist/styles/image.layer.css +11 -0
- package/dist/styles/inAppMessaging.css +179 -0
- package/dist/styles/inAppMessaging.layer.css +181 -0
- package/dist/styles/input.css +83 -0
- package/dist/styles/input.layer.css +85 -0
- package/dist/styles/link.css +26 -0
- package/dist/styles/link.layer.css +28 -0
- package/dist/styles/liveness.css +374 -0
- package/dist/styles/liveness.layer.css +376 -0
- package/dist/styles/loader.css +108 -0
- package/dist/styles/loader.layer.css +110 -0
- package/dist/styles/menu.css +54 -0
- package/dist/styles/menu.layer.css +56 -0
- package/dist/styles/message.css +111 -0
- package/dist/styles/message.layer.css +113 -0
- package/dist/styles/pagination.css +41 -0
- package/dist/styles/pagination.layer.css +43 -0
- package/dist/styles/passwordField.css +49 -0
- package/dist/styles/passwordField.layer.css +51 -0
- package/dist/styles/phoneNumberField.css +30 -0
- package/dist/styles/phoneNumberField.layer.css +32 -0
- package/dist/styles/placeholder.css +31 -0
- package/dist/styles/placeholder.layer.css +33 -0
- package/dist/styles/radio.css +82 -0
- package/dist/styles/radio.layer.css +84 -0
- package/dist/styles/radioGroupField.css +25 -0
- package/dist/styles/radioGroupField.layer.css +27 -0
- package/dist/styles/radiogroup.css +5 -0
- package/dist/styles/radiogroup.layer.css +7 -0
- package/dist/styles/rating.css +33 -0
- package/dist/styles/rating.layer.css +35 -0
- package/dist/styles/reset.css +76 -0
- package/dist/styles/reset.layer.css +78 -0
- package/dist/styles/scrollView.css +4 -0
- package/dist/styles/scrollView.layer.css +6 -0
- package/dist/styles/searchField.css +29 -0
- package/dist/styles/searchField.layer.css +31 -0
- package/dist/styles/select.css +128 -0
- package/dist/styles/select.layer.css +130 -0
- package/dist/styles/selectField.css +18 -0
- package/dist/styles/selectField.layer.css +20 -0
- package/dist/styles/sliderField.css +143 -0
- package/dist/styles/sliderField.layer.css +145 -0
- package/dist/styles/stepperField.css +77 -0
- package/dist/styles/stepperField.layer.css +79 -0
- package/dist/styles/switchField.css +76 -0
- package/dist/styles/switchField.layer.css +78 -0
- package/dist/styles/table.css +146 -0
- package/dist/styles/table.layer.css +148 -0
- package/dist/styles/tabs.css +87 -0
- package/dist/styles/tabs.layer.css +89 -0
- package/dist/styles/text.css +40 -0
- package/dist/styles/text.layer.css +42 -0
- package/dist/styles/textArea.css +71 -0
- package/dist/styles/textArea.layer.css +73 -0
- package/dist/styles/textAreaField.css +12 -0
- package/dist/styles/textAreaField.layer.css +14 -0
- package/dist/styles/textField.css +14 -0
- package/dist/styles/textField.layer.css +16 -0
- package/dist/styles/toggleButton.css +280 -0
- package/dist/styles/toggleButton.layer.css +282 -0
- package/dist/styles/toggleButtonGroup.css +31 -0
- package/dist/styles/toggleButtonGroup.layer.css +33 -0
- package/dist/styles/visuallyHidden.css +12 -0
- package/dist/styles/visuallyHidden.layer.css +14 -0
- package/dist/styles.css +423 -869
- package/dist/styles.layer.css +6115 -0
- package/dist/theme.css +103 -157
- package/dist/types/helpers/accountSettings/utils.d.ts +1 -3
- package/dist/types/helpers/authenticator/actor.d.ts +1 -1
- package/dist/types/helpers/authenticator/constants.d.ts +5 -0
- package/dist/types/helpers/authenticator/defaultAuthHubHandler.d.ts +15 -0
- package/dist/types/helpers/authenticator/facade.d.ts +35 -6
- package/dist/types/helpers/authenticator/formFields/defaults.d.ts +3 -1
- package/dist/types/helpers/authenticator/formFields/formFields.d.ts +2 -1
- package/dist/types/helpers/authenticator/formFields/index.d.ts +1 -1
- package/dist/types/helpers/authenticator/formFields/{util.d.ts → utils.d.ts} +2 -0
- package/dist/types/helpers/authenticator/getRoute.d.ts +2 -0
- package/dist/types/helpers/authenticator/index.d.ts +2 -1
- package/dist/types/helpers/authenticator/textUtil.d.ts +8 -7
- package/dist/types/{types/authenticator/stateMachine/authMachine.d.ts → helpers/authenticator/types.d.ts} +5 -5
- package/dist/types/helpers/authenticator/utils.d.ts +0 -25
- package/dist/types/helpers/index.d.ts +0 -1
- package/dist/types/helpers/utils.d.ts +2 -2
- package/dist/types/i18n/translations.d.ts +2 -3
- package/dist/types/machines/authenticator/actions.d.ts +4 -62
- package/dist/types/machines/authenticator/actors/{resetPassword.d.ts → forgotPassword.d.ts} +3 -3
- package/dist/types/machines/authenticator/actors/index.d.ts +3 -1
- package/dist/types/machines/authenticator/actors/signIn.d.ts +3 -3
- package/dist/types/machines/authenticator/actors/signOut.d.ts +2 -2
- package/dist/types/machines/authenticator/{signUp.d.ts → actors/signUp.d.ts} +3 -3
- package/dist/types/machines/authenticator/actors/verifyUserAttributes.d.ts +5 -0
- package/dist/types/machines/authenticator/defaultServices.d.ts +208 -28
- package/dist/types/machines/authenticator/getAuthenticatorConfig.d.ts +14 -0
- package/dist/types/machines/authenticator/guards.d.ts +4 -0
- package/dist/types/machines/authenticator/index.d.ts +4 -2
- package/dist/types/machines/authenticator/types.d.ts +125 -0
- package/dist/types/machines/authenticator/utils.d.ts +7 -0
- package/dist/types/machines/index.d.ts +1 -0
- package/dist/types/theme/tokens/borderWidths.d.ts +2 -2
- package/dist/types/theme/tokens/colors.d.ts +7 -9
- package/dist/types/theme/tokens/components/accordion.d.ts +12 -0
- package/dist/types/theme/tokens/components/index.d.ts +2 -4
- package/dist/types/theme/tokens/components/radioGroup.d.ts +1 -1
- package/dist/types/theme/tokens/components/select.d.ts +6 -2
- package/dist/types/theme/tokens/components/storagemanager.d.ts +18 -3
- package/dist/types/theme/tokens/components/tabs.d.ts +4 -3
- package/dist/types/theme/tokens/fontSizes.d.ts +2 -2
- package/dist/types/theme/tokens/fontWeights.d.ts +2 -2
- package/dist/types/theme/tokens/fonts.d.ts +2 -2
- package/dist/types/theme/tokens/lineHeights.d.ts +2 -2
- package/dist/types/theme/tokens/opacities.d.ts +2 -2
- package/dist/types/theme/tokens/outlineOffsets.d.ts +2 -2
- package/dist/types/theme/tokens/outlineWidths.d.ts +2 -2
- package/dist/types/theme/tokens/radii.d.ts +2 -2
- package/dist/types/theme/tokens/shadows.d.ts +2 -2
- package/dist/types/theme/tokens/space.d.ts +2 -2
- package/dist/types/theme/tokens/time.d.ts +2 -2
- package/dist/types/theme/tokens/types/designToken.d.ts +12 -6
- package/dist/types/theme/types.d.ts +5 -1
- package/dist/types/types/authenticator/attributes.d.ts +10 -4
- package/dist/types/types/authenticator/form.d.ts +7 -6
- package/dist/types/types/authenticator/index.d.ts +0 -1
- package/dist/types/types/authenticator/user.d.ts +3 -29
- package/dist/types/types/authenticator/validator.d.ts +2 -2
- package/dist/types/types/displayText.d.ts +84 -0
- package/dist/types/types/index.d.ts +1 -0
- package/dist/types/types/primitives/componentClassName.d.ts +162 -180
- package/dist/types/types/util.d.ts +0 -5
- package/dist/types/utils/classNames.d.ts +4 -0
- package/dist/types/utils/index.d.ts +3 -135
- package/dist/types/utils/setUserAgent/constants.d.ts +7 -0
- package/dist/types/utils/setUserAgent/index.d.ts +1 -0
- package/dist/types/utils/setUserAgent/setUserAgent.d.ts +19 -0
- package/dist/types/utils/utils.d.ts +147 -0
- package/dist/types/validators/index.d.ts +2 -2
- package/package.json +5 -19
- package/dist/esm/helpers/authenticator/context.mjs +0 -1
- package/dist/esm/helpers/authenticator/formFields/util.mjs +0 -1
- package/dist/esm/helpers/storage/fileUploader/utils/uploader.mjs +0 -1
- package/dist/esm/machines/authenticator/actors/resetPassword.mjs +0 -1
- package/dist/esm/machines/authenticator/signUp.mjs +0 -1
- package/dist/esm/theme/tokens/components/expander.mjs +0 -1
- package/dist/esm/theme/tokens/components/fileUploader.mjs +0 -1
- package/dist/esm/utils/index.mjs +0 -1
- package/dist/types/helpers/authenticator/context.d.ts +0 -13
- package/dist/types/helpers/storage/fileUploader/index.d.ts +0 -1
- package/dist/types/helpers/storage/fileUploader/utils/index.d.ts +0 -1
- package/dist/types/helpers/storage/fileUploader/utils/uploader.d.ts +0 -28
- package/dist/types/helpers/storage/index.d.ts +0 -1
- package/dist/types/theme/tokens/components/expander.d.ts +0 -22
- package/dist/types/theme/tokens/components/fileUploader.d.ts +0 -23
- package/dist/types/types/authenticator/stateMachine/context.d.ts +0 -109
- package/dist/types/types/authenticator/stateMachine/event.d.ts +0 -17
- package/dist/types/types/authenticator/stateMachine/index.d.ts +0 -4
- package/dist/types/types/authenticator/stateMachine/state.d.ts +0 -10
|
@@ -1 +1,96 @@
|
|
|
1
|
-
const
|
|
1
|
+
const idDict = {
|
|
2
|
+
'Account recovery requires verified contact information': 'Pemulihan akun memerlukan informasi kontak terverifikasi',
|
|
3
|
+
'Back to Sign In': 'Kembali ke Masuk',
|
|
4
|
+
'Change Password': 'Ubah kata sandi',
|
|
5
|
+
Changing: 'Mengubah',
|
|
6
|
+
Code: 'Kode',
|
|
7
|
+
'Confirm Password': 'Konfirmasi kata sandi',
|
|
8
|
+
'Confirm Sign Up': 'Konfirmasi Pendaftaran',
|
|
9
|
+
'Confirm SMS Code': 'Konfirmasi Kode SMS',
|
|
10
|
+
'Confirm TOTP Code': 'Konfirmasi Kode TOTP',
|
|
11
|
+
Confirm: 'Konfirmasi',
|
|
12
|
+
'Confirmation Code': 'Kode Konfirmasi',
|
|
13
|
+
Confirming: 'Mengkonfirmasi',
|
|
14
|
+
'Create a new account': 'Buat akun baru',
|
|
15
|
+
'Create Account': 'Buat Akun',
|
|
16
|
+
'Creating Account': 'Membuat Akun',
|
|
17
|
+
'Dismiss alert': 'Hentikan pemberitahuan',
|
|
18
|
+
Email: 'Email',
|
|
19
|
+
'Enter your code': 'Masukkan kode anda',
|
|
20
|
+
'Enter your Email': 'Masukkan email anda',
|
|
21
|
+
'Enter your phone number': 'Masukkan nomor telepon anda',
|
|
22
|
+
'Enter your username': 'Masukkan nama akun anda',
|
|
23
|
+
'Forgot your password?': 'Lupa kata sandi? ',
|
|
24
|
+
'Hide password': 'Sembunyikan kata sandi',
|
|
25
|
+
'It may take a minute to arrive': 'Mungkin perlu waktu satu menit untuk tiba',
|
|
26
|
+
Loading: 'Memuat',
|
|
27
|
+
'New password': 'Kata sandi baru',
|
|
28
|
+
or: 'atau',
|
|
29
|
+
Password: 'Kata sandi',
|
|
30
|
+
'Phone Number': 'Nomor telepon',
|
|
31
|
+
'Resend Code': 'Kirim ulang kodenya',
|
|
32
|
+
'Reset your Password': 'Reset Kata Sandi',
|
|
33
|
+
'Reset your password': 'Ubah kata sandi anda',
|
|
34
|
+
'Send code': 'Kirim kode',
|
|
35
|
+
'Send Code': 'Kirim Kode',
|
|
36
|
+
Sending: 'Mengirim',
|
|
37
|
+
'Setup TOTP': 'Siapkan TOTP',
|
|
38
|
+
'Show password': 'Tampilkan kata sandi',
|
|
39
|
+
'Sign in to your account': 'Masuk akun anda',
|
|
40
|
+
'Sign In with Amazon': 'Masuk dengan Amazon',
|
|
41
|
+
'Sign In with Apple': 'Masuk dengan Apple',
|
|
42
|
+
'Sign In with Facebook': 'Masuk dengan Facebook',
|
|
43
|
+
'Sign In with Google': 'Masuk dengan Google',
|
|
44
|
+
'Sign in': 'Masuk',
|
|
45
|
+
'Sign In': 'Masuk',
|
|
46
|
+
'Signing in': 'Memasuki',
|
|
47
|
+
Skip: 'Lewati',
|
|
48
|
+
Submit: 'Ajukan',
|
|
49
|
+
Submitting: 'Mengajukan',
|
|
50
|
+
Username: 'Nama akun',
|
|
51
|
+
'Verify Contact': 'Verifikasi Kontak',
|
|
52
|
+
Verify: 'Verifikasi',
|
|
53
|
+
'We Sent A Code': 'Kami Mengirim Kode',
|
|
54
|
+
'We Texted You': 'Kami mengirim SMS kepada Anda',
|
|
55
|
+
'Your code is on the way. To log in, enter the code we sent you': 'Kode Anda segera hadir. Untuk masuk, masukkan kode yang kami kirimkan kepada Anda',
|
|
56
|
+
// Additional translations provided by customers
|
|
57
|
+
'An account with the given email already exists.': 'Akun dengan email tersebut sudah terdaftar.',
|
|
58
|
+
'Attempt limit exceeded, please try after some time.': 'Batas percobaan terlampaui, mohon coba lagi setelah beberapa waktu.',
|
|
59
|
+
'Cannot reset password for the user as there is no registered/verified email or phone_number': 'Tidak dapat mengatur ulang kata sandi karena tidak ada email terdaftar / terverifikasi atau nomor telepon',
|
|
60
|
+
Change: 'Ubah',
|
|
61
|
+
'Confirm a Code': 'Konfirmasi kode',
|
|
62
|
+
'Create account': 'Buat akun',
|
|
63
|
+
'Enter your password': 'Masukkan kata sandi anda',
|
|
64
|
+
'Forgot Password': 'Lupa kata sandi',
|
|
65
|
+
'Have an account? ': 'Sudah punya akun? ',
|
|
66
|
+
Hello: 'Halo',
|
|
67
|
+
'Incorrect username or password.': 'Nama akun atau kata sandi salah.',
|
|
68
|
+
'Invalid phone number format': 'Nomor telepon tidak sesuai dengan format.',
|
|
69
|
+
'Invalid verification code provided, please try again.': 'Kode verifikasi tidak sesuai, mohon coba lagi.',
|
|
70
|
+
'It may take a minute to arrive.': 'Mungkin perlu beberapa waktu untuk tiba.',
|
|
71
|
+
'Lost your code? ': 'Kode anda hilang?',
|
|
72
|
+
Name: 'Nama',
|
|
73
|
+
'Network error': 'Galat jaringan',
|
|
74
|
+
'No account? ': 'Tidak ada akun?',
|
|
75
|
+
'Password did not conform with policy: Password not long enough': 'Kata sandi tidak sesuai dengan aturan: Kata sandi kurang panjang',
|
|
76
|
+
'Resend a Code': 'Renvoyer un code',
|
|
77
|
+
'Reset password': 'Ubah kata sandi anda',
|
|
78
|
+
Send: 'Kirim',
|
|
79
|
+
'Sign In with AWS': 'Masuk dengan AWS',
|
|
80
|
+
'Sign Up with Amazon': 'Daftar dengan Amazon',
|
|
81
|
+
'Sign Up with AWS': 'Daftar dengan AWS',
|
|
82
|
+
'Sign Up with Facebook': 'Daftar dengan Facebook',
|
|
83
|
+
'Sign Up with Google': 'Daftar dengan Google',
|
|
84
|
+
SMS: 'SMS',
|
|
85
|
+
'User already exists': 'Akun sudah terdaftar',
|
|
86
|
+
'User does not exist.': 'Akun tidak terdaftar.',
|
|
87
|
+
'User is disabled.': 'Akun dinonaktifkan.',
|
|
88
|
+
'Username cannot be empty': 'Nama akun tidak boleh kosong',
|
|
89
|
+
'Username/client id combination not found.': 'Nama akun atau id tidak ditemukan.',
|
|
90
|
+
'We Emailed You': 'Kami mengirimkanmu email',
|
|
91
|
+
'Your code is on the way. To log in, enter the code we emailed to': 'Kode anda dalam pengiriman. Untuk masuk, masukkan kode yang kami emailkan ke',
|
|
92
|
+
'Your code is on the way. To log in, enter the code we texted to': 'Kode anda dalam pengiriman. Untuk masuk, masukkan kode yang kami tuliskan ke',
|
|
93
|
+
'Your passwords must match': 'Kata sandi harus sama',
|
|
94
|
+
};
|
|
95
|
+
|
|
96
|
+
export { idDict };
|
|
@@ -1 +1,82 @@
|
|
|
1
|
-
const
|
|
1
|
+
const itDict = {
|
|
2
|
+
'Account recovery requires verified contact information': "Il ripristino dell'account richiede informazioni di contatto verificate",
|
|
3
|
+
'Back to Sign In': 'Torna alla schermata di accesso',
|
|
4
|
+
'Change Password': 'Cambia la password',
|
|
5
|
+
Changing: 'Modifica in corso',
|
|
6
|
+
Code: 'Codice',
|
|
7
|
+
'Confirm Password': 'Conferma la password',
|
|
8
|
+
'Confirm Sign Up': 'Conferma registrazione',
|
|
9
|
+
'Confirm SMS Code': 'Conferma codice SMS',
|
|
10
|
+
'Confirm TOTP Code': 'Conferma codice TOTP',
|
|
11
|
+
Confirm: 'Conferma',
|
|
12
|
+
'Confirmation Code': 'Codice di verifica',
|
|
13
|
+
Confirming: 'Conferma in corso',
|
|
14
|
+
'Create a new account': 'Crea un nuovo account',
|
|
15
|
+
'Create Account': 'Crea Account',
|
|
16
|
+
'Creating Account': 'Creazione account in corso',
|
|
17
|
+
'Dismiss alert': `Ignora l'avviso`,
|
|
18
|
+
Email: 'Email',
|
|
19
|
+
'Enter your code': 'Inserisci il tuo codice',
|
|
20
|
+
'Enter your Email': 'Inserisci la tua e-mail',
|
|
21
|
+
'Enter your phone number': 'Inserisci il tuo numero di telefono"',
|
|
22
|
+
'Enter your username': 'Inserisci il tuo nome utente',
|
|
23
|
+
'Forgot your password?': 'Password dimenticata?',
|
|
24
|
+
'Hide password': 'Nascondi password',
|
|
25
|
+
'It may take a minute to arrive': "L'arrivo potrebbe richiedere qualche minuto",
|
|
26
|
+
Loading: 'Caricamento in corso',
|
|
27
|
+
'New password': 'Nuova password',
|
|
28
|
+
or: 'oppure',
|
|
29
|
+
Password: 'Password',
|
|
30
|
+
'Phone Number': 'Numero di telefono',
|
|
31
|
+
'Resend Code': 'Invia nuovamente il codice',
|
|
32
|
+
'Reset your Password': 'Reimposta la tua Password',
|
|
33
|
+
'Reset your password': 'Reimposta la tua password',
|
|
34
|
+
'Send code': 'Invia codice',
|
|
35
|
+
'Send Code': 'Invia codice',
|
|
36
|
+
Sending: 'Invio in corso',
|
|
37
|
+
'Setup TOTP': 'Configura TOTP',
|
|
38
|
+
'Show password': 'Mostra password',
|
|
39
|
+
'Sign in to your account': 'Accedi al tuo account',
|
|
40
|
+
'Sign In with Amazon': 'Accedi con Amazon',
|
|
41
|
+
'Sign In with Apple': 'Accedi con Apple',
|
|
42
|
+
'Sign In with Facebook': 'Accedi con Facebook',
|
|
43
|
+
'Sign In with Google': 'Accedi con Google',
|
|
44
|
+
'Sign in': 'Accedi',
|
|
45
|
+
'Sign In': 'Accedi',
|
|
46
|
+
'Signing in': 'Accesso in corso',
|
|
47
|
+
Skip: 'Salta',
|
|
48
|
+
Submit: 'Invia',
|
|
49
|
+
Submitting: 'Invio in corso',
|
|
50
|
+
Username: 'Nome utente',
|
|
51
|
+
'Verify Contact': 'Verifica contatto',
|
|
52
|
+
Verify: 'Verifica',
|
|
53
|
+
'We Emailed You': "Ti abbiamo inviato un'e-mail",
|
|
54
|
+
'We Sent A Code': 'Ti abbiamo inviato un codice',
|
|
55
|
+
'We Texted You': 'Ti abbiamo inviato un SMS',
|
|
56
|
+
'Your code is on the way. To log in, enter the code we emailed to': "Il codice è in arrivo. Per effettuare l'accesso, immetti il codice che ti abbiamo inviato via e-mail",
|
|
57
|
+
'Your code is on the way. To log in, enter the code we sent you': 'Il codice è in arrivo. Per accedere, immetti il codice che ti abbiamo inviato',
|
|
58
|
+
'Your code is on the way. To log in, enter the code we texted to': 'Il codice è in arrivo. Per accedere, immetti il codice che abbiamo inviato tramite SMS',
|
|
59
|
+
// Additional translations provided by customers
|
|
60
|
+
'An account with the given email already exists.': 'Questa email è già utilizzata da un altro account.',
|
|
61
|
+
'Confirm a Code': 'Conferma un codice',
|
|
62
|
+
'Confirm Sign In': "Conferma l'accesso",
|
|
63
|
+
'Create account': 'Crea account',
|
|
64
|
+
'Enter your password': 'Inserisci la tua password',
|
|
65
|
+
'Forgot Password?': 'Password dimenticata?',
|
|
66
|
+
'Have an account? ': 'Già registrato?',
|
|
67
|
+
'Incorrect username or password': 'Nome utente o password errati',
|
|
68
|
+
'Invalid password format': 'Formato della password non valido',
|
|
69
|
+
'Invalid phone number format': 'Formato del numero di telefono non valido',
|
|
70
|
+
'Lost your code?': 'Codice smarrito?',
|
|
71
|
+
'New Password': 'Nuova password',
|
|
72
|
+
'No account? ': 'Non hai un account?',
|
|
73
|
+
'Password attempts exceeded': 'Il numero massimo di tentativi di accesso falliti è stato raggiunto',
|
|
74
|
+
'Reset password': 'Reimposta password',
|
|
75
|
+
'Sign Out': 'Esci',
|
|
76
|
+
'Sign Up': 'Registrati',
|
|
77
|
+
'User already exists': 'Utente già esistente',
|
|
78
|
+
'User does not exist': 'Utente inesistente',
|
|
79
|
+
'Username cannot be empty': 'Il nome utente non può essere vuoto',
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
export { itDict };
|
|
@@ -1 +1,86 @@
|
|
|
1
|
-
const
|
|
1
|
+
const jaDict = {
|
|
2
|
+
'Account recovery requires verified contact information': 'アカウントの復旧には確認済みの連絡先が必要です',
|
|
3
|
+
'Back to Sign In': 'サインインに戻る',
|
|
4
|
+
'Change Password': 'パスワードを変える ',
|
|
5
|
+
Changing: '変更中',
|
|
6
|
+
Code: 'コード',
|
|
7
|
+
'Confirm Password': 'パスワードの確認',
|
|
8
|
+
'Confirm Sign Up': '登録する',
|
|
9
|
+
'Confirm SMS Code': 'SMS コードを確認',
|
|
10
|
+
'Confirm TOTP Code': 'TOTP コードを確認',
|
|
11
|
+
Confirm: '確定',
|
|
12
|
+
'Confirmation Code': '確認コード',
|
|
13
|
+
Confirming: '確認中',
|
|
14
|
+
'Create a new account': '新しいアカウントを作る',
|
|
15
|
+
'Create Account': 'アカウントを作る',
|
|
16
|
+
'Creating Account': 'アカウントの作成中',
|
|
17
|
+
'Dismiss alert': 'アラートを閉じる',
|
|
18
|
+
Email: 'メールアドレス',
|
|
19
|
+
'Enter your code': 'コードを入力',
|
|
20
|
+
'Enter your Email': 'メールアドレスを入力',
|
|
21
|
+
'Enter your phone number': '電話番号を入力',
|
|
22
|
+
'Enter your username': 'ユーザー名を入力 ',
|
|
23
|
+
'Forgot your password?': 'パスワードを忘れましたか? ',
|
|
24
|
+
'Hide password': 'パスワードを非表示',
|
|
25
|
+
'It may take a minute to arrive': '到着するまでに 1 分かかることがあります。',
|
|
26
|
+
Loading: 'ロード中',
|
|
27
|
+
'New password': '新しいパスワード',
|
|
28
|
+
or: '又は',
|
|
29
|
+
Password: 'パスワード ',
|
|
30
|
+
'Phone Number': '電話番号',
|
|
31
|
+
'Resend Code': 'コードを再送信',
|
|
32
|
+
'Reset your Password': 'パスワードをリセット',
|
|
33
|
+
'Reset your password': 'パスワードをリセットする',
|
|
34
|
+
'Send code': 'コードを送信',
|
|
35
|
+
'Send Code': 'コードを送信',
|
|
36
|
+
Sending: '送信中',
|
|
37
|
+
'Setup TOTP': 'TOTP をセットアップ',
|
|
38
|
+
'Show password': 'パスワードを表示',
|
|
39
|
+
'Sign in to your account': 'アカウントにサインイン ',
|
|
40
|
+
'Sign In with Amazon': 'Amazonでサインイン',
|
|
41
|
+
'Sign In with Apple': 'Apple でサインイン',
|
|
42
|
+
'Sign In with Facebook': 'Facebookでサインイン',
|
|
43
|
+
'Sign In with Google': 'Googleでサインイン',
|
|
44
|
+
'Sign In': 'サインイン ',
|
|
45
|
+
'Sign in': 'サインイン',
|
|
46
|
+
'Signing in': 'サインイン中',
|
|
47
|
+
Skip: 'スキップ',
|
|
48
|
+
Submit: '送信',
|
|
49
|
+
Submitting: '送信中',
|
|
50
|
+
Username: 'ユーザー名 ',
|
|
51
|
+
'Verify Contact': '連絡先を確認',
|
|
52
|
+
Verify: '確認',
|
|
53
|
+
'We Sent A Code': 'コードが送信されました',
|
|
54
|
+
'We Texted You': 'テキストが送信されました',
|
|
55
|
+
'Your code is on the way. To log in, enter the code we sent you': 'コードが途中です。ログインするには、送信したコードを入力してください。',
|
|
56
|
+
// Additional translations provided by customers
|
|
57
|
+
'An account with the given email already exists.': '入力されたメールアドレスのアカウントが既に存在します',
|
|
58
|
+
'Confirm a Code': 'コードを確認',
|
|
59
|
+
'Confirm Sign In': 'サインインする',
|
|
60
|
+
'Create account': 'アカウントを作る ',
|
|
61
|
+
'Enter your password': 'パスワードを入力 ',
|
|
62
|
+
'Enter your Password': 'パスワードを入力',
|
|
63
|
+
'Please confirm your Password': 'パスワードを入力',
|
|
64
|
+
'Forgot Password': 'パスワードを忘れた ',
|
|
65
|
+
'Have an account? ': 'アカウントを持っていますか?',
|
|
66
|
+
'Incorrect username or password': 'ユーザー名かパスワードが異なります ',
|
|
67
|
+
'Invalid password format': 'パスワードの形式が無効です ',
|
|
68
|
+
'Invalid phone number format': '不正な電話番号の形式です。\n+12345678900 の形式で入力してください',
|
|
69
|
+
'It may take a minute to arrive.': 'コードを受信するまで数分かかる場合があります。',
|
|
70
|
+
'Lost your code? ': 'コードを失くしましたか?',
|
|
71
|
+
'New Password': '新しいパスワード',
|
|
72
|
+
'No account? ': 'アカウントが無いとき ',
|
|
73
|
+
'Password attempts exceeded': 'サインインの試行回数が上限に達しました',
|
|
74
|
+
'Reset password': 'パスワードをリセット ',
|
|
75
|
+
'Reset Password': 'パスワードをリセット',
|
|
76
|
+
'Sign Out': 'サインアウト ',
|
|
77
|
+
'Sign Up': '登録 ',
|
|
78
|
+
'User already exists': '既にユーザーが存在しています ',
|
|
79
|
+
'User does not exist': 'ユーザーが存在しません ',
|
|
80
|
+
'Username cannot be empty': 'ユーザー名は入力必須です',
|
|
81
|
+
'We Emailed You': 'コードを送信しました',
|
|
82
|
+
'Your code is on the way. To log in, enter the code we emailed to': 'ログインするには、メールに記載されたコードを入力してください。送信先:',
|
|
83
|
+
'Your code is on the way. To log in, enter the code we texted to': 'ログインするには、テキストメッセージに記載されたコードを入力してください。送信先:',
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
export { jaDict };
|
|
@@ -1 +1,71 @@
|
|
|
1
|
-
const
|
|
1
|
+
const krDict = {
|
|
2
|
+
'Account recovery requires verified contact information': '계정 복구를 위해 연락처 확인이 필요합니다',
|
|
3
|
+
'Back to Sign In': '로그인으로 돌아가기',
|
|
4
|
+
'Change Password': '비밀번호 변경하기',
|
|
5
|
+
Changing: '변경중',
|
|
6
|
+
Code: '코드',
|
|
7
|
+
'Confirm Password': '비밀번호 재확인',
|
|
8
|
+
'Confirm Sign Up': '회원가입 확인',
|
|
9
|
+
'Confirm SMS Code': '휴대폰 본인 확인',
|
|
10
|
+
'Confirm TOTP Code': 'TOTP 인증번호 확인',
|
|
11
|
+
Confirm: '확인',
|
|
12
|
+
'Confirmation Code': '인증번호',
|
|
13
|
+
Confirming: '확인중',
|
|
14
|
+
'Create a new account': '회원가입',
|
|
15
|
+
'Create Account': '회원가입',
|
|
16
|
+
'Creating Account': '회원가입중',
|
|
17
|
+
'Dismiss alert': '알림 무시',
|
|
18
|
+
Email: '이메일',
|
|
19
|
+
'Enter your code': '인증번호를 입력해주세요',
|
|
20
|
+
'Enter your Email': '이메일 입력',
|
|
21
|
+
'Enter your phone number': '전화번호 입력',
|
|
22
|
+
'Enter your username': '아이디를 입력해주세요',
|
|
23
|
+
'Hide password': '비밀번호 숨기기',
|
|
24
|
+
'It may take a minute to arrive': '도착하는 데 1분 정도 걸릴 수 있습니다',
|
|
25
|
+
Loading: '로딩중',
|
|
26
|
+
'New password': '새 비밀번호',
|
|
27
|
+
or: '또는',
|
|
28
|
+
Password: '비밀번호',
|
|
29
|
+
'Phone Number': '전화번호',
|
|
30
|
+
'Resend Code': '인증번호 재전송',
|
|
31
|
+
'Reset your password': '비밀번호 재설정',
|
|
32
|
+
'Reset your Password': '비밀번호 재설정',
|
|
33
|
+
'Send code': '인증코드 보내기',
|
|
34
|
+
'Send Code': '코드 전송',
|
|
35
|
+
Sending: '전송중',
|
|
36
|
+
'Setup TOTP': 'TOTP 설정하기',
|
|
37
|
+
'Show password': '비밀번호 보이기',
|
|
38
|
+
'Sign in to your account': '로그인',
|
|
39
|
+
'Sign In with Amazon': 'Amazon 로그인',
|
|
40
|
+
'Sign In with Apple': 'Apple 로그인',
|
|
41
|
+
'Sign In with Facebook': 'Facebook 로그인',
|
|
42
|
+
'Sign In with Google': 'Google 로그인',
|
|
43
|
+
'Sign in': '로그인',
|
|
44
|
+
'Sign In': '로그인',
|
|
45
|
+
'Signing in': '로그인중',
|
|
46
|
+
Skip: '다음에 하기',
|
|
47
|
+
Submit: '확인',
|
|
48
|
+
Submitting: '확인중',
|
|
49
|
+
Username: '아이디',
|
|
50
|
+
'Verify Contact': '연락처 확인',
|
|
51
|
+
Verify: '인증',
|
|
52
|
+
'We Emailed You': '이메일을 보냄',
|
|
53
|
+
'We Sent A Code': '코드를 보냄',
|
|
54
|
+
'We Texted You': '문자 메시지를 보냄',
|
|
55
|
+
'Your code is on the way. To log in, enter the code we emailed to': '코드가 전송 중입니다. 로그인하려면 이메일로 전송한 코드를 입력하세요',
|
|
56
|
+
'Your code is on the way. To log in, enter the code we sent you': '코드가 전송 중입니다. 로그인하려면 전송한 코드를 입력하세요',
|
|
57
|
+
'Your code is on the way. To log in, enter the code we texted to': '코드가 전송 중입니다. 로그인하려면 문자 메시지로 전송한 코드를 입력하세요',
|
|
58
|
+
// Additional translations provided by customers
|
|
59
|
+
Birthdate: '생년월일',
|
|
60
|
+
'Family Name': '성',
|
|
61
|
+
'Forgot your password?': '비밀번호를 잊으셨나요?',
|
|
62
|
+
'Given Name': '이름',
|
|
63
|
+
Name: '성함',
|
|
64
|
+
Nickname: '닉네임',
|
|
65
|
+
'Preferred Username': '닉네임',
|
|
66
|
+
Profile: '프로필',
|
|
67
|
+
'Reset Password': '비밀번호 재설정',
|
|
68
|
+
Website: '웹사이트',
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
export { krDict };
|
|
@@ -1 +1,95 @@
|
|
|
1
|
-
const
|
|
1
|
+
const nbDict = {
|
|
2
|
+
'Account recovery requires verified contact information': 'Gjenoppretting av konto krever verifisert kontaktinformajson',
|
|
3
|
+
'Add your Profile': 'Legg til profilen din',
|
|
4
|
+
'Add your Website': 'Legg til nettsiden din',
|
|
5
|
+
'Back to Sign In': 'Tilbake til innlogging',
|
|
6
|
+
'Change Password': 'Bytt passord',
|
|
7
|
+
Changing: 'Endre',
|
|
8
|
+
Code: 'Kode',
|
|
9
|
+
'Confirm Password': 'Bekreft passordet',
|
|
10
|
+
'Confirm Sign Up': 'Bekreft registrering',
|
|
11
|
+
'Confirm SMS Code': 'Bekreft SMS-kode',
|
|
12
|
+
'Confirm TOTP Code': 'Bekreft TOTP-kode',
|
|
13
|
+
Confirm: 'Bekreft',
|
|
14
|
+
'Confirmation Code': 'Bekreftelseskode',
|
|
15
|
+
Confirming: 'Bekrefter',
|
|
16
|
+
'Create a new account': 'Opprett en ny konto',
|
|
17
|
+
'Create Account': 'Opprett konto',
|
|
18
|
+
'Creating Account': 'Oppretter konto',
|
|
19
|
+
'Dismiss alert': 'Avvis varsel',
|
|
20
|
+
Email: 'E-post',
|
|
21
|
+
'Enter your Birthdate': 'Skriv inn fødselsdatoen din',
|
|
22
|
+
'Enter your code': 'Skriv inn koden din',
|
|
23
|
+
'Enter your Confirmation Code': 'Skriv inn bekreftelseskoden din',
|
|
24
|
+
'Enter your Email': 'Skriv inn e-postadressen din',
|
|
25
|
+
'Enter your Family Name': 'Skriv inn etternavnet ditt',
|
|
26
|
+
'Enter your Given Name': 'Skriv inn fornavnet ditt',
|
|
27
|
+
'Enter your Middle Name': 'Skriv inn mellomnavnet ditt',
|
|
28
|
+
'Enter your Name': 'Skriv inn navnet ditt',
|
|
29
|
+
'Enter your Nickname': 'Skriv inn kallenavnet ditt',
|
|
30
|
+
'Enter your Password': 'Skriv inn passordet ditt',
|
|
31
|
+
'Enter your phone number': 'Skriv inn telefonnummeret ditt',
|
|
32
|
+
'Enter your Preferred Username': 'Skriv inn det foretrukne brukernavnet ditt',
|
|
33
|
+
'Enter your username': 'Skriv inn brukernavnet ditt',
|
|
34
|
+
'Forgot password?': 'Glemt passord?',
|
|
35
|
+
'Forgot your password?': 'Glemt passordet ditt?',
|
|
36
|
+
'Hide password': 'Skjul passordet',
|
|
37
|
+
'It may take a minute to arrive': 'Det kan ta et minutt for å komme frem',
|
|
38
|
+
Loading: 'Laster inn',
|
|
39
|
+
'New password': 'Nytt passord',
|
|
40
|
+
or: 'eller',
|
|
41
|
+
Password: 'Passord',
|
|
42
|
+
'Phone Number': 'Telefonnummer',
|
|
43
|
+
'Please confirm your Password': 'Vennligst bekreft passordet ditt',
|
|
44
|
+
'Resend Code': 'Send koden på nytt',
|
|
45
|
+
'Reset your password': 'Nullstill passordet ditt',
|
|
46
|
+
'Reset your Password': 'Nullstill passordet ditt',
|
|
47
|
+
'Send code': 'Send kode',
|
|
48
|
+
'Send Code': 'Send kode',
|
|
49
|
+
Sending: 'Sender',
|
|
50
|
+
'Setup TOTP': 'Konfigurer TOTP',
|
|
51
|
+
'Show password': 'Vis passordet',
|
|
52
|
+
'Sign in to your account': 'Logg inn på kontoen din',
|
|
53
|
+
'Sign In with Amazon': 'Logg inn med Amazon',
|
|
54
|
+
'Sign In with Apple': 'Logg inn med Apple',
|
|
55
|
+
'Sign In with Facebook': 'Logg inn med Facebook',
|
|
56
|
+
'Sign In with Google': 'Logg inn med Google',
|
|
57
|
+
'Sign in': 'Logg inn',
|
|
58
|
+
'Sign In': 'Logg inn',
|
|
59
|
+
'Signing in': 'Logger inn',
|
|
60
|
+
Skip: 'Hopp over',
|
|
61
|
+
Submit: 'Send inn',
|
|
62
|
+
Submitting: 'Sender inn',
|
|
63
|
+
Username: 'Brukernavn',
|
|
64
|
+
'Verify Contact': 'Bekreft kontakt',
|
|
65
|
+
Verify: 'Bekreft',
|
|
66
|
+
'We Emailed You': 'Vi sendte deg en e-post',
|
|
67
|
+
'We Sent A Code': 'Vi sendte en kode',
|
|
68
|
+
'We Texted You': 'Vi sendte deg en tekstmelding',
|
|
69
|
+
'Your code is on the way. To log in, enter the code we emailed to': 'Koden din er på vei. For å logge inn, skriv inn koden vi sendte e-post til',
|
|
70
|
+
'Your code is on the way. To log in, enter the code we sent you': 'Koden din er på vei. For å logge inn, skriv inn koden vi sendte deg',
|
|
71
|
+
'Your code is on the way. To log in, enter the code we texted to': 'Koden din er på vei. For å logge inn, skriv inn koden vi sendte tekstmelding til',
|
|
72
|
+
// Additional translations provided by customers
|
|
73
|
+
'An account with the given email already exists.': 'Det finnes allerede en konto med denne e-postadressen',
|
|
74
|
+
'Confirm a Code': 'Bekreft koden',
|
|
75
|
+
'Confirm Sign In': 'Bekreft innlogging',
|
|
76
|
+
'Create account': 'Opprett konto',
|
|
77
|
+
'Enter your password': 'Skriv inn passordet ditt',
|
|
78
|
+
'Forgot Password': 'Glemt passordet',
|
|
79
|
+
'Have an account? ': 'Har en konto allerede? ',
|
|
80
|
+
'Incorrect username or password': 'Feil brukernavn eller passord',
|
|
81
|
+
'Invalid password format': 'Ugyldig passordformat',
|
|
82
|
+
'Invalid phone number format': 'Ugyldig telefonnummerformat',
|
|
83
|
+
'Lost your code? ': 'Mistet koden? ',
|
|
84
|
+
'New Password': 'Nytt passord',
|
|
85
|
+
'No account? ': 'Ingen konto? ',
|
|
86
|
+
'Password attempts exceeded': 'For mange mislykkede passordforsøk',
|
|
87
|
+
'Reset password': 'Nullstill passord',
|
|
88
|
+
'Sign Out': 'Logg ut',
|
|
89
|
+
'Sign Up': 'Registrering',
|
|
90
|
+
'User already exists': 'Brukeren finnes allerede',
|
|
91
|
+
'User does not exist': 'Brukeren finnes ikke',
|
|
92
|
+
'Username cannot be empty': 'Brukernavnet kan ikke være tomt',
|
|
93
|
+
};
|
|
94
|
+
|
|
95
|
+
export { nbDict };
|
|
@@ -1 +1,67 @@
|
|
|
1
|
-
const
|
|
1
|
+
const nlDict = {
|
|
2
|
+
'Account recovery requires verified contact information': 'Accountherstel vereist geverifieerde contactgegevens',
|
|
3
|
+
'Back to Sign In': 'Terug naar inloggen',
|
|
4
|
+
'Change Password': 'Wachtwoord wijzigen',
|
|
5
|
+
Changing: 'Wordt aangepast',
|
|
6
|
+
Code: 'Code',
|
|
7
|
+
'Confirm Password': 'Bevestig Wachtwoord',
|
|
8
|
+
'Confirm Sign Up': 'Bevestig inschrijving',
|
|
9
|
+
'Confirm SMS Code': 'Bevestig SMS Code',
|
|
10
|
+
'Confirm TOTP Code': 'Bevestig TOTP Code',
|
|
11
|
+
Confirm: 'Bevestig',
|
|
12
|
+
'Confirmation Code': 'Bevestigingscode',
|
|
13
|
+
Confirming: 'Bevestigen',
|
|
14
|
+
'Create a new account': 'Nieuw account aanmaken',
|
|
15
|
+
'Create Account': 'Account aanmaken',
|
|
16
|
+
'Creating Account': 'Account wordt aangemaakt',
|
|
17
|
+
'Dismiss alert': 'Waarschuwing sluiten',
|
|
18
|
+
Email: 'E-mail',
|
|
19
|
+
'Enter your code': 'Vul je code in',
|
|
20
|
+
'Enter your Email': 'Vul je e-mail in',
|
|
21
|
+
'Enter your Password': 'Vul je wachtwoord in',
|
|
22
|
+
'Enter your phone number': 'Vul je telefoonnummer in',
|
|
23
|
+
'Enter your username': 'Vul je gebruikersnaam in',
|
|
24
|
+
'Enter your Username': 'Vul je gebruikersnaam in',
|
|
25
|
+
'Forgot your password?': 'Wachtwoord vergeten? ',
|
|
26
|
+
'Hide password': 'Verberg wachtwoord',
|
|
27
|
+
'It may take a minute to arrive': 'Het kan even duren voordat deze aankomt',
|
|
28
|
+
Loading: 'Laden',
|
|
29
|
+
'New password': 'Nieuw wachtwoord',
|
|
30
|
+
'New Password': 'Nieuw Wachtwoord',
|
|
31
|
+
or: 'of',
|
|
32
|
+
Password: 'Wachtwoord',
|
|
33
|
+
'Phone Number': 'Telefoonnummer',
|
|
34
|
+
'Please confirm your Password': 'Bevestig je wachtwoord',
|
|
35
|
+
'Resend Code': 'Verstuur code nogmaals',
|
|
36
|
+
'Reset Password': 'Wachtwoord resetten',
|
|
37
|
+
'Reset your password': 'Reset je wachtwoord',
|
|
38
|
+
'Reset your Password': 'Wachtwoord resetten',
|
|
39
|
+
'Send code': 'Verstuur code',
|
|
40
|
+
'Send Code': 'Verstuur Code',
|
|
41
|
+
Sending: 'Versturen',
|
|
42
|
+
'Setup TOTP': 'TOTP Instellingen',
|
|
43
|
+
'Show password': 'Toon wachtwoord',
|
|
44
|
+
'Sign in to your account': 'Inloggen op je account',
|
|
45
|
+
'Sign In with Amazon': 'Inloggen met Amazon',
|
|
46
|
+
'Sign In with Apple': 'Inloggen met Apple',
|
|
47
|
+
'Sign In with Facebook': 'Inloggen met Facebook',
|
|
48
|
+
'Sign In with Google': 'Inloggen met Google',
|
|
49
|
+
'Sign in': 'Inloggen',
|
|
50
|
+
'Sign In': 'Inloggen',
|
|
51
|
+
'Signing in': 'Inloggen',
|
|
52
|
+
Skip: 'Overslaan',
|
|
53
|
+
Submit: 'Versturen',
|
|
54
|
+
Submitting: 'Wordt verstuurd',
|
|
55
|
+
Username: 'Gebruikersnaam',
|
|
56
|
+
'Verify Contact': 'Verifieer Contact',
|
|
57
|
+
Verify: 'Verifieer',
|
|
58
|
+
'We Emailed You': 'We hebben u een e-mail gestuurd',
|
|
59
|
+
'We Sent A Code': 'We hebben een code gestuurd',
|
|
60
|
+
'We Texted You': 'We hebben u een sms gestuurd',
|
|
61
|
+
'Your code is on the way. To log in, enter the code we emailed to': 'Uw code is onderweg. Om in te loggen, voer de code in die we gemaild hebben naar',
|
|
62
|
+
'Your code is on the way. To log in, enter the code we sent you': 'Uw code is onderweg. Om in te loggen, voer de code in die we u hebben gestuurd',
|
|
63
|
+
'Your code is on the way. To log in, enter the code we texted to': 'Uw code is onderweg. Om in te loggen, voer de code in die we hebben gestuurd naar',
|
|
64
|
+
'Your passwords must match': 'Je wachtwoorden moeten overeenkomen',
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
export { nlDict };
|