@oxyhq/services 5.13.0 → 5.13.2
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/README.md +71 -0
- package/lib/commonjs/core/HttpClient.js +238 -0
- package/lib/commonjs/core/HttpClient.js.map +1 -0
- package/lib/commonjs/core/OxyServices.js +530 -332
- package/lib/commonjs/core/OxyServices.js.map +1 -1
- package/lib/commonjs/core/RequestManager.js +199 -0
- package/lib/commonjs/core/RequestManager.js.map +1 -0
- package/lib/commonjs/core/index.js +38 -1
- package/lib/commonjs/core/index.js.map +1 -1
- package/lib/commonjs/i18n/index.js +37 -1
- package/lib/commonjs/i18n/index.js.map +1 -1
- package/lib/commonjs/i18n/locales/ar-SA.json +128 -0
- package/lib/commonjs/i18n/locales/ca-ES.json +128 -0
- package/lib/commonjs/i18n/locales/de-DE.json +128 -0
- package/lib/commonjs/i18n/locales/en-US.json +85 -12
- package/lib/commonjs/i18n/locales/es-ES.json +58 -6
- package/lib/commonjs/i18n/locales/fr-FR.json +128 -0
- package/lib/commonjs/i18n/locales/it-IT.json +128 -0
- package/lib/commonjs/i18n/locales/ja-JP.json +127 -0
- package/lib/commonjs/i18n/locales/ko-KR.json +128 -0
- package/lib/commonjs/i18n/locales/pt-PT.json +128 -0
- package/lib/commonjs/i18n/locales/zh-CN.json +128 -0
- package/lib/commonjs/index.js +36 -0
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/ui/components/Avatar.js +94 -27
- package/lib/commonjs/ui/components/Avatar.js.map +1 -1
- package/lib/commonjs/ui/components/FollowButton.js +1 -0
- package/lib/commonjs/ui/components/FollowButton.js.map +1 -1
- package/lib/commonjs/ui/components/FontLoader.js +22 -42
- package/lib/commonjs/ui/components/FontLoader.js.map +1 -1
- package/lib/commonjs/ui/components/OxyProvider.js +5 -8
- package/lib/commonjs/ui/components/OxyProvider.js.map +1 -1
- package/lib/commonjs/ui/components/StepBasedScreen.js +64 -44
- package/lib/commonjs/ui/components/StepBasedScreen.js.map +1 -1
- package/lib/commonjs/ui/components/internal/GroupedPillButtons.js +14 -35
- package/lib/commonjs/ui/components/internal/GroupedPillButtons.js.map +1 -1
- package/lib/commonjs/ui/components/internal/PinInput.js +2 -2
- package/lib/commonjs/ui/components/internal/PinInput.js.map +1 -1
- package/lib/commonjs/ui/components/internal/TextField.js +13 -8
- package/lib/commonjs/ui/components/internal/TextField.js.map +1 -1
- package/lib/commonjs/ui/context/OxyContext.js +443 -371
- package/lib/commonjs/ui/context/OxyContext.js.map +1 -1
- package/lib/commonjs/ui/hooks/useSessionSocket.js +80 -22
- package/lib/commonjs/ui/hooks/useSessionSocket.js.map +1 -1
- package/lib/commonjs/ui/index.js +4 -1
- package/lib/commonjs/ui/index.js.map +1 -1
- package/lib/commonjs/ui/screens/AccountSettingsScreen.js +32 -2
- package/lib/commonjs/ui/screens/AccountSettingsScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/AccountSwitcherScreen.js +101 -59
- package/lib/commonjs/ui/screens/AccountSwitcherScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/FileManagementScreen.js +3 -2
- package/lib/commonjs/ui/screens/FileManagementScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/LanguageSelectorScreen.js +75 -117
- package/lib/commonjs/ui/screens/LanguageSelectorScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/SignInScreen.js +43 -50
- package/lib/commonjs/ui/screens/SignInScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/SignUpScreen.js +14 -16
- package/lib/commonjs/ui/screens/SignUpScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/WelcomeNewUserScreen.js +188 -142
- package/lib/commonjs/ui/screens/WelcomeNewUserScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/internal/SignInPasswordStep.js +10 -10
- package/lib/commonjs/ui/screens/internal/SignInPasswordStep.js.map +1 -1
- package/lib/commonjs/ui/screens/internal/SignInUsernameStep.js +2 -4
- package/lib/commonjs/ui/screens/internal/SignInUsernameStep.js.map +1 -1
- package/lib/commonjs/ui/screens/steps/RecoverRequestStep.js +45 -25
- package/lib/commonjs/ui/screens/steps/RecoverRequestStep.js.map +1 -1
- package/lib/commonjs/ui/screens/steps/RecoverResetPasswordStep.js +88 -53
- package/lib/commonjs/ui/screens/steps/RecoverResetPasswordStep.js.map +1 -1
- package/lib/commonjs/ui/screens/steps/RecoverSuccessStep.js +79 -58
- package/lib/commonjs/ui/screens/steps/RecoverSuccessStep.js.map +1 -1
- package/lib/commonjs/ui/screens/steps/RecoverVerifyStep.js +61 -52
- package/lib/commonjs/ui/screens/steps/RecoverVerifyStep.js.map +1 -1
- package/lib/commonjs/ui/screens/steps/SignInPasswordStep.js +218 -39
- package/lib/commonjs/ui/screens/steps/SignInPasswordStep.js.map +1 -1
- package/lib/commonjs/ui/screens/steps/SignInTotpStep.js +77 -50
- package/lib/commonjs/ui/screens/steps/SignInTotpStep.js.map +1 -1
- package/lib/commonjs/ui/screens/steps/SignInUsernameStep.js +424 -71
- package/lib/commonjs/ui/screens/steps/SignInUsernameStep.js.map +1 -1
- package/lib/commonjs/ui/screens/steps/SignUpIdentityStep.js +55 -30
- package/lib/commonjs/ui/screens/steps/SignUpIdentityStep.js.map +1 -1
- package/lib/commonjs/ui/screens/steps/SignUpSecurityStep.js +64 -46
- package/lib/commonjs/ui/screens/steps/SignUpSecurityStep.js.map +1 -1
- package/lib/commonjs/ui/screens/steps/SignUpSummaryStep.js +84 -146
- package/lib/commonjs/ui/screens/steps/SignUpSummaryStep.js.map +1 -1
- package/lib/commonjs/ui/screens/steps/SignUpWelcomeStep.js +113 -34
- package/lib/commonjs/ui/screens/steps/SignUpWelcomeStep.js.map +1 -1
- package/lib/commonjs/ui/stores/accountStore.js +237 -0
- package/lib/commonjs/ui/stores/accountStore.js.map +1 -0
- package/lib/commonjs/ui/stores/authStore.js +17 -20
- package/lib/commonjs/ui/stores/authStore.js.map +1 -1
- package/lib/commonjs/ui/styles/authStyles.js +16 -8
- package/lib/commonjs/ui/styles/authStyles.js.map +1 -1
- package/lib/commonjs/ui/styles/index.js +11 -0
- package/lib/commonjs/ui/styles/index.js.map +1 -1
- package/lib/commonjs/ui/styles/spacing.js +51 -0
- package/lib/commonjs/ui/styles/spacing.js.map +1 -0
- package/lib/commonjs/utils/asyncUtils.js +9 -22
- package/lib/commonjs/utils/asyncUtils.js.map +1 -1
- package/lib/commonjs/utils/cache.js +259 -0
- package/lib/commonjs/utils/cache.js.map +1 -0
- package/lib/commonjs/utils/index.js +99 -0
- package/lib/commonjs/utils/index.js.map +1 -1
- package/lib/commonjs/utils/languageUtils.js +159 -0
- package/lib/commonjs/utils/languageUtils.js.map +1 -0
- package/lib/commonjs/utils/requestUtils.js +217 -0
- package/lib/commonjs/utils/requestUtils.js.map +1 -0
- package/lib/commonjs/utils/sessionUtils.js +191 -0
- package/lib/commonjs/utils/sessionUtils.js.map +1 -0
- package/lib/commonjs/utils/validationUtils.js +1 -1
- package/lib/module/core/HttpClient.js +232 -0
- package/lib/module/core/HttpClient.js.map +1 -0
- package/lib/module/core/OxyServices.js +528 -326
- package/lib/module/core/OxyServices.js.map +1 -1
- package/lib/module/core/RequestManager.js +194 -0
- package/lib/module/core/RequestManager.js.map +1 -0
- package/lib/module/core/index.js +2 -0
- package/lib/module/core/index.js.map +1 -1
- package/lib/module/i18n/index.js +37 -1
- package/lib/module/i18n/index.js.map +1 -1
- package/lib/module/i18n/locales/ar-SA.json +128 -0
- package/lib/module/i18n/locales/ca-ES.json +128 -0
- package/lib/module/i18n/locales/de-DE.json +128 -0
- package/lib/module/i18n/locales/en-US.json +85 -12
- package/lib/module/i18n/locales/es-ES.json +58 -6
- package/lib/module/i18n/locales/fr-FR.json +128 -0
- package/lib/module/i18n/locales/it-IT.json +128 -0
- package/lib/module/i18n/locales/ja-JP.json +127 -0
- package/lib/module/i18n/locales/ko-KR.json +128 -0
- package/lib/module/i18n/locales/pt-PT.json +128 -0
- package/lib/module/i18n/locales/zh-CN.json +128 -0
- package/lib/module/index.js +2 -0
- package/lib/module/index.js.map +1 -1
- package/lib/module/ui/components/Avatar.js +94 -27
- package/lib/module/ui/components/Avatar.js.map +1 -1
- package/lib/module/ui/components/FollowButton.js +1 -0
- package/lib/module/ui/components/FollowButton.js.map +1 -1
- package/lib/module/ui/components/FontLoader.js +23 -43
- package/lib/module/ui/components/FontLoader.js.map +1 -1
- package/lib/module/ui/components/OxyProvider.js +6 -8
- package/lib/module/ui/components/OxyProvider.js.map +1 -1
- package/lib/module/ui/components/StepBasedScreen.js +65 -45
- package/lib/module/ui/components/StepBasedScreen.js.map +1 -1
- package/lib/module/ui/components/internal/GroupedPillButtons.js +14 -35
- package/lib/module/ui/components/internal/GroupedPillButtons.js.map +1 -1
- package/lib/module/ui/components/internal/PinInput.js +2 -2
- package/lib/module/ui/components/internal/PinInput.js.map +1 -1
- package/lib/module/ui/components/internal/TextField.js +13 -8
- package/lib/module/ui/components/internal/TextField.js.map +1 -1
- package/lib/module/ui/context/OxyContext.js +442 -370
- package/lib/module/ui/context/OxyContext.js.map +1 -1
- package/lib/module/ui/hooks/useSessionSocket.js +80 -22
- package/lib/module/ui/hooks/useSessionSocket.js.map +1 -1
- package/lib/module/ui/index.js +4 -2
- package/lib/module/ui/index.js.map +1 -1
- package/lib/module/ui/screens/AccountSettingsScreen.js +33 -2
- package/lib/module/ui/screens/AccountSettingsScreen.js.map +1 -1
- package/lib/module/ui/screens/AccountSwitcherScreen.js +102 -60
- package/lib/module/ui/screens/AccountSwitcherScreen.js.map +1 -1
- package/lib/module/ui/screens/FileManagementScreen.js +3 -2
- package/lib/module/ui/screens/FileManagementScreen.js.map +1 -1
- package/lib/module/ui/screens/LanguageSelectorScreen.js +73 -117
- package/lib/module/ui/screens/LanguageSelectorScreen.js.map +1 -1
- package/lib/module/ui/screens/SignInScreen.js +44 -51
- package/lib/module/ui/screens/SignInScreen.js.map +1 -1
- package/lib/module/ui/screens/SignUpScreen.js +14 -16
- package/lib/module/ui/screens/SignUpScreen.js.map +1 -1
- package/lib/module/ui/screens/WelcomeNewUserScreen.js +187 -143
- package/lib/module/ui/screens/WelcomeNewUserScreen.js.map +1 -1
- package/lib/module/ui/screens/internal/SignInPasswordStep.js +10 -10
- package/lib/module/ui/screens/internal/SignInPasswordStep.js.map +1 -1
- package/lib/module/ui/screens/internal/SignInUsernameStep.js +2 -4
- package/lib/module/ui/screens/internal/SignInUsernameStep.js.map +1 -1
- package/lib/module/ui/screens/steps/RecoverRequestStep.js +45 -25
- package/lib/module/ui/screens/steps/RecoverRequestStep.js.map +1 -1
- package/lib/module/ui/screens/steps/RecoverResetPasswordStep.js +89 -54
- package/lib/module/ui/screens/steps/RecoverResetPasswordStep.js.map +1 -1
- package/lib/module/ui/screens/steps/RecoverSuccessStep.js +80 -59
- package/lib/module/ui/screens/steps/RecoverSuccessStep.js.map +1 -1
- package/lib/module/ui/screens/steps/RecoverVerifyStep.js +62 -53
- package/lib/module/ui/screens/steps/RecoverVerifyStep.js.map +1 -1
- package/lib/module/ui/screens/steps/SignInPasswordStep.js +219 -40
- package/lib/module/ui/screens/steps/SignInPasswordStep.js.map +1 -1
- package/lib/module/ui/screens/steps/SignInTotpStep.js +78 -51
- package/lib/module/ui/screens/steps/SignInTotpStep.js.map +1 -1
- package/lib/module/ui/screens/steps/SignInUsernameStep.js +426 -73
- package/lib/module/ui/screens/steps/SignInUsernameStep.js.map +1 -1
- package/lib/module/ui/screens/steps/SignUpIdentityStep.js +55 -30
- package/lib/module/ui/screens/steps/SignUpIdentityStep.js.map +1 -1
- package/lib/module/ui/screens/steps/SignUpSecurityStep.js +65 -47
- package/lib/module/ui/screens/steps/SignUpSecurityStep.js.map +1 -1
- package/lib/module/ui/screens/steps/SignUpSummaryStep.js +84 -146
- package/lib/module/ui/screens/steps/SignUpSummaryStep.js.map +1 -1
- package/lib/module/ui/screens/steps/SignUpWelcomeStep.js +114 -35
- package/lib/module/ui/screens/steps/SignUpWelcomeStep.js.map +1 -1
- package/lib/module/ui/stores/accountStore.js +229 -0
- package/lib/module/ui/stores/accountStore.js.map +1 -0
- package/lib/module/ui/stores/authStore.js +17 -20
- package/lib/module/ui/stores/authStore.js.map +1 -1
- package/lib/module/ui/styles/authStyles.js +16 -8
- package/lib/module/ui/styles/authStyles.js.map +1 -1
- package/lib/module/ui/styles/index.js +1 -0
- package/lib/module/ui/styles/index.js.map +1 -1
- package/lib/module/ui/styles/spacing.js +48 -0
- package/lib/module/ui/styles/spacing.js.map +1 -0
- package/lib/module/utils/asyncUtils.js +10 -22
- package/lib/module/utils/asyncUtils.js.map +1 -1
- package/lib/module/utils/cache.js +250 -0
- package/lib/module/utils/cache.js.map +1 -0
- package/lib/module/utils/index.js +7 -0
- package/lib/module/utils/index.js.map +1 -1
- package/lib/module/utils/languageUtils.js +151 -0
- package/lib/module/utils/languageUtils.js.map +1 -0
- package/lib/module/utils/requestUtils.js +210 -0
- package/lib/module/utils/requestUtils.js.map +1 -0
- package/lib/module/utils/sessionUtils.js +180 -0
- package/lib/module/utils/sessionUtils.js.map +1 -0
- package/lib/module/utils/validationUtils.js +1 -1
- package/lib/typescript/core/HttpClient.d.ts +64 -0
- package/lib/typescript/core/HttpClient.d.ts.map +1 -0
- package/lib/typescript/core/OxyServices.d.ts +86 -73
- package/lib/typescript/core/OxyServices.d.ts.map +1 -1
- package/lib/typescript/core/RequestManager.d.ts +67 -0
- package/lib/typescript/core/RequestManager.d.ts.map +1 -0
- package/lib/typescript/core/index.d.ts +2 -0
- package/lib/typescript/core/index.d.ts.map +1 -1
- package/lib/typescript/i18n/index.d.ts.map +1 -1
- package/lib/typescript/index.d.ts +2 -0
- package/lib/typescript/index.d.ts.map +1 -1
- package/lib/typescript/models/interfaces.d.ts +15 -0
- package/lib/typescript/models/interfaces.d.ts.map +1 -1
- package/lib/typescript/models/session.d.ts +1 -0
- package/lib/typescript/models/session.d.ts.map +1 -1
- package/lib/typescript/ui/components/Avatar.d.ts +6 -7
- package/lib/typescript/ui/components/Avatar.d.ts.map +1 -1
- package/lib/typescript/ui/components/FollowButton.d.ts.map +1 -1
- package/lib/typescript/ui/components/FontLoader.d.ts +3 -3
- package/lib/typescript/ui/components/FontLoader.d.ts.map +1 -1
- package/lib/typescript/ui/components/OxyProvider.d.ts +2 -2
- package/lib/typescript/ui/components/OxyProvider.d.ts.map +1 -1
- package/lib/typescript/ui/components/StepBasedScreen.d.ts.map +1 -1
- package/lib/typescript/ui/components/internal/GroupedPillButtons.d.ts.map +1 -1
- package/lib/typescript/ui/components/internal/TextField.d.ts.map +1 -1
- package/lib/typescript/ui/context/OxyContext.d.ts +5 -0
- package/lib/typescript/ui/context/OxyContext.d.ts.map +1 -1
- package/lib/typescript/ui/hooks/useSessionSocket.d.ts.map +1 -1
- package/lib/typescript/ui/index.d.ts +2 -2
- package/lib/typescript/ui/index.d.ts.map +1 -1
- package/lib/typescript/ui/screens/AccountSettingsScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/AccountSwitcherScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/LanguageSelectorScreen.d.ts +3 -3
- package/lib/typescript/ui/screens/LanguageSelectorScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/SignInScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/SignUpScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/WelcomeNewUserScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/internal/SignInPasswordStep.d.ts.map +1 -1
- package/lib/typescript/ui/screens/steps/RecoverRequestStep.d.ts.map +1 -1
- package/lib/typescript/ui/screens/steps/RecoverResetPasswordStep.d.ts.map +1 -1
- package/lib/typescript/ui/screens/steps/RecoverSuccessStep.d.ts.map +1 -1
- package/lib/typescript/ui/screens/steps/RecoverVerifyStep.d.ts.map +1 -1
- package/lib/typescript/ui/screens/steps/SignInPasswordStep.d.ts +2 -0
- package/lib/typescript/ui/screens/steps/SignInPasswordStep.d.ts.map +1 -1
- package/lib/typescript/ui/screens/steps/SignInTotpStep.d.ts.map +1 -1
- package/lib/typescript/ui/screens/steps/SignInUsernameStep.d.ts.map +1 -1
- package/lib/typescript/ui/screens/steps/SignUpIdentityStep.d.ts.map +1 -1
- package/lib/typescript/ui/screens/steps/SignUpSecurityStep.d.ts.map +1 -1
- package/lib/typescript/ui/screens/steps/SignUpSummaryStep.d.ts.map +1 -1
- package/lib/typescript/ui/screens/steps/SignUpWelcomeStep.d.ts.map +1 -1
- package/lib/typescript/ui/stores/accountStore.d.ts +34 -0
- package/lib/typescript/ui/stores/accountStore.d.ts.map +1 -0
- package/lib/typescript/ui/stores/authStore.d.ts +7 -3
- package/lib/typescript/ui/stores/authStore.d.ts.map +1 -1
- package/lib/typescript/ui/styles/authStyles.d.ts +19 -2
- package/lib/typescript/ui/styles/authStyles.d.ts.map +1 -1
- package/lib/typescript/ui/styles/index.d.ts +1 -0
- package/lib/typescript/ui/styles/index.d.ts.map +1 -1
- package/lib/typescript/ui/styles/spacing.d.ts +43 -0
- package/lib/typescript/ui/styles/spacing.d.ts.map +1 -0
- package/lib/typescript/utils/asyncUtils.d.ts +2 -0
- package/lib/typescript/utils/asyncUtils.d.ts.map +1 -1
- package/lib/typescript/utils/cache.d.ts +128 -0
- package/lib/typescript/utils/cache.d.ts.map +1 -0
- package/lib/typescript/utils/index.d.ts +4 -0
- package/lib/typescript/utils/index.d.ts.map +1 -1
- package/lib/typescript/utils/languageUtils.d.ts +38 -0
- package/lib/typescript/utils/languageUtils.d.ts.map +1 -0
- package/lib/typescript/utils/requestUtils.d.ts +122 -0
- package/lib/typescript/utils/requestUtils.d.ts.map +1 -0
- package/lib/typescript/utils/sessionUtils.d.ts +55 -0
- package/lib/typescript/utils/sessionUtils.d.ts.map +1 -0
- package/lib/typescript/utils/validationUtils.d.ts +1 -1
- package/package.json +1 -1
- package/src/core/HttpClient.ts +277 -0
- package/src/core/OxyServices.ts +461 -352
- package/src/core/RequestManager.ts +240 -0
- package/src/core/index.ts +10 -0
- package/src/i18n/index.ts +36 -0
- package/src/i18n/locales/ar-SA.json +128 -0
- package/src/i18n/locales/ca-ES.json +128 -0
- package/src/i18n/locales/de-DE.json +128 -0
- package/src/i18n/locales/en-US.json +85 -12
- package/src/i18n/locales/es-ES.json +58 -6
- package/src/i18n/locales/fr-FR.json +128 -0
- package/src/i18n/locales/it-IT.json +128 -0
- package/src/i18n/locales/ja-JP.json +127 -0
- package/src/i18n/locales/ko-KR.json +128 -0
- package/src/i18n/locales/pt-PT.json +128 -0
- package/src/i18n/locales/zh-CN.json +128 -0
- package/src/index.ts +10 -0
- package/src/models/interfaces.ts +19 -0
- package/src/models/session.ts +1 -1
- package/src/ui/components/Avatar.tsx +151 -35
- package/src/ui/components/FollowButton.tsx +1 -0
- package/src/ui/components/FontLoader.tsx +17 -37
- package/src/ui/components/OxyProvider.tsx +14 -13
- package/src/ui/components/StepBasedScreen.tsx +66 -43
- package/src/ui/components/internal/GroupedPillButtons.tsx +15 -31
- package/src/ui/components/internal/PinInput.tsx +2 -2
- package/src/ui/components/internal/TextField.tsx +7 -6
- package/src/ui/context/OxyContext.tsx +441 -326
- package/src/ui/hooks/useSessionSocket.ts +72 -18
- package/src/ui/index.ts +4 -1
- package/src/ui/screens/AccountSettingsScreen.tsx +34 -2
- package/src/ui/screens/AccountSwitcherScreen.tsx +102 -68
- package/src/ui/screens/FileManagementScreen.tsx +16 -16
- package/src/ui/screens/LanguageSelectorScreen.tsx +86 -143
- package/src/ui/screens/SignInScreen.tsx +59 -43
- package/src/ui/screens/SignUpScreen.tsx +14 -15
- package/src/ui/screens/WelcomeNewUserScreen.tsx +153 -105
- package/src/ui/screens/internal/SignInPasswordStep.tsx +4 -6
- package/src/ui/screens/internal/SignInUsernameStep.tsx +1 -1
- package/src/ui/screens/steps/RecoverRequestStep.tsx +34 -24
- package/src/ui/screens/steps/RecoverResetPasswordStep.tsx +65 -36
- package/src/ui/screens/steps/RecoverSuccessStep.tsx +71 -47
- package/src/ui/screens/steps/RecoverVerifyStep.tsx +60 -50
- package/src/ui/screens/steps/SignInPasswordStep.tsx +190 -32
- package/src/ui/screens/steps/SignInTotpStep.tsx +68 -34
- package/src/ui/screens/steps/SignInUsernameStep.tsx +446 -63
- package/src/ui/screens/steps/SignUpIdentityStep.tsx +49 -35
- package/src/ui/screens/steps/SignUpSecurityStep.tsx +56 -39
- package/src/ui/screens/steps/SignUpSummaryStep.tsx +99 -89
- package/src/ui/screens/steps/SignUpWelcomeStep.tsx +88 -20
- package/src/ui/stores/accountStore.ts +285 -0
- package/src/ui/stores/authStore.ts +16 -19
- package/src/ui/styles/authStyles.ts +16 -8
- package/src/ui/styles/index.ts +1 -0
- package/src/ui/styles/spacing.ts +46 -0
- package/src/utils/asyncUtils.ts +10 -24
- package/src/utils/cache.ts +264 -0
- package/src/utils/index.ts +19 -0
- package/src/utils/languageUtils.ts +174 -0
- package/src/utils/requestUtils.ts +234 -0
- package/src/utils/sessionUtils.ts +206 -0
- package/src/utils/validationUtils.ts +1 -1
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
{
|
|
2
|
+
"signin": {
|
|
3
|
+
"title": "Anmelden",
|
|
4
|
+
"subtitle": "Melden Sie sich an, um fortzufahren",
|
|
5
|
+
"addAccountTitle": "Weiteres Konto hinzufügen",
|
|
6
|
+
"addAccountSubtitle": "Mit einem anderen Konto anmelden",
|
|
7
|
+
"username": {
|
|
8
|
+
"label": "Benutzername",
|
|
9
|
+
"placeholder": "Geben Sie Ihren Benutzernamen ein",
|
|
10
|
+
"helper": "3-30 Zeichen, nur Buchstaben und Zahlen",
|
|
11
|
+
"required": "Bitte geben Sie Ihren Benutzernamen ein.",
|
|
12
|
+
"minLength": "Der Benutzername muss mindestens 3 Zeichen lang sein."
|
|
13
|
+
},
|
|
14
|
+
"password": {
|
|
15
|
+
"label": "Passwort",
|
|
16
|
+
"placeholder": "Geben Sie Ihr Passwort ein",
|
|
17
|
+
"required": "Bitte geben Sie Ihr Passwort ein.",
|
|
18
|
+
"hint": "Geben Sie Ihr Passwort ein, um sich anzumelden"
|
|
19
|
+
},
|
|
20
|
+
"actions": {
|
|
21
|
+
"continue": "Fortfahren",
|
|
22
|
+
"back": "Zurück",
|
|
23
|
+
"signIn": "Anmelden",
|
|
24
|
+
"verify": "Überprüfen",
|
|
25
|
+
"openAccountSwitcher": "Zu einem anderen Konto wechseln",
|
|
26
|
+
"openAccountSwitcherSubtitle": "{{count}} weitere Konten verfügbar",
|
|
27
|
+
"openAccountSwitcherSubtitle_singular": "1 weiteres Konto verfügbar",
|
|
28
|
+
"openAccountSwitcherSubtitle_zero": "Überprüfen Sie Ihre gespeicherten Konten",
|
|
29
|
+
"manageAccounts": "Gespeicherte Konten verwalten",
|
|
30
|
+
"manageAccountsSubtitle": "Sitzungen überprüfen, entfernen oder abmelden",
|
|
31
|
+
"loadingOtherAccounts": "Lade weitere Konten…",
|
|
32
|
+
"switchAccountFailed": "Wir konnten nicht zu einem anderen Konto wechseln. Bitte versuchen Sie es erneut."
|
|
33
|
+
},
|
|
34
|
+
"forgotPrompt": "Passwort vergessen?",
|
|
35
|
+
"security": {
|
|
36
|
+
"dataSecure": "Ihre Daten sind verschlüsselt und sicher"
|
|
37
|
+
},
|
|
38
|
+
"currentlySignedInAs": "Aktuell angemeldet als",
|
|
39
|
+
"alreadySignedInWith": "Bereits angemeldet mit",
|
|
40
|
+
"alreadySignedIn": "Bereits angemeldet",
|
|
41
|
+
"alreadySignedInMessage": "Dieses Konto ist bereits angemeldet. Mit diesem Konto fortfahren?",
|
|
42
|
+
"continueWithAccount": "Fortfahren",
|
|
43
|
+
"currentAccount": "Aktuell",
|
|
44
|
+
"or": "oder",
|
|
45
|
+
"viewAllAccounts": "{{count}} weitere anzeigen",
|
|
46
|
+
"status": {
|
|
47
|
+
"accountSwitched": "Verwende jetzt {{name}}"
|
|
48
|
+
},
|
|
49
|
+
"totp": {
|
|
50
|
+
"title": "Zwei-Faktor-Code",
|
|
51
|
+
"subtitle": "Geben Sie den 6-stelligen Code von Ihrer Authenticator-App für @{{username}} ein",
|
|
52
|
+
"invalidCode": "Ungültiger Code. Bitte versuchen Sie es erneut.",
|
|
53
|
+
"noAccess": "Kein Zugriff auf Ihren Authenticator?",
|
|
54
|
+
"useBackupCode": "Backup-Code verwenden",
|
|
55
|
+
"useRecoveryKey": "Wiederherstellungsschlüssel verwenden"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"signup": {
|
|
59
|
+
"welcome": {
|
|
60
|
+
"title": "Willkommen bei Oxy!",
|
|
61
|
+
"subtitle": "Erstellen Sie Ihr Konto in nur wenigen Schritten",
|
|
62
|
+
"haveAccount": "Haben Sie bereits ein Konto?",
|
|
63
|
+
"signInCta": "Anmelden"
|
|
64
|
+
},
|
|
65
|
+
"identity": {
|
|
66
|
+
"title": "Wer sind Sie?",
|
|
67
|
+
"subtitle": "Wählen Sie Ihren Benutzernamen und geben Sie Ihre E-Mail ein"
|
|
68
|
+
},
|
|
69
|
+
"username": {
|
|
70
|
+
"helper": "3-30 Zeichen, nur Buchstaben und Zahlen",
|
|
71
|
+
"required": "Bitte geben Sie einen Benutzernamen ein",
|
|
72
|
+
"minLength": "Der Benutzername muss mindestens 3 Zeichen lang sein"
|
|
73
|
+
},
|
|
74
|
+
"email": {
|
|
75
|
+
"required": "Bitte geben Sie eine E-Mail-Adresse ein",
|
|
76
|
+
"invalid": "Bitte geben Sie eine gültige E-Mail-Adresse ein",
|
|
77
|
+
"helper": "Wir werden Ihre E-Mail niemals teilen"
|
|
78
|
+
},
|
|
79
|
+
"security": {
|
|
80
|
+
"title": "Sichern Sie Ihr Konto",
|
|
81
|
+
"subtitle": "Erstellen Sie ein starkes Passwort, um Ihr Konto zu schützen"
|
|
82
|
+
},
|
|
83
|
+
"password": {
|
|
84
|
+
"helper": "Mindestens 8 Zeichen",
|
|
85
|
+
"required": "Bitte geben Sie ein Passwort ein",
|
|
86
|
+
"minLength": "Das Passwort muss mindestens 8 Zeichen lang sein",
|
|
87
|
+
"confirmRequired": "Bitte bestätigen Sie Ihr Passwort",
|
|
88
|
+
"mismatch": "Die Passwörter stimmen nicht überein",
|
|
89
|
+
"confirmHint": "Geben Sie Ihr Passwort erneut ein, um zu bestätigen"
|
|
90
|
+
},
|
|
91
|
+
"summary": {
|
|
92
|
+
"title": "Fast geschafft!",
|
|
93
|
+
"subtitle": "Überprüfen Sie Ihre Informationen und erstellen Sie Ihr Konto",
|
|
94
|
+
"sectionTitle": "Kontoinformationen",
|
|
95
|
+
"fields": {
|
|
96
|
+
"username": "Benutzername",
|
|
97
|
+
"email": "E-Mail",
|
|
98
|
+
"password": "Passwort"
|
|
99
|
+
},
|
|
100
|
+
"notSet": "Nicht festgelegt",
|
|
101
|
+
"securityTip": "Für mehr Sicherheit aktivieren Sie die Zwei-Faktor-Authentifizierung (TOTP) in den Kontoeinstellungen, nachdem Sie Ihr Konto erstellt haben.",
|
|
102
|
+
"legalReminder": "Durch die Erstellung eines Kontos stimmen Sie unseren Nutzungsbedingungen und der Datenschutzrichtlinie zu."
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"common": {
|
|
106
|
+
"actions": {
|
|
107
|
+
"back": "Zurück",
|
|
108
|
+
"continue": "Fortfahren",
|
|
109
|
+
"next": "Weiter",
|
|
110
|
+
"getStarted": "Loslegen",
|
|
111
|
+
"createAccount": "Konto erstellen",
|
|
112
|
+
"signIn": "Anmelden",
|
|
113
|
+
"verify": "Überprüfen",
|
|
114
|
+
"resetPassword": "Passwort zurücksetzen"
|
|
115
|
+
},
|
|
116
|
+
"links": {
|
|
117
|
+
"recoverAccount": "Ihr Konto wiederherstellen",
|
|
118
|
+
"signUp": "Registrieren"
|
|
119
|
+
},
|
|
120
|
+
"labels": {
|
|
121
|
+
"username": "Benutzername",
|
|
122
|
+
"email": "E-Mail",
|
|
123
|
+
"password": "Passwort",
|
|
124
|
+
"confirmPassword": "Passwort bestätigen"
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
@@ -6,23 +6,46 @@
|
|
|
6
6
|
"addAccountSubtitle": "Sign in with another account",
|
|
7
7
|
"username": {
|
|
8
8
|
"label": "Username",
|
|
9
|
-
"placeholder": "Enter your username"
|
|
9
|
+
"placeholder": "Enter your username",
|
|
10
|
+
"helper": "3-30 characters, letters and numbers only",
|
|
11
|
+
"required": "Please enter your username.",
|
|
12
|
+
"minLength": "Username must be at least 3 characters."
|
|
10
13
|
},
|
|
11
14
|
"password": {
|
|
12
15
|
"label": "Password",
|
|
13
|
-
"placeholder": "Enter your password"
|
|
16
|
+
"placeholder": "Enter your password",
|
|
17
|
+
"required": "Please enter your password.",
|
|
18
|
+
"hint": "Enter your password to sign in"
|
|
14
19
|
},
|
|
15
20
|
"actions": {
|
|
16
21
|
"continue": "Continue",
|
|
17
22
|
"back": "Back",
|
|
18
23
|
"signIn": "Sign In",
|
|
19
|
-
"verify": "Verify"
|
|
24
|
+
"verify": "Verify",
|
|
25
|
+
"openAccountSwitcher": "Switch to another account",
|
|
26
|
+
"openAccountSwitcherSubtitle": "{{count}} other accounts available",
|
|
27
|
+
"openAccountSwitcherSubtitle_singular": "1 other account available",
|
|
28
|
+
"openAccountSwitcherSubtitle_zero": "Review your saved accounts",
|
|
29
|
+
"manageAccounts": "Manage saved accounts",
|
|
30
|
+
"manageAccountsSubtitle": "Review sessions, remove or sign out",
|
|
31
|
+
"loadingOtherAccounts": "Loading other accounts…",
|
|
32
|
+
"switchAccountFailed": "We couldn’t switch accounts. Please try again."
|
|
20
33
|
},
|
|
21
34
|
"forgotPrompt": "Forgot your password?",
|
|
22
35
|
"security": {
|
|
23
36
|
"dataSecure": "Your data is encrypted and secure"
|
|
24
37
|
},
|
|
25
|
-
"currentlySignedInAs": "Currently signed in as
|
|
38
|
+
"currentlySignedInAs": "Currently signed in as",
|
|
39
|
+
"alreadySignedInWith": "Already signed in with",
|
|
40
|
+
"alreadySignedIn": "Already signed in",
|
|
41
|
+
"alreadySignedInMessage": "This account is already signed in. Continue with this account?",
|
|
42
|
+
"continueWithAccount": "Continue",
|
|
43
|
+
"currentAccount": "Current",
|
|
44
|
+
"or": "or",
|
|
45
|
+
"viewAllAccounts": "View {{count}} more",
|
|
46
|
+
"status": {
|
|
47
|
+
"accountSwitched": "Now using {{name}}"
|
|
48
|
+
},
|
|
26
49
|
"totp": {
|
|
27
50
|
"title": "Two‑Factor Code",
|
|
28
51
|
"subtitle": "Enter the 6‑digit code from your authenticator app for @{{username}}",
|
|
@@ -35,19 +58,56 @@
|
|
|
35
58
|
"signup": {
|
|
36
59
|
"welcome": {
|
|
37
60
|
"title": "Welcome to Oxy!",
|
|
38
|
-
"subtitle": "Let's create your account in just a few steps"
|
|
61
|
+
"subtitle": "Let's create your account in just a few steps",
|
|
62
|
+
"haveAccount": "Already have an account?",
|
|
63
|
+
"signInCta": "Sign in"
|
|
39
64
|
},
|
|
40
65
|
"identity": {
|
|
41
66
|
"title": "Who are you?",
|
|
42
67
|
"subtitle": "Choose your username and enter your email"
|
|
43
68
|
},
|
|
69
|
+
"username": {
|
|
70
|
+
"helper": "3-30 characters, letters and numbers only",
|
|
71
|
+
"required": "Please enter a username",
|
|
72
|
+
"minLength": "Username must be at least 3 characters"
|
|
73
|
+
},
|
|
74
|
+
"email": {
|
|
75
|
+
"required": "Please enter an email address",
|
|
76
|
+
"invalid": "Please enter a valid email address",
|
|
77
|
+
"helper": "We'll never share your email"
|
|
78
|
+
},
|
|
44
79
|
"security": {
|
|
45
80
|
"title": "Secure Your Account",
|
|
46
81
|
"subtitle": "Create a strong password to protect your account"
|
|
47
82
|
},
|
|
83
|
+
"password": {
|
|
84
|
+
"helper": "At least 8 characters",
|
|
85
|
+
"required": "Please enter a password",
|
|
86
|
+
"minLength": "Password must be at least 8 characters long",
|
|
87
|
+
"confirmRequired": "Please confirm your password",
|
|
88
|
+
"mismatch": "Passwords do not match",
|
|
89
|
+
"confirmHint": "Re-enter your password to confirm"
|
|
90
|
+
},
|
|
48
91
|
"summary": {
|
|
49
92
|
"title": "Almost There!",
|
|
50
|
-
"subtitle": "Review your information and create your account"
|
|
93
|
+
"subtitle": "Review your information and create your account",
|
|
94
|
+
"sectionTitle": "Account Information",
|
|
95
|
+
"fields": {
|
|
96
|
+
"username": "Username",
|
|
97
|
+
"email": "Email",
|
|
98
|
+
"password": "Password"
|
|
99
|
+
},
|
|
100
|
+
"notSet": "Not set",
|
|
101
|
+
"securityTip": "For stronger security, enable Two‑Factor Authentication (TOTP) from Account Settings after you create your account.",
|
|
102
|
+
"legalReminder": "By creating an account, you agree to our Terms of Service and Privacy Policy.",
|
|
103
|
+
"sections": {
|
|
104
|
+
"account": "Account Information",
|
|
105
|
+
"next": "Next Steps"
|
|
106
|
+
},
|
|
107
|
+
"next": {
|
|
108
|
+
"securityTitle": "Keep your account secure",
|
|
109
|
+
"legalTitle": "You're all set"
|
|
110
|
+
}
|
|
51
111
|
}
|
|
52
112
|
},
|
|
53
113
|
"welcomeNew": {
|
|
@@ -175,7 +235,8 @@
|
|
|
175
235
|
"username": {
|
|
176
236
|
"label": "Username",
|
|
177
237
|
"placeholder": "Enter your username",
|
|
178
|
-
"errorRequired": "Please enter your username."
|
|
238
|
+
"errorRequired": "Please enter your username.",
|
|
239
|
+
"helper": "Enter your username or email"
|
|
179
240
|
},
|
|
180
241
|
"verify": {
|
|
181
242
|
"title": "Verify Code",
|
|
@@ -570,13 +631,25 @@
|
|
|
570
631
|
"actions": {
|
|
571
632
|
"manage": "Manage"
|
|
572
633
|
},
|
|
573
|
-
"loadingAdditional": {
|
|
634
|
+
"loadingAdditional": {
|
|
635
|
+
"title": "Loading accounts...",
|
|
636
|
+
"subtitle": "Please wait while we load your additional accounts"
|
|
637
|
+
},
|
|
574
638
|
"additional": {
|
|
575
|
-
"noAccounts": {
|
|
639
|
+
"noAccounts": {
|
|
640
|
+
"title": "No other accounts",
|
|
641
|
+
"subtitle": "Add another account to switch between them"
|
|
642
|
+
}
|
|
576
643
|
},
|
|
577
644
|
"items": {
|
|
578
|
-
"addAccount": {
|
|
579
|
-
|
|
645
|
+
"addAccount": {
|
|
646
|
+
"title": "Add Another Account",
|
|
647
|
+
"subtitle": "Sign in with a different account"
|
|
648
|
+
},
|
|
649
|
+
"signOutAll": {
|
|
650
|
+
"title": "Sign out of all accounts",
|
|
651
|
+
"subtitle": "Remove all accounts from this device"
|
|
652
|
+
},
|
|
580
653
|
"accountSwitcher": {
|
|
581
654
|
"switchPrompt": "Switch to {{username}}?",
|
|
582
655
|
"titleShow": "Show Account Switcher",
|
|
@@ -678,4 +751,4 @@
|
|
|
678
751
|
"confirmPassword": "Confirm Password"
|
|
679
752
|
}
|
|
680
753
|
}
|
|
681
|
-
}
|
|
754
|
+
}
|
|
@@ -6,23 +6,46 @@
|
|
|
6
6
|
"addAccountSubtitle": "Inicia sesión con otra cuenta",
|
|
7
7
|
"username": {
|
|
8
8
|
"label": "Usuario",
|
|
9
|
-
"placeholder": "Introduce tu usuario"
|
|
9
|
+
"placeholder": "Introduce tu usuario",
|
|
10
|
+
"helper": "3-30 caracteres, solo letras y números",
|
|
11
|
+
"required": "Por favor, introduce tu usuario.",
|
|
12
|
+
"minLength": "El usuario debe tener al menos 3 caracteres."
|
|
10
13
|
},
|
|
11
14
|
"password": {
|
|
12
15
|
"label": "Contraseña",
|
|
13
|
-
"placeholder": "Introduce tu contraseña"
|
|
16
|
+
"placeholder": "Introduce tu contraseña",
|
|
17
|
+
"required": "Por favor, introduce tu contraseña.",
|
|
18
|
+
"hint": "Introduce tu contraseña para iniciar sesión"
|
|
14
19
|
},
|
|
15
20
|
"actions": {
|
|
16
21
|
"continue": "Continuar",
|
|
17
22
|
"back": "Atrás",
|
|
18
23
|
"signIn": "Entrar",
|
|
19
|
-
"verify": "Verificar"
|
|
24
|
+
"verify": "Verificar",
|
|
25
|
+
"openAccountSwitcher": "Cambiar a otra cuenta",
|
|
26
|
+
"openAccountSwitcherSubtitle": "{{count}} otras cuentas disponibles",
|
|
27
|
+
"openAccountSwitcherSubtitle_singular": "1 otra cuenta disponible",
|
|
28
|
+
"openAccountSwitcherSubtitle_zero": "Revisa tus cuentas guardadas",
|
|
29
|
+
"manageAccounts": "Gestionar cuentas guardadas",
|
|
30
|
+
"manageAccountsSubtitle": "Revisar sesiones, eliminar o cerrar sesión",
|
|
31
|
+
"loadingOtherAccounts": "Cargando otras cuentas…",
|
|
32
|
+
"switchAccountFailed": "No pudimos cambiar de cuenta. Inténtalo de nuevo."
|
|
20
33
|
},
|
|
21
34
|
"forgotPrompt": "¿Olvidaste tu contraseña?",
|
|
22
35
|
"security": {
|
|
23
36
|
"dataSecure": "Tus datos están cifrados y seguros"
|
|
24
37
|
},
|
|
25
|
-
"currentlySignedInAs": "Actualmente has iniciado sesión como
|
|
38
|
+
"currentlySignedInAs": "Actualmente has iniciado sesión como",
|
|
39
|
+
"alreadySignedInWith": "Ya has iniciado sesión con",
|
|
40
|
+
"alreadySignedIn": "Ya has iniciado sesión",
|
|
41
|
+
"alreadySignedInMessage": "Esta cuenta ya ha iniciado sesión. ¿Continuar con esta cuenta?",
|
|
42
|
+
"continueWithAccount": "Continuar",
|
|
43
|
+
"currentAccount": "Actual",
|
|
44
|
+
"or": "o",
|
|
45
|
+
"viewAllAccounts": "Ver {{count}} más",
|
|
46
|
+
"status": {
|
|
47
|
+
"accountSwitched": "Ahora usando {{name}}"
|
|
48
|
+
},
|
|
26
49
|
"totp": {
|
|
27
50
|
"title": "Código de dos factores",
|
|
28
51
|
"subtitle": "Introduce el código de 6 dígitos de tu app autenticadora para @{{username}}",
|
|
@@ -35,19 +58,48 @@
|
|
|
35
58
|
"signup": {
|
|
36
59
|
"welcome": {
|
|
37
60
|
"title": "¡Te damos la bienvenida a Oxy!",
|
|
38
|
-
"subtitle": "Crea tu cuenta en pocos pasos"
|
|
61
|
+
"subtitle": "Crea tu cuenta en pocos pasos",
|
|
62
|
+
"haveAccount": "¿Ya tienes cuenta?",
|
|
63
|
+
"signInCta": "Inicia sesión"
|
|
39
64
|
},
|
|
40
65
|
"identity": {
|
|
41
66
|
"title": "¿Quién eres?",
|
|
42
67
|
"subtitle": "Elige tu usuario e introduce tu correo"
|
|
43
68
|
},
|
|
69
|
+
"username": {
|
|
70
|
+
"helper": "3-30 caracteres, solo letras y números",
|
|
71
|
+
"required": "Por favor, introduce un usuario",
|
|
72
|
+
"minLength": "El usuario debe tener al menos 3 caracteres"
|
|
73
|
+
},
|
|
74
|
+
"email": {
|
|
75
|
+
"required": "Por favor, introduce una dirección de correo electrónico",
|
|
76
|
+
"invalid": "Por favor, introduce una dirección de correo electrónico válida",
|
|
77
|
+
"helper": "Nunca compartiremos tu correo"
|
|
78
|
+
},
|
|
44
79
|
"security": {
|
|
45
80
|
"title": "Protege tu cuenta",
|
|
46
81
|
"subtitle": "Crea una contraseña fuerte para proteger tu cuenta"
|
|
47
82
|
},
|
|
83
|
+
"password": {
|
|
84
|
+
"helper": "Al menos 8 caracteres",
|
|
85
|
+
"required": "Por favor, introduce una contraseña",
|
|
86
|
+
"minLength": "La contraseña debe tener al menos 8 caracteres",
|
|
87
|
+
"confirmRequired": "Por favor, confirma tu contraseña",
|
|
88
|
+
"mismatch": "Las contraseñas no coinciden",
|
|
89
|
+
"confirmHint": "Vuelve a introducir tu contraseña para confirmar"
|
|
90
|
+
},
|
|
48
91
|
"summary": {
|
|
49
92
|
"title": "¡Ya casi!",
|
|
50
|
-
"subtitle": "Revisa tu información y crea tu cuenta"
|
|
93
|
+
"subtitle": "Revisa tu información y crea tu cuenta",
|
|
94
|
+
"sectionTitle": "Información de la cuenta",
|
|
95
|
+
"fields": {
|
|
96
|
+
"username": "Usuario",
|
|
97
|
+
"email": "Correo electrónico",
|
|
98
|
+
"password": "Contraseña"
|
|
99
|
+
},
|
|
100
|
+
"notSet": "Sin definir",
|
|
101
|
+
"securityTip": "Para mayor seguridad, habilita la Autenticación de Dos Factores (TOTP) en Configuración de la cuenta después de crear tu cuenta.",
|
|
102
|
+
"legalReminder": "Al crear una cuenta, aceptas nuestros Términos de servicio y Política de privacidad."
|
|
51
103
|
}
|
|
52
104
|
},
|
|
53
105
|
"profile": {
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
{
|
|
2
|
+
"signin": {
|
|
3
|
+
"title": "Se connecter",
|
|
4
|
+
"subtitle": "Connectez-vous pour continuer",
|
|
5
|
+
"addAccountTitle": "Ajouter un autre compte",
|
|
6
|
+
"addAccountSubtitle": "Se connecter avec un autre compte",
|
|
7
|
+
"username": {
|
|
8
|
+
"label": "Nom d'utilisateur",
|
|
9
|
+
"placeholder": "Entrez votre nom d'utilisateur",
|
|
10
|
+
"helper": "3-30 caractères, lettres et chiffres uniquement",
|
|
11
|
+
"required": "Veuillez entrer votre nom d'utilisateur.",
|
|
12
|
+
"minLength": "Le nom d'utilisateur doit contenir au moins 3 caractères."
|
|
13
|
+
},
|
|
14
|
+
"password": {
|
|
15
|
+
"label": "Mot de passe",
|
|
16
|
+
"placeholder": "Entrez votre mot de passe",
|
|
17
|
+
"required": "Veuillez entrer votre mot de passe.",
|
|
18
|
+
"hint": "Entrez votre mot de passe pour vous connecter"
|
|
19
|
+
},
|
|
20
|
+
"actions": {
|
|
21
|
+
"continue": "Continuer",
|
|
22
|
+
"back": "Retour",
|
|
23
|
+
"signIn": "Se connecter",
|
|
24
|
+
"verify": "Vérifier",
|
|
25
|
+
"openAccountSwitcher": "Changer de compte",
|
|
26
|
+
"openAccountSwitcherSubtitle": "{{count}} autres comptes disponibles",
|
|
27
|
+
"openAccountSwitcherSubtitle_singular": "1 autre compte disponible",
|
|
28
|
+
"openAccountSwitcherSubtitle_zero": "Consultez vos comptes enregistrés",
|
|
29
|
+
"manageAccounts": "Gérer les comptes enregistrés",
|
|
30
|
+
"manageAccountsSubtitle": "Consulter les sessions, supprimer ou se déconnecter",
|
|
31
|
+
"loadingOtherAccounts": "Chargement des autres comptes…",
|
|
32
|
+
"switchAccountFailed": "Nous n'avons pas pu changer de compte. Veuillez réessayer."
|
|
33
|
+
},
|
|
34
|
+
"forgotPrompt": "Mot de passe oublié ?",
|
|
35
|
+
"security": {
|
|
36
|
+
"dataSecure": "Vos données sont cryptées et sécurisées"
|
|
37
|
+
},
|
|
38
|
+
"currentlySignedInAs": "Actuellement connecté en tant que",
|
|
39
|
+
"alreadySignedInWith": "Déjà connecté avec",
|
|
40
|
+
"alreadySignedIn": "Déjà connecté",
|
|
41
|
+
"alreadySignedInMessage": "Ce compte est déjà connecté. Continuer avec ce compte ?",
|
|
42
|
+
"continueWithAccount": "Continuer",
|
|
43
|
+
"currentAccount": "Actuel",
|
|
44
|
+
"or": "ou",
|
|
45
|
+
"viewAllAccounts": "Voir {{count}} de plus",
|
|
46
|
+
"status": {
|
|
47
|
+
"accountSwitched": "Utilisation de {{name}}"
|
|
48
|
+
},
|
|
49
|
+
"totp": {
|
|
50
|
+
"title": "Code à deux facteurs",
|
|
51
|
+
"subtitle": "Entrez le code à 6 chiffres de votre application d'authentification pour @{{username}}",
|
|
52
|
+
"invalidCode": "Code invalide. Veuillez réessayer.",
|
|
53
|
+
"noAccess": "Pas d'accès à votre authentificateur ?",
|
|
54
|
+
"useBackupCode": "Utiliser le code de sauvegarde",
|
|
55
|
+
"useRecoveryKey": "Utiliser la clé de récupération"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"signup": {
|
|
59
|
+
"welcome": {
|
|
60
|
+
"title": "Bienvenue sur Oxy !",
|
|
61
|
+
"subtitle": "Créez votre compte en quelques étapes",
|
|
62
|
+
"haveAccount": "Vous avez déjà un compte ?",
|
|
63
|
+
"signInCta": "Se connecter"
|
|
64
|
+
},
|
|
65
|
+
"identity": {
|
|
66
|
+
"title": "Qui êtes-vous ?",
|
|
67
|
+
"subtitle": "Choisissez votre nom d'utilisateur et entrez votre email"
|
|
68
|
+
},
|
|
69
|
+
"username": {
|
|
70
|
+
"helper": "3-30 caractères, lettres et chiffres uniquement",
|
|
71
|
+
"required": "Veuillez entrer un nom d'utilisateur",
|
|
72
|
+
"minLength": "Le nom d'utilisateur doit contenir au moins 3 caractères"
|
|
73
|
+
},
|
|
74
|
+
"email": {
|
|
75
|
+
"required": "Veuillez entrer une adresse email",
|
|
76
|
+
"invalid": "Veuillez entrer une adresse email valide",
|
|
77
|
+
"helper": "Nous ne partagerons jamais votre email"
|
|
78
|
+
},
|
|
79
|
+
"security": {
|
|
80
|
+
"title": "Sécurisez votre compte",
|
|
81
|
+
"subtitle": "Créez un mot de passe fort pour protéger votre compte"
|
|
82
|
+
},
|
|
83
|
+
"password": {
|
|
84
|
+
"helper": "Au moins 8 caractères",
|
|
85
|
+
"required": "Veuillez entrer un mot de passe",
|
|
86
|
+
"minLength": "Le mot de passe doit contenir au moins 8 caractères",
|
|
87
|
+
"confirmRequired": "Veuillez confirmer votre mot de passe",
|
|
88
|
+
"mismatch": "Les mots de passe ne correspondent pas",
|
|
89
|
+
"confirmHint": "Ré-entrez votre mot de passe pour confirmer"
|
|
90
|
+
},
|
|
91
|
+
"summary": {
|
|
92
|
+
"title": "Presque terminé !",
|
|
93
|
+
"subtitle": "Vérifiez vos informations et créez votre compte",
|
|
94
|
+
"sectionTitle": "Informations du compte",
|
|
95
|
+
"fields": {
|
|
96
|
+
"username": "Nom d'utilisateur",
|
|
97
|
+
"email": "Email",
|
|
98
|
+
"password": "Mot de passe"
|
|
99
|
+
},
|
|
100
|
+
"notSet": "Non défini",
|
|
101
|
+
"securityTip": "Pour une sécurité renforcée, activez l'authentification à deux facteurs (TOTP) dans les paramètres du compte après avoir créé votre compte.",
|
|
102
|
+
"legalReminder": "En créant un compte, vous acceptez nos Conditions d'utilisation et notre Politique de confidentialité."
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"common": {
|
|
106
|
+
"actions": {
|
|
107
|
+
"back": "Retour",
|
|
108
|
+
"continue": "Continuer",
|
|
109
|
+
"next": "Suivant",
|
|
110
|
+
"getStarted": "Commencer",
|
|
111
|
+
"createAccount": "Créer un compte",
|
|
112
|
+
"signIn": "Se connecter",
|
|
113
|
+
"verify": "Vérifier",
|
|
114
|
+
"resetPassword": "Réinitialiser le mot de passe"
|
|
115
|
+
},
|
|
116
|
+
"links": {
|
|
117
|
+
"recoverAccount": "Récupérer votre compte",
|
|
118
|
+
"signUp": "S'inscrire"
|
|
119
|
+
},
|
|
120
|
+
"labels": {
|
|
121
|
+
"username": "Nom d'utilisateur",
|
|
122
|
+
"email": "Email",
|
|
123
|
+
"password": "Mot de passe",
|
|
124
|
+
"confirmPassword": "Confirmer le mot de passe"
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
{
|
|
2
|
+
"signin": {
|
|
3
|
+
"title": "Accedi",
|
|
4
|
+
"subtitle": "Accedi per continuare",
|
|
5
|
+
"addAccountTitle": "Aggiungi un altro account",
|
|
6
|
+
"addAccountSubtitle": "Accedi con un altro account",
|
|
7
|
+
"username": {
|
|
8
|
+
"label": "Nome utente",
|
|
9
|
+
"placeholder": "Inserisci il tuo nome utente",
|
|
10
|
+
"helper": "3-30 caratteri, solo lettere e numeri",
|
|
11
|
+
"required": "Inserisci il tuo nome utente.",
|
|
12
|
+
"minLength": "Il nome utente deve contenere almeno 3 caratteri."
|
|
13
|
+
},
|
|
14
|
+
"password": {
|
|
15
|
+
"label": "Password",
|
|
16
|
+
"placeholder": "Inserisci la tua password",
|
|
17
|
+
"required": "Inserisci la tua password.",
|
|
18
|
+
"hint": "Inserisci la tua password per accedere"
|
|
19
|
+
},
|
|
20
|
+
"actions": {
|
|
21
|
+
"continue": "Continua",
|
|
22
|
+
"back": "Indietro",
|
|
23
|
+
"signIn": "Accedi",
|
|
24
|
+
"verify": "Verifica",
|
|
25
|
+
"openAccountSwitcher": "Passa a un altro account",
|
|
26
|
+
"openAccountSwitcherSubtitle": "{{count}} altri account disponibili",
|
|
27
|
+
"openAccountSwitcherSubtitle_singular": "1 altro account disponibile",
|
|
28
|
+
"openAccountSwitcherSubtitle_zero": "Rivedi i tuoi account salvati",
|
|
29
|
+
"manageAccounts": "Gestisci account salvati",
|
|
30
|
+
"manageAccountsSubtitle": "Rivedi sessioni, rimuovi o disconnetti",
|
|
31
|
+
"loadingOtherAccounts": "Caricamento altri account…",
|
|
32
|
+
"switchAccountFailed": "Non siamo riusciti a cambiare account. Riprova."
|
|
33
|
+
},
|
|
34
|
+
"forgotPrompt": "Password dimenticata?",
|
|
35
|
+
"security": {
|
|
36
|
+
"dataSecure": "I tuoi dati sono crittografati e sicuri"
|
|
37
|
+
},
|
|
38
|
+
"currentlySignedInAs": "Attualmente connesso come",
|
|
39
|
+
"alreadySignedInWith": "Già connesso con",
|
|
40
|
+
"alreadySignedIn": "Già connesso",
|
|
41
|
+
"alreadySignedInMessage": "Questo account è già connesso. Continuare con questo account?",
|
|
42
|
+
"continueWithAccount": "Continua",
|
|
43
|
+
"currentAccount": "Attuale",
|
|
44
|
+
"or": "o",
|
|
45
|
+
"viewAllAccounts": "Visualizza {{count}} altri",
|
|
46
|
+
"status": {
|
|
47
|
+
"accountSwitched": "Ora usando {{name}}"
|
|
48
|
+
},
|
|
49
|
+
"totp": {
|
|
50
|
+
"title": "Codice a due fattori",
|
|
51
|
+
"subtitle": "Inserisci il codice a 6 cifre dalla tua app autenticatore per @{{username}}",
|
|
52
|
+
"invalidCode": "Codice non valido. Riprova.",
|
|
53
|
+
"noAccess": "Nessun accesso al tuo autenticatore?",
|
|
54
|
+
"useBackupCode": "Usa codice di backup",
|
|
55
|
+
"useRecoveryKey": "Usa chiave di recupero"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"signup": {
|
|
59
|
+
"welcome": {
|
|
60
|
+
"title": "Benvenuto su Oxy!",
|
|
61
|
+
"subtitle": "Crea il tuo account in pochi passaggi",
|
|
62
|
+
"haveAccount": "Hai già un account?",
|
|
63
|
+
"signInCta": "Accedi"
|
|
64
|
+
},
|
|
65
|
+
"identity": {
|
|
66
|
+
"title": "Chi sei?",
|
|
67
|
+
"subtitle": "Scegli il tuo nome utente e inserisci la tua email"
|
|
68
|
+
},
|
|
69
|
+
"username": {
|
|
70
|
+
"helper": "3-30 caratteri, solo lettere e numeri",
|
|
71
|
+
"required": "Inserisci un nome utente",
|
|
72
|
+
"minLength": "Il nome utente deve contenere almeno 3 caratteri"
|
|
73
|
+
},
|
|
74
|
+
"email": {
|
|
75
|
+
"required": "Inserisci un indirizzo email",
|
|
76
|
+
"invalid": "Inserisci un indirizzo email valido",
|
|
77
|
+
"helper": "Non condivideremo mai la tua email"
|
|
78
|
+
},
|
|
79
|
+
"security": {
|
|
80
|
+
"title": "Proteggi il tuo account",
|
|
81
|
+
"subtitle": "Crea una password forte per proteggere il tuo account"
|
|
82
|
+
},
|
|
83
|
+
"password": {
|
|
84
|
+
"helper": "Almeno 8 caratteri",
|
|
85
|
+
"required": "Inserisci una password",
|
|
86
|
+
"minLength": "La password deve contenere almeno 8 caratteri",
|
|
87
|
+
"confirmRequired": "Conferma la tua password",
|
|
88
|
+
"mismatch": "Le password non corrispondono",
|
|
89
|
+
"confirmHint": "Reinserisci la tua password per confermare"
|
|
90
|
+
},
|
|
91
|
+
"summary": {
|
|
92
|
+
"title": "Quasi fatto!",
|
|
93
|
+
"subtitle": "Rivedi le tue informazioni e crea il tuo account",
|
|
94
|
+
"sectionTitle": "Informazioni account",
|
|
95
|
+
"fields": {
|
|
96
|
+
"username": "Nome utente",
|
|
97
|
+
"email": "Email",
|
|
98
|
+
"password": "Password"
|
|
99
|
+
},
|
|
100
|
+
"notSet": "Non impostato",
|
|
101
|
+
"securityTip": "Per una maggiore sicurezza, abilita l'autenticazione a due fattori (TOTP) dalle Impostazioni account dopo aver creato il tuo account.",
|
|
102
|
+
"legalReminder": "Creando un account, accetti i nostri Termini di servizio e l'Informativa sulla privacy."
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"common": {
|
|
106
|
+
"actions": {
|
|
107
|
+
"back": "Indietro",
|
|
108
|
+
"continue": "Continua",
|
|
109
|
+
"next": "Avanti",
|
|
110
|
+
"getStarted": "Inizia",
|
|
111
|
+
"createAccount": "Crea account",
|
|
112
|
+
"signIn": "Accedi",
|
|
113
|
+
"verify": "Verifica",
|
|
114
|
+
"resetPassword": "Reimposta password"
|
|
115
|
+
},
|
|
116
|
+
"links": {
|
|
117
|
+
"recoverAccount": "Recupera il tuo account",
|
|
118
|
+
"signUp": "Registrati"
|
|
119
|
+
},
|
|
120
|
+
"labels": {
|
|
121
|
+
"username": "Nome utente",
|
|
122
|
+
"email": "Email",
|
|
123
|
+
"password": "Password",
|
|
124
|
+
"confirmPassword": "Conferma password"
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|