@aws-amplify/ui 5.8.1 → 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 +298 -684
- package/dist/styles.layer.css +6115 -0
- package/dist/theme.css +93 -156
- 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/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,71 @@
|
|
|
1
|
-
const
|
|
1
|
+
const plDict = {
|
|
2
|
+
'Account recovery requires verified contact information': 'Odzyskanie konta wymaga zweryfikowanych danych kontaktowych',
|
|
3
|
+
'Back to Sign In': 'Powrót do logowania',
|
|
4
|
+
'Change Password': 'Zmień hasło',
|
|
5
|
+
Changing: 'Zmienianie',
|
|
6
|
+
Code: 'Kod',
|
|
7
|
+
'Confirm Password': 'Potwierdź Hasło',
|
|
8
|
+
'Confirm Sign Up': 'Potwierdź rejestrację',
|
|
9
|
+
'Confirm SMS Code': 'Potwierdź kod SMS',
|
|
10
|
+
'Confirm TOTP Code': 'Potwierdź hasło jednorazowe',
|
|
11
|
+
Confirm: 'Potwierdź',
|
|
12
|
+
'Confirmation Code': 'Kod potwierdzenia',
|
|
13
|
+
Confirming: 'Potwierdzanie',
|
|
14
|
+
'Create a new account': 'Utwórz nowe konto',
|
|
15
|
+
'Create Account': 'Utwórz konto',
|
|
16
|
+
'Creating Account': 'Tworzenie konta',
|
|
17
|
+
'Dismiss alert': 'Odrzuć alert',
|
|
18
|
+
Email: 'E-mail',
|
|
19
|
+
'Enter your code': 'Wprowadź swój kod',
|
|
20
|
+
'Enter your Email': 'Wpisz swój adres e-mail',
|
|
21
|
+
'Enter your phone number': 'Wpisz swój numer telefonu',
|
|
22
|
+
'Enter your username': 'Wprowadź swoją nazwę użytkownika',
|
|
23
|
+
'Forgot your password?': 'Zapomniałeś hasła? ',
|
|
24
|
+
'Hide password': 'Ukryj hasło',
|
|
25
|
+
'It may take a minute to arrive': 'Może to chwilę potrwać',
|
|
26
|
+
Loading: 'Ładowanie',
|
|
27
|
+
'New password': 'Nowe hasło',
|
|
28
|
+
or: 'albo',
|
|
29
|
+
Password: 'Hasło',
|
|
30
|
+
'Phone Number': 'Numer telefonu',
|
|
31
|
+
'Resend Code': 'Wyślij kod ponownie',
|
|
32
|
+
'Reset your password': 'Zresetuj swoje hasło',
|
|
33
|
+
'Reset your Password': 'Zresetuj swoje hasło',
|
|
34
|
+
'Send code': 'Wyślij kod',
|
|
35
|
+
'Send Code': 'Zresetuj hasło',
|
|
36
|
+
Sending: 'Wysyłanie',
|
|
37
|
+
'Setup TOTP': 'Konfiguruj TOTP',
|
|
38
|
+
'Show password': 'Pokaż hasło',
|
|
39
|
+
'Sign in to your account': 'Zaloguj się na swoje konto',
|
|
40
|
+
'Sign In with Amazon': 'Zaloguj z Amazon',
|
|
41
|
+
'Sign In with Apple': 'Zaloguj z Apple',
|
|
42
|
+
'Sign In with Facebook': 'Zaloguj z Facebook',
|
|
43
|
+
'Sign In with Google': 'Zaloguj z Google',
|
|
44
|
+
'Sign In': 'Logowanie',
|
|
45
|
+
'Sign in': 'Zaloguj',
|
|
46
|
+
'Signing in': 'Logowanie',
|
|
47
|
+
Skip: 'Pomiń',
|
|
48
|
+
Submit: 'Wyślij',
|
|
49
|
+
Submitting: 'Wysyłanie',
|
|
50
|
+
Username: 'Nazwa użytkownika',
|
|
51
|
+
'Verify Contact': 'Weryfikacja danych kontaktowych',
|
|
52
|
+
Verify: 'Zweryfikuj',
|
|
53
|
+
// Additional translations provided by customers
|
|
54
|
+
Birthdate: 'Data urodzenia',
|
|
55
|
+
'Family Name': 'Nazwisko',
|
|
56
|
+
'Given Name': 'Pierwsze imię',
|
|
57
|
+
'Middle Name': 'Drugie imię',
|
|
58
|
+
Name: 'Imię i nazwisko',
|
|
59
|
+
Nickname: 'Pseudonim',
|
|
60
|
+
'Preferred Username': 'Preferowana nazwa użytkownika',
|
|
61
|
+
Profile: 'Profil',
|
|
62
|
+
Website: 'Strona internetowa',
|
|
63
|
+
'We Emailed You': 'Wysłaliśmy Ci wiadomość e-mail',
|
|
64
|
+
'We Sent A Code': 'Wysłaliśmy kod',
|
|
65
|
+
'We Texted You': 'Wysłaliśmy Ci wiadomość SMS',
|
|
66
|
+
'Your code is on the way. To log in, enter the code we emailed to': 'Twój kod został wysłany. Aby się zalogować, wprowadź kod wysłany na adres e-mail',
|
|
67
|
+
'Your code is on the way. To log in, enter the code we sent you': 'Twój kod został wysłany. Aby się zalogować, wprowadź wysłany do Ciebie kod',
|
|
68
|
+
'Your code is on the way. To log in, enter the code we texted to': 'Twój kod został wysłany. Aby się zalogować, wprowadź kod wysłany do Ciebie w wiadomości SMS pod numer',
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
export { plDict };
|
|
@@ -1 +1,61 @@
|
|
|
1
|
-
const
|
|
1
|
+
const ptDict = {
|
|
2
|
+
'Account recovery requires verified contact information': 'A recuperação da conta requer informações de contato verificadas',
|
|
3
|
+
'Back to Sign In': 'Voltar para Entrar',
|
|
4
|
+
'Change Password': 'Mudar senha',
|
|
5
|
+
Changing: 'Mudando',
|
|
6
|
+
Code: 'Código',
|
|
7
|
+
'Confirm Password': 'Confirme a Senha',
|
|
8
|
+
'Confirm Sign Up': 'Confirmar inscrição',
|
|
9
|
+
'Confirm SMS Code': 'Confirme o código SMS',
|
|
10
|
+
'Confirm TOTP Code': 'Confirme o código TOTP',
|
|
11
|
+
Confirm: 'confirme',
|
|
12
|
+
'Confirmation Code': 'Código de confirmação',
|
|
13
|
+
Confirming: 'Confirmando',
|
|
14
|
+
'Create a new account': 'Criar uma nova conta',
|
|
15
|
+
'Create Account': 'Criar Conta',
|
|
16
|
+
'Creating Account': 'Criando conta',
|
|
17
|
+
'Dismiss alert': 'Descartar alerta',
|
|
18
|
+
Email: 'O email',
|
|
19
|
+
'Enter your code': 'Insira seu código',
|
|
20
|
+
'Enter your Email': 'Digite seu e-mail',
|
|
21
|
+
'Enter your phone number': 'Digite seu número de telefone',
|
|
22
|
+
'Enter your username': 'entre com seu nome de usuário',
|
|
23
|
+
'Forgot your password?': 'Esqueceu sua senha? ',
|
|
24
|
+
'Hide password': 'Esconder a senha',
|
|
25
|
+
'It may take a minute to arrive': 'Pode levar um minuto para chegar',
|
|
26
|
+
Loading: 'Carregando',
|
|
27
|
+
'New password': 'Nova Senha',
|
|
28
|
+
or: 'ou',
|
|
29
|
+
Password: 'Senha',
|
|
30
|
+
'Phone Number': 'Número de telefone',
|
|
31
|
+
'Resend Code': 'Reenviar código',
|
|
32
|
+
'Reset your password': 'Redefina sua senha',
|
|
33
|
+
'Reset your Password': 'Redefina sua senha',
|
|
34
|
+
'Send code': 'Enviar código',
|
|
35
|
+
'Send Code': 'Enviar código',
|
|
36
|
+
Sending: 'Enviando',
|
|
37
|
+
'Setup TOTP': 'Configurar TOTP',
|
|
38
|
+
'Show password': 'Mostrar senha',
|
|
39
|
+
'Sign in to your account': 'Faça login em sua conta',
|
|
40
|
+
'Sign In with Amazon': 'Entrar com a Amazon',
|
|
41
|
+
'Sign In with Apple': 'Entrar com a Apple',
|
|
42
|
+
'Sign In with Facebook': 'Entrar com o Facebook',
|
|
43
|
+
'Sign In with Google': 'Faça login no Google',
|
|
44
|
+
'Sign in': 'Entrar',
|
|
45
|
+
'Sign In': 'Entrar',
|
|
46
|
+
'Signing in': 'Entrando',
|
|
47
|
+
Skip: 'Pular',
|
|
48
|
+
Submit: 'Enviar',
|
|
49
|
+
Submitting: 'Enviando',
|
|
50
|
+
Username: 'Nome do usuário',
|
|
51
|
+
'Verify Contact': 'Verificar contato',
|
|
52
|
+
Verify: 'Verificar',
|
|
53
|
+
'We Emailed You': 'Enviamos um e-mail para você',
|
|
54
|
+
'We Sent A Code': 'Enviamos um código',
|
|
55
|
+
'We Texted You': 'Enviamos um SMS para você',
|
|
56
|
+
'Your code is on the way. To log in, enter the code we emailed to': 'Seu código está a caminho. Para fazer login, insira o código para o qual enviamos um e-mail',
|
|
57
|
+
'Your code is on the way. To log in, enter the code we sent you': 'Seu código está a caminho. Para fazer login, insira o código que enviamos para você',
|
|
58
|
+
'Your code is on the way. To log in, enter the code we texted to': 'Seu código está a caminho. Para fazer login, insira o código para o qual enviamos uma mensagem de texto',
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
export { ptDict };
|
|
@@ -1 +1,61 @@
|
|
|
1
|
-
const
|
|
1
|
+
const ruDict = {
|
|
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': 'Подтверждение CMC-Код',
|
|
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': 'Доставка может занять некоторое время',
|
|
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 Emailed You': 'Мы отправили вам электронное письмо',
|
|
54
|
+
'We Sent A Code': 'Мы отправили код',
|
|
55
|
+
'We Texted You': 'Мы отправили вам текстовое сообщение',
|
|
56
|
+
'Your code is on the way. To log in, enter the code we emailed to': 'Ваш код отправлен. Чтобы войти в систему, введите код, который мы отправили по электронной почте',
|
|
57
|
+
'Your code is on the way. To log in, enter the code we sent you': 'Ваш код отправлен. Чтобы войти в систему, введите код, который мы послали вам',
|
|
58
|
+
'Your code is on the way. To log in, enter the code we texted to': 'Ваш код отправлен. Чтобы войти в систему, введите код, который мы отправили текстовым сообщением',
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
export { ruDict };
|
|
@@ -1 +1,82 @@
|
|
|
1
|
-
const
|
|
1
|
+
const svDict = {
|
|
2
|
+
'Account recovery requires verified contact information': 'För att återställa kontot behöver du ett verifierat konto',
|
|
3
|
+
'Back to Sign In': 'Tillbaka till inloggningen',
|
|
4
|
+
'Change Password': 'Byt lösenord',
|
|
5
|
+
Changing: 'Ändra',
|
|
6
|
+
Code: 'Kod',
|
|
7
|
+
'Confirm Password': 'Bekräfta lösenord',
|
|
8
|
+
'Confirm Sign Up': 'Bekräfta registrering',
|
|
9
|
+
'Confirm SMS Code': 'Bekräfta SMS-kod',
|
|
10
|
+
'Confirm TOTP Code': 'Bekräfta TOTP-kod',
|
|
11
|
+
Confirm: 'Bekräfta',
|
|
12
|
+
'Confirmation Code': 'Verifikationskod',
|
|
13
|
+
Confirming: 'Bekräftar',
|
|
14
|
+
'Create a new account': 'Skapa ett nytt konto',
|
|
15
|
+
'Create Account': 'Skapa konto',
|
|
16
|
+
'Creating Account': 'Skapar konto',
|
|
17
|
+
'Dismiss alert': 'Avvisa varning',
|
|
18
|
+
Email: 'E-post',
|
|
19
|
+
'Enter your code': 'Skriv din kod',
|
|
20
|
+
'Enter your Email': 'Fyll i din e-post',
|
|
21
|
+
'Enter your phone number': 'Ange ditt telefonnummer',
|
|
22
|
+
'Enter your username': 'Ange ditt användarnamn',
|
|
23
|
+
'Forgot your password?': 'Glömt ditt lösenord? ',
|
|
24
|
+
'Hide password': 'Dölj lösenord',
|
|
25
|
+
'It may take a minute to arrive': 'Det kan ta en minut att komma fram',
|
|
26
|
+
Loading: 'Laddar',
|
|
27
|
+
'New password': 'Nytt lösenord',
|
|
28
|
+
or: 'eller',
|
|
29
|
+
Password: 'Lösenord',
|
|
30
|
+
'Phone Number': 'Telefonnummer',
|
|
31
|
+
'Resend Code': 'Skicka koden igen',
|
|
32
|
+
'Reset your password': 'Återställ ditt lösenord',
|
|
33
|
+
'Reset your Password': 'Återställ ditt lösenord',
|
|
34
|
+
'Send code': 'Skicka kod',
|
|
35
|
+
'Send Code': 'Skicka kod',
|
|
36
|
+
Sending: 'Skickar',
|
|
37
|
+
'Setup TOTP': 'Konfigurera TOTP',
|
|
38
|
+
'Show password': 'Visa lösenord',
|
|
39
|
+
'Sign in to your account': 'Logga in till ditt konto',
|
|
40
|
+
'Sign In with Amazon': 'Logga in med Amazon',
|
|
41
|
+
'Sign In with Apple': 'Logga in med Apple',
|
|
42
|
+
'Sign In with Facebook': 'Logga in med Facebook',
|
|
43
|
+
'Sign In with Google': 'Logga in med Google',
|
|
44
|
+
'Sign in': 'Logga in',
|
|
45
|
+
'Sign In': 'Logga in',
|
|
46
|
+
'Signing in': 'Loggar in',
|
|
47
|
+
Skip: 'Hoppa över',
|
|
48
|
+
Submit: 'Skicka',
|
|
49
|
+
Submitting: 'Skickar in',
|
|
50
|
+
Username: 'Användarnamn',
|
|
51
|
+
'Verify Contact': 'Verifiera kontakt',
|
|
52
|
+
Verify: 'Verifiera',
|
|
53
|
+
'We Sent A Code': 'Vi skickade en kod',
|
|
54
|
+
'We Texted You': 'Vi sms:ade dig',
|
|
55
|
+
'Your code is on the way. To log in, enter the code we emailed to': 'Din kod är på väg. För att logga in, ange koden vi mejlade till',
|
|
56
|
+
'Your code is on the way. To log in, enter the code we sent you': 'Din kod är på väg. För att logga in, ange koden vi skickade till dig',
|
|
57
|
+
'Your code is on the way. To log in, enter the code we texted to': 'Din kod är på väg. För att logga in, ange koden vi sms:ade till',
|
|
58
|
+
// Additional translations provided by customers
|
|
59
|
+
'An account with the given email already exists.': 'Det finns redan ett konto med denna e-postadress',
|
|
60
|
+
'Confirm a Code': 'Bekräfta koden',
|
|
61
|
+
'Confirm Sign In': 'Bekräfta inloggning',
|
|
62
|
+
'Create account': 'Skapa konto',
|
|
63
|
+
'Enter your password': 'Ange ditt lösenord',
|
|
64
|
+
'Forgot Password': 'Glömt lösenordet',
|
|
65
|
+
'Have an account? ': 'Redan registrerad? ',
|
|
66
|
+
'Incorrect username or password': 'Felaktigt användarnamn eller lösenord',
|
|
67
|
+
'Invalid password format': 'Ogiltigt lösenordsformat',
|
|
68
|
+
'Invalid phone number format': `Ogiltigt format för telefonnummer`,
|
|
69
|
+
'Lost your code? ': 'Förlorat koden? ',
|
|
70
|
+
'New Password': 'Nytt lösenord',
|
|
71
|
+
'No account? ': 'Inget konto? ',
|
|
72
|
+
'Password attempts exceeded': 'Maximalt antal felaktiga inloggningsförsök har uppnåtts',
|
|
73
|
+
'Reset password': 'Återställ lösenord',
|
|
74
|
+
'Sign Out': 'Logga ut',
|
|
75
|
+
'Sign Up': 'Registrering',
|
|
76
|
+
'User already exists': 'Användaren finns redan',
|
|
77
|
+
'User does not exist': 'Användaren finns inte',
|
|
78
|
+
'Username cannot be empty': 'Användarnamnet kan inte vara tomt',
|
|
79
|
+
'We Emailed You': 'Vi har skickat e-post till dig',
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
export { svDict };
|
|
@@ -1 +1,76 @@
|
|
|
1
|
-
const
|
|
1
|
+
const trDict = {
|
|
2
|
+
'Account recovery requires verified contact information': 'Hesap kurtarma, doğrulanmış iletişim bilgilerini gerektirir',
|
|
3
|
+
'Back to Sign In': 'Oturum Açmaya Geri Dön',
|
|
4
|
+
'Change Password': 'Şifreyi Değiştir',
|
|
5
|
+
Changing: 'Değiştiriliyor',
|
|
6
|
+
Code: 'Kod',
|
|
7
|
+
'Confirm Password': 'Şifreyi Doğrula',
|
|
8
|
+
'Confirm Sign Up': 'Kayıt İşlemini Doğrula',
|
|
9
|
+
'Confirm SMS Code': 'SMS Kodunu Doğrula',
|
|
10
|
+
'Confirm TOTP Code': 'Tek Kullanımlık Şifreyi Doğrula',
|
|
11
|
+
Confirm: 'Doğrula',
|
|
12
|
+
'Confirmation Code': 'Doğrulama Kodu',
|
|
13
|
+
Confirming: 'Doğrulanıyor',
|
|
14
|
+
'Create a new account': 'Yeni bir hesap oluştur',
|
|
15
|
+
'Create Account': 'Hesap Oluştur',
|
|
16
|
+
'Creating Account': 'Hesap Oluşturuluyor',
|
|
17
|
+
'Dismiss alert': 'Uyarıyı reddet',
|
|
18
|
+
Email: 'E-posta',
|
|
19
|
+
'Enter your code': 'Kodu girin',
|
|
20
|
+
'Enter your Email': 'E-posta adresinizi girin',
|
|
21
|
+
'Enter your phone number': 'Telefon numaranızı girin',
|
|
22
|
+
'Enter your username': 'Kullanıcı adınızı girin',
|
|
23
|
+
'Forgot your password?': 'Şifrenizi mi unuttunuz?',
|
|
24
|
+
'Hide password': 'Şifreyi gizle',
|
|
25
|
+
'It may take a minute to arrive': 'Kodun gelmesi bir dakika sürebilir',
|
|
26
|
+
Loading: 'Yükleniyor',
|
|
27
|
+
'New password': 'Yeni şifre',
|
|
28
|
+
or: 'veya',
|
|
29
|
+
Password: 'Şifre',
|
|
30
|
+
'Phone Number': 'Telefon Numarası',
|
|
31
|
+
'Resend Code': 'Kodu Yeniden Gönder',
|
|
32
|
+
'Reset your password': 'Şifrenizi sıfırlayın',
|
|
33
|
+
'Reset your Password': 'Şifrenizi Sıfırlayın',
|
|
34
|
+
'Send code': 'Kod gönder',
|
|
35
|
+
'Send Code': 'Kod Gönder',
|
|
36
|
+
Sending: 'Gönderiliyor',
|
|
37
|
+
'Setup TOTP': 'Tek kullanımlık şifre kurulumu yap',
|
|
38
|
+
'Show password': 'Şifreyi göster',
|
|
39
|
+
'Sign in to your account': 'Hesabınızda oturum açın',
|
|
40
|
+
'Sign In with Amazon': 'Amazon ile Oturum Aç',
|
|
41
|
+
'Sign In with Apple': 'Apple ile Oturum Aç',
|
|
42
|
+
'Sign In with Facebook': 'Facebook ile Oturum Aç',
|
|
43
|
+
'Sign In with Google': 'Google ile Oturum Aç',
|
|
44
|
+
'Sign in': 'Oturum aç',
|
|
45
|
+
'Sign In': 'Oturum Aç',
|
|
46
|
+
'Signing in': 'Oturum açılıyor',
|
|
47
|
+
Skip: 'Atla',
|
|
48
|
+
Submit: 'Gönder',
|
|
49
|
+
Submitting: 'Gönderiliyor',
|
|
50
|
+
Username: 'Kullanıcı adı',
|
|
51
|
+
'Verify Contact': 'Kişiyi Doğrula',
|
|
52
|
+
Verify: 'Doğrula',
|
|
53
|
+
'We Emailed You': 'Size E-posta Gönderdik',
|
|
54
|
+
'We Sent A Code': 'Bir Kod Gönderdik',
|
|
55
|
+
'We Texted You': 'Size Mesaj Gönderdik',
|
|
56
|
+
'Your code is on the way. To log in, enter the code we emailed to': 'Kodunuz yolda. Oturum açmak için, gönderdiğimiz e-postadaki kodu girin',
|
|
57
|
+
'Your code is on the way. To log in, enter the code we sent you': 'Kodunuz yolda. Oturum açmak için, size gönderdiğimiz kodu girin',
|
|
58
|
+
'Your code is on the way. To log in, enter the code we texted to': 'Kodunuz yolda. Oturum açmak için, gönderdiğimiz mesajdaki kodu girin',
|
|
59
|
+
// Additional translations provided by customers
|
|
60
|
+
'An account with the given email already exists.': 'Bu e-postaya ait zaten bir hesap var.',
|
|
61
|
+
'Confirm Sign In': 'Oturum Açmayı Doğrula',
|
|
62
|
+
'Have an account? ': 'Hesabınız var mı? ',
|
|
63
|
+
'Incorrect username or password': 'Yanlış kullanıcı adı ya da şifre',
|
|
64
|
+
'Invalid password format': 'Geçersiz parola formatı',
|
|
65
|
+
'Invalid phone number format': 'Geçersiz telefon numarası formatı',
|
|
66
|
+
'Lost your code? ': 'Kodu mu kaybettiniz? ',
|
|
67
|
+
'No account? ': 'Hesabınız yok mu? ',
|
|
68
|
+
'Password attempts exceeded': 'Maksimum oturum açma girişimi aşıldı',
|
|
69
|
+
'Sign Out': 'Çıkış yap',
|
|
70
|
+
'Sign Up': 'Kayıt Ol',
|
|
71
|
+
'User already exists': 'Bu kullanıcı zaten var',
|
|
72
|
+
'User does not exist': 'Böyle bir kullanıcı mevcut değil',
|
|
73
|
+
'Username cannot be empty': 'Kullanıcı adı boş olamaz',
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
export { trDict };
|
|
@@ -1 +1,84 @@
|
|
|
1
|
-
const
|
|
1
|
+
const uaDict = {
|
|
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: 'Email',
|
|
19
|
+
'Enter your code': 'Введіть код',
|
|
20
|
+
'Enter your Email': 'Введіть ваш email',
|
|
21
|
+
'Enter your phone number': 'Введіть ваш номер телефону',
|
|
22
|
+
'Enter your username': 'Введіть ваше імʼя користувача',
|
|
23
|
+
'Forgot password?': 'Забули пароль?',
|
|
24
|
+
'Forgot your password?': 'Забули ваш пароль?',
|
|
25
|
+
'Hide password': 'Сховати пароль',
|
|
26
|
+
'It may take a minute to arrive': 'Доставка може тривати хвилину',
|
|
27
|
+
Loading: 'Загружаємо',
|
|
28
|
+
'New password': 'Новий пароль',
|
|
29
|
+
or: 'або',
|
|
30
|
+
Password: 'Пароль',
|
|
31
|
+
'Phone Number': 'Номер Телефону',
|
|
32
|
+
'Resend Code': 'Відправити код повторно',
|
|
33
|
+
'Reset your password': 'Скинути пароль',
|
|
34
|
+
'Reset your Password': 'Скинути пароль',
|
|
35
|
+
'Send code': 'Відправити код',
|
|
36
|
+
'Send Code': 'Відправити код',
|
|
37
|
+
Sending: 'Відправляємо',
|
|
38
|
+
'Setup TOTP': 'Налаштувати TOTP',
|
|
39
|
+
'Show password': 'Показати пароль',
|
|
40
|
+
'Sign in to your account': 'Увійти у ваш обліковий запис',
|
|
41
|
+
'Sign In with Amazon': 'Увійти з Amazon',
|
|
42
|
+
'Sign In with Apple': 'Увійти з Apple',
|
|
43
|
+
'Sign In with Facebook': 'Увійти з Facebook',
|
|
44
|
+
'Sign In with Google': 'Увійти з Google',
|
|
45
|
+
'Sign in': 'Увійти',
|
|
46
|
+
'Sign In': 'Увійти',
|
|
47
|
+
'Signing in': 'Входимо',
|
|
48
|
+
Skip: 'Пропустити',
|
|
49
|
+
Submit: 'Відправити',
|
|
50
|
+
Submitting: 'Відправляємо',
|
|
51
|
+
Username: 'Імʼя користувача',
|
|
52
|
+
'Verify Contact': 'Підтвердити Контакт',
|
|
53
|
+
Verify: 'Підтвердити',
|
|
54
|
+
'We Emailed You': 'Ми відправили вам Email',
|
|
55
|
+
'We Sent A Code': 'Ми відправили код',
|
|
56
|
+
'We Texted You': 'Ми відправили вам текстове повідомлення',
|
|
57
|
+
'Your code is on the way. To log in, enter the code we emailed to': 'Ваш код вже в дорозі. Щоб увійти, введіть код, що ми відправили вам на Email',
|
|
58
|
+
'Your code is on the way. To log in, enter the code we sent you': 'Ваш код вже в дорозі. Щоб увійти, введіть код, що ми вам відправили',
|
|
59
|
+
'Your code is on the way. To log in, enter the code we texted to': 'Ваш код вже в дорозі. Щоб увійти, введіть код, що ми відправили вам текстовим повідомленням',
|
|
60
|
+
// Additional translations
|
|
61
|
+
'An account with the given email already exists.': 'Обліковий запис з цим Email вже існує.',
|
|
62
|
+
'Confirm a Code': 'Підтвердіть код',
|
|
63
|
+
'Confirm Sign In': 'Підтвердіть вхід',
|
|
64
|
+
'Forgot Password': 'Забули пароль',
|
|
65
|
+
'Incorrect username or password.': 'Невірне імʼя користувача або пароль',
|
|
66
|
+
'Invalid password format': 'Невірний формат паролю',
|
|
67
|
+
'Invalid phone number format': 'Невірний формат номеру телефону',
|
|
68
|
+
'Loading...': 'Загружаємо...',
|
|
69
|
+
'New Password': 'Новий пароль',
|
|
70
|
+
'Resend a Code': 'Відправити код повторно',
|
|
71
|
+
'Reset Password': 'Скинути пароль',
|
|
72
|
+
'Sign Out': 'Вийти',
|
|
73
|
+
'Sign Up with Amazon': 'Зареєструватися з Amazon',
|
|
74
|
+
'Sign Up with Apple': 'Зареєструватися з Apple',
|
|
75
|
+
'Sign Up with Facebook': 'Зареєструватися з Facebook',
|
|
76
|
+
'Sign Up with Google': 'Зареєструватися з Google',
|
|
77
|
+
'Sign Up': 'Зареєструватися',
|
|
78
|
+
'User already exists': 'Користувач вже існує',
|
|
79
|
+
'User does not exist': 'Такий користувач не існує',
|
|
80
|
+
'Username cannot be empty': 'Імʼя користувача не може бути пустим',
|
|
81
|
+
'Your passwords must match': 'Паролі мають збігатися',
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
export { uaDict };
|
|
@@ -1 +1,74 @@
|
|
|
1
|
-
const
|
|
1
|
+
const zhDict = {
|
|
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
|
+
'Forgot your password?': '忘记密码了?',
|
|
24
|
+
'Hide password': '隐藏密码',
|
|
25
|
+
'It may take a minute to arrive': '可能需要一分钟才能到达',
|
|
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 Emailed You': '我们给您发送了电子邮件',
|
|
54
|
+
'We Sent A Code': '我们发送了代码',
|
|
55
|
+
'We Texted You': '我们给您发送了短信',
|
|
56
|
+
'Your code is on the way. To log in, enter the code we emailed to': '您的代码正在发送中。要登录,请输入我们通过电子邮件发送给以下人员的代码:',
|
|
57
|
+
'Your code is on the way. To log in, enter the code we sent you': '您的代码正在发送中。要登录,请输入我们发送给您的代码',
|
|
58
|
+
'Your code is on the way. To log in, enter the code we texted to': '您的代码正在发送中。要登录,请输入我们通过短信发送给以下人员的代码:',
|
|
59
|
+
// Additional translations provided by customers
|
|
60
|
+
'Confirm a Code': '确认码',
|
|
61
|
+
'Confirm Sign In': '确认登录',
|
|
62
|
+
'Forgot Password': '忘记密码',
|
|
63
|
+
'Incorrect username or password': '用户名或密码错误',
|
|
64
|
+
'Invalid password format': '密码格式错误',
|
|
65
|
+
'Invalid phone number format': '电话格式错误,请使用格式 +12345678900',
|
|
66
|
+
'New Password': '新密码',
|
|
67
|
+
'Resend a Code': '重发确认码',
|
|
68
|
+
'Sign Out': '退出',
|
|
69
|
+
'Sign Up': '注册',
|
|
70
|
+
'User already exists': '用户已经存在',
|
|
71
|
+
'User does not exist': '用户不存在',
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
export { zhDict };
|