@tap-payments/auth-jsconnect 2.6.7-test → 2.6.7
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 +1 -1
- package/build/@types/app.d.ts +73 -18
- package/build/@types/app.js +19 -1
- package/build/@types/config.d.ts +49 -0
- package/build/@types/config.js +1 -0
- package/build/@types/form.d.ts +14 -3
- package/build/@types/index.d.ts +1 -0
- package/build/@types/index.js +1 -0
- package/build/@types/redux.d.ts +1 -0
- package/build/@types/theme.d.ts +4 -0
- package/build/@types/theme.js +5 -0
- package/build/api/account.d.ts +6 -0
- package/build/api/account.js +16 -2
- package/build/api/auth.d.ts +44 -2
- package/build/api/auth.js +18 -1
- package/build/api/availabilityServices.d.ts +1 -0
- package/build/api/country.d.ts +1 -0
- package/build/api/country.js +8 -1
- package/build/api/data.d.ts +4 -17
- package/build/api/data.js +5 -45
- package/build/api/entity.d.ts +28 -3
- package/build/api/entity.js +23 -10
- package/build/api/firebase.js +68 -8
- package/build/api/index.d.ts +24 -29
- package/build/api/lead.d.ts +27 -3
- package/build/api/lead.js +63 -1
- package/build/api/operator.d.ts +8 -3
- package/build/api/operator.js +4 -16
- package/build/api/user.d.ts +7 -0
- package/build/api/user.js +9 -1
- package/build/app/rootReducer.d.ts +2 -0
- package/build/app/rootReducer.js +5 -1
- package/build/app/settings.d.ts +13 -6
- package/build/app/settings.js +119 -77
- package/build/app/store.d.ts +4 -0
- package/build/assets/locales/ar.json +346 -143
- package/build/assets/locales/en.json +343 -143
- package/build/components/AnimationFlow/AnimationFlow.d.ts +14 -3
- package/build/components/AnimationFlow/AnimationFlow.js +16 -5
- package/build/components/AnimationFlow/BottomSheet.d.ts +7 -2
- package/build/components/AnimationFlow/BottomSheet.js +44 -15
- package/build/components/AnimationFlow/Dialog.d.ts +11 -2
- package/build/components/AnimationFlow/Dialog.js +10 -12
- package/build/components/AnimationFlow/Loader.d.ts +6 -1
- package/build/components/AnimationFlow/Loader.js +17 -5
- package/build/components/ArabicDatePicker/ArabicDatePicker.d.ts +1 -1
- package/build/components/ArabicDatePicker/ArabicDatePicker.js +2 -2
- package/build/components/ArabicDatePicker/style.css +32 -3
- package/build/components/DatePicker/DatePicker.d.ts +1 -1
- package/build/components/DatePicker/DatePicker.js +2 -2
- package/build/components/ExpandIcon/ExpandIcon.d.ts +2 -0
- package/build/components/Footer/Footer.js +2 -1
- package/build/components/Input/Input.js +1 -1
- package/build/components/Providers/ThemeProvider.js +3 -3
- package/build/components/Slide/Slide.d.ts +1 -1
- package/build/components/Tooltip/Tooltip.js +1 -1
- package/build/constants/api.d.ts +9 -7
- package/build/constants/api.js +19 -15
- package/build/constants/app.d.ts +56 -0
- package/build/constants/app.js +446 -21
- package/build/constants/assets.d.ts +4 -0
- package/build/constants/assets.js +5 -1
- package/build/constants/dummy.d.ts +43 -196
- package/build/constants/dummy.js +614 -6141
- package/build/constants/flows.d.ts +24 -0
- package/build/constants/flows.js +25 -0
- package/build/constants/index.d.ts +1 -0
- package/build/constants/index.js +1 -0
- package/build/constants/validation.d.ts +5 -0
- package/build/constants/validation.js +6 -1
- package/build/features/app/auth/authStore.d.ts +103 -0
- package/build/features/app/auth/authStore.js +1184 -0
- package/build/features/app/bank/bankStore.d.ts +13 -18
- package/build/features/app/bank/bankStore.js +194 -161
- package/build/features/app/board/boardStore.d.ts +33 -0
- package/build/features/app/board/boardStore.js +269 -0
- package/build/features/app/brand/brandStore.d.ts +17 -31
- package/build/features/app/brand/brandStore.js +272 -266
- package/build/features/app/business/businessStore.d.ts +28 -10
- package/build/features/app/business/businessStore.js +363 -216
- package/build/features/app/connect/connectStore.d.ts +39 -15
- package/build/features/app/connect/connectStore.js +321 -216
- package/build/features/app/connectExpress/connectExpressStore.d.ts +63 -29
- package/build/features/app/connectExpress/connectExpressStore.js +744 -382
- package/build/features/app/entity/entityStore.d.ts +20 -34
- package/build/features/app/entity/entityStore.js +224 -249
- package/build/features/app/individual/individualStore.d.ts +22 -32
- package/build/features/app/individual/individualStore.js +331 -290
- package/build/features/app/password/passwordStore.d.ts +33 -18
- package/build/features/app/password/passwordStore.js +263 -223
- package/build/features/app/signIn/signInStore.js +19 -15
- package/build/features/app/tax/taxStore.d.ts +13 -7
- package/build/features/app/tax/taxStore.js +178 -144
- package/build/features/auth/Auth.d.ts +14 -0
- package/build/features/auth/Auth.js +168 -0
- package/build/features/auth/index.d.ts +1 -0
- package/build/features/auth/index.js +1 -0
- package/build/features/auth/screens/AccountCreatedLoader/AccountCreatedLoader.d.ts +5 -0
- package/build/features/auth/screens/AccountCreatedLoader/AccountCreatedLoader.js +36 -0
- package/build/features/auth/screens/AccountCreatedLoader/index.d.ts +2 -0
- package/build/features/auth/screens/AccountCreatedLoader/index.js +2 -0
- package/build/features/auth/screens/AccountNotFound/AccountNotFound.d.ts +5 -0
- package/build/features/auth/screens/AccountNotFound/AccountNotFound.js +71 -0
- package/build/features/auth/screens/AccountNotFound/index.d.ts +2 -0
- package/build/features/auth/screens/AccountNotFound/index.js +2 -0
- package/build/features/auth/screens/AuthMerchant/AuthMerchant.d.ts +5 -0
- package/build/features/auth/screens/AuthMerchant/AuthMerchant.js +73 -0
- package/build/features/{connectExpress/screens/AuthenticationList → auth/screens/AuthMerchant}/MerchantList.d.ts +2 -1
- package/build/features/auth/screens/AuthMerchant/MerchantList.js +64 -0
- package/build/features/auth/screens/AuthMerchant/index.d.ts +2 -0
- package/build/features/auth/screens/AuthMerchant/index.js +2 -0
- package/build/features/auth/screens/AuthMerchant/validation.d.ts +8 -0
- package/build/features/auth/screens/AuthMerchant/validation.js +4 -0
- package/build/features/auth/screens/AuthSwitch/AuthSwitch.d.ts +5 -0
- package/build/features/auth/screens/AuthSwitch/AuthSwitch.js +58 -0
- package/build/features/auth/screens/AuthSwitch/index.d.ts +3 -0
- package/build/features/auth/screens/AuthSwitch/index.js +2 -0
- package/build/features/auth/screens/AuthenticationList/AuthenticationList.d.ts +5 -0
- package/build/features/auth/screens/AuthenticationList/AuthenticationList.js +96 -0
- package/build/features/auth/screens/AuthenticationList/BrandList.d.ts +10 -0
- package/build/features/auth/screens/AuthenticationList/BrandList.js +81 -0
- package/build/features/auth/screens/AuthenticationList/EntityLegalName.d.ts +3 -0
- package/build/features/auth/screens/AuthenticationList/EntityLegalName.js +48 -0
- package/build/features/auth/screens/AuthenticationList/EntityLicenseType.d.ts +31 -0
- package/build/features/auth/screens/AuthenticationList/EntityLicenseType.js +90 -0
- package/build/features/auth/screens/AuthenticationList/EntityList.d.ts +11 -0
- package/build/features/auth/screens/AuthenticationList/EntityList.js +138 -0
- package/build/features/auth/screens/AuthenticationList/LicenseNumber.d.ts +3 -0
- package/build/features/auth/screens/AuthenticationList/LicenseNumber.js +36 -0
- package/build/features/auth/screens/AuthenticationList/index.d.ts +3 -0
- package/build/features/auth/screens/AuthenticationList/index.js +2 -0
- package/build/features/auth/screens/AuthenticationList/validation.d.ts +20 -0
- package/build/features/auth/screens/AuthenticationList/validation.js +68 -0
- package/build/features/auth/screens/BusinessCountry/BusinessCountry.d.ts +5 -0
- package/build/features/auth/screens/BusinessCountry/BusinessCountry.js +111 -0
- package/build/features/auth/screens/BusinessCountry/index.d.ts +3 -0
- package/build/features/auth/screens/BusinessCountry/index.js +2 -0
- package/build/features/auth/screens/CivilID/CivilID.d.ts +5 -0
- package/build/features/auth/screens/CivilID/CivilID.js +57 -0
- package/build/features/auth/screens/CivilID/IDNumber.d.ts +8 -0
- package/build/features/auth/screens/CivilID/IDNumber.js +54 -0
- package/build/features/auth/screens/CivilID/index.d.ts +3 -0
- package/build/features/auth/screens/CivilID/index.js +2 -0
- package/build/features/auth/screens/CivilID/validation.d.ts +8 -0
- package/build/features/auth/screens/CivilID/validation.js +4 -0
- package/build/features/auth/screens/DOB/DOB.js +47 -0
- package/build/features/auth/screens/DOB/DOBForm.d.ts +5 -0
- package/build/features/auth/screens/DOB/DOBForm.js +59 -0
- package/build/features/auth/screens/DOB/index.d.ts +3 -0
- package/build/features/auth/screens/DOB/index.js +2 -0
- package/build/features/auth/screens/DOB/validation.d.ts +8 -0
- package/build/features/auth/screens/DOB/validation.js +4 -0
- package/build/features/auth/screens/Email/Email.d.ts +5 -0
- package/build/features/auth/screens/Email/Email.js +57 -0
- package/build/features/auth/screens/Email/EmailField.d.ts +8 -0
- package/build/features/auth/screens/Email/EmailField.js +52 -0
- package/build/features/auth/screens/Email/index.d.ts +3 -0
- package/build/features/auth/screens/Email/index.js +2 -0
- package/build/features/auth/screens/Email/validation.d.ts +8 -0
- package/build/features/auth/screens/Email/validation.js +4 -0
- package/build/features/auth/screens/EmailSent/EmailSent.d.ts +5 -0
- package/build/features/auth/screens/EmailSent/EmailSent.js +79 -0
- package/build/features/auth/screens/EmailSent/index.d.ts +2 -0
- package/build/features/auth/screens/EmailSent/index.js +2 -0
- package/build/features/auth/screens/MigratingData/MigratingData.d.ts +5 -0
- package/build/features/auth/screens/MigratingData/MigratingData.js +44 -0
- package/build/features/auth/screens/MigratingData/index.d.ts +2 -0
- package/build/features/auth/screens/MigratingData/index.js +2 -0
- package/build/features/auth/screens/Mobile/Mobile.d.ts +5 -0
- package/build/features/auth/screens/Mobile/Mobile.js +82 -0
- package/build/features/auth/screens/Mobile/MobileNumber.d.ts +13 -0
- package/build/features/auth/screens/Mobile/MobileNumber.js +156 -0
- package/build/features/auth/screens/Mobile/index.d.ts +3 -0
- package/build/features/auth/screens/Mobile/index.js +2 -0
- package/build/features/auth/screens/Mobile/validation.d.ts +8 -0
- package/build/features/auth/screens/Mobile/validation.js +38 -0
- package/build/features/auth/screens/NID/IDNumber.d.ts +7 -0
- package/build/features/auth/screens/NID/IDNumber.js +55 -0
- package/build/features/auth/screens/NID/NID.d.ts +5 -0
- package/build/features/auth/screens/NID/NID.js +56 -0
- package/build/features/auth/screens/NID/index.d.ts +3 -0
- package/build/features/auth/screens/NID/index.js +2 -0
- package/build/features/auth/screens/NID/validation.d.ts +8 -0
- package/build/features/auth/screens/NID/validation.js +10 -0
- package/build/features/auth/screens/OTP/OTP.js +118 -0
- package/build/features/{connectExpress/screens/IdentityOTP → auth/screens/OTP}/OTPInput.js +27 -7
- package/build/features/auth/screens/OperatorError/OperatorError.d.ts +5 -0
- package/build/features/auth/screens/OperatorError/OperatorError.js +9 -0
- package/build/features/auth/screens/OperatorError/index.d.ts +3 -0
- package/build/features/auth/screens/OperatorError/index.js +2 -0
- package/build/features/auth/screens/Password/Password.d.ts +5 -0
- package/build/features/auth/screens/Password/Password.js +61 -0
- package/build/features/auth/screens/Password/PasswordField.d.ts +5 -0
- package/build/features/auth/screens/Password/PasswordField.js +28 -0
- package/build/features/auth/screens/Password/index.d.ts +3 -0
- package/build/features/auth/screens/Password/index.js +2 -0
- package/build/features/auth/screens/Password/validation.d.ts +8 -0
- package/build/features/auth/screens/Password/validation.js +4 -0
- package/build/features/auth/screens/PreparingData/PreparingData.d.ts +5 -0
- package/build/features/auth/screens/PreparingData/PreparingData.js +44 -0
- package/build/features/auth/screens/PreparingData/index.d.ts +2 -0
- package/build/features/auth/screens/PreparingData/index.js +2 -0
- package/build/features/auth/screens/ResetPasswordMessage/ResetPasswordMessage.d.ts +5 -0
- package/build/features/auth/screens/ResetPasswordMessage/ResetPasswordMessage.js +21 -0
- package/build/features/auth/screens/ResetPasswordMessage/index.d.ts +3 -0
- package/build/features/auth/screens/ResetPasswordMessage/index.js +2 -0
- package/build/features/auth/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
- package/build/features/auth/screens/VerifyNafath/VerifyNafath.js +35 -0
- package/build/features/auth/screens/VerifyNafath/index.d.ts +3 -0
- package/build/features/auth/screens/VerifyNafath/index.js +2 -0
- package/build/features/auth/screens/VerifyPACI/VerifyPACI.d.ts +5 -0
- package/build/features/auth/screens/VerifyPACI/VerifyPACI.js +34 -0
- package/build/features/auth/screens/VerifyPACI/index.d.ts +3 -0
- package/build/features/auth/screens/VerifyPACI/index.js +2 -0
- package/build/features/bank/Bank.d.ts +6 -1
- package/build/features/bank/Bank.js +26 -12
- package/build/features/bank/screens/BankDetails/BankDetails.js +21 -7
- package/build/features/bank/screens/OperatorError/OperatorError.d.ts +5 -0
- package/build/features/bank/screens/OperatorError/OperatorError.js +9 -0
- package/build/features/bank/screens/OperatorError/index.d.ts +3 -0
- package/build/features/bank/screens/OperatorError/index.js +2 -0
- package/build/features/bank/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
- package/build/features/bank/screens/Verify/Verify.js +8 -7
- package/build/features/board/Board.d.ts +13 -0
- package/build/features/board/Board.js +87 -0
- package/build/features/board/index.d.ts +1 -0
- package/build/features/board/index.js +1 -0
- package/build/features/board/screens/OperatorError/OperatorError.d.ts +5 -0
- package/build/features/board/screens/OperatorError/OperatorError.js +9 -0
- package/build/features/board/screens/OperatorError/index.d.ts +3 -0
- package/build/features/board/screens/OperatorError/index.js +2 -0
- package/build/features/board/screens/PrepareDataLoading/PrepareDataLoading.d.ts +4 -0
- package/build/features/board/screens/PrepareDataLoading/PrepareDataLoading.js +10 -0
- package/build/features/board/screens/PrepareDataLoading/index.d.ts +2 -0
- package/build/features/board/screens/PrepareDataLoading/index.js +2 -0
- package/build/features/board/screens/ResetPasswordSuccess/ResetPasswordSuccess.d.ts +5 -0
- package/build/features/board/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +21 -0
- package/build/features/board/screens/ResetPasswordSuccess/index.d.ts +3 -0
- package/build/features/board/screens/ResetPasswordSuccess/index.js +2 -0
- package/build/features/board/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.d.ts +3 -0
- package/build/features/board/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +44 -0
- package/build/features/board/screens/SuccessWithFlowButtons/index.d.ts +2 -0
- package/build/features/board/screens/SuccessWithFlowButtons/index.js +2 -0
- package/build/features/board/screens/Verify/OTPInput.d.ts +7 -0
- package/build/features/{business/screens/OTP → board/screens/Verify}/OTPInput.js +9 -7
- package/build/features/{connectExpress/screens/IdentityOTP/OTP.js → board/screens/Verify/Verify.js} +25 -37
- package/build/features/board/screens/Verify/index.d.ts +2 -0
- package/build/features/board/screens/Verify/index.js +2 -0
- package/build/features/brand/Brand.d.ts +6 -1
- package/build/features/brand/Brand.js +26 -12
- package/build/features/brand/screens/BrandActivities/ActivitiesList.d.ts +9 -9
- package/build/features/brand/screens/BrandActivities/BrandActivities.js +49 -12
- package/build/features/brand/screens/BrandActivities/CustomerBase.d.ts +6 -6
- package/build/features/brand/screens/BrandActivities/CustomerBase.js +1 -1
- package/build/features/brand/screens/BrandActivities/ExpectedSalesRange.js +5 -2
- package/build/features/brand/screens/BrandActivities/RefundPolicy.d.ts +4 -4
- package/build/features/brand/screens/BrandActivities/RefundPolicy.js +1 -1
- package/build/features/brand/screens/BrandActivities/TAC.d.ts +1 -1
- package/build/features/brand/screens/BrandActivities/TAC.js +1 -1
- package/build/features/brand/screens/BrandActivities/TransactionPolicy.js +1 -1
- package/build/features/brand/screens/BrandInfo/BrandInfo.js +27 -7
- package/build/features/brand/screens/BrandInfo/BrandName.js +5 -2
- package/build/features/brand/screens/BrandInfo/validation.js +2 -2
- package/build/features/brand/screens/BrandSegmentInfo/BrandSegmentInfo.js +23 -7
- package/build/features/brand/screens/OperatorError/OperatorError.d.ts +5 -0
- package/build/features/brand/screens/OperatorError/OperatorError.js +9 -0
- package/build/features/brand/screens/OperatorError/index.d.ts +3 -0
- package/build/features/brand/screens/OperatorError/index.js +2 -0
- package/build/features/brand/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
- package/build/features/brand/screens/Verify/Verify.js +4 -3
- package/build/features/business/Business.js +20 -12
- package/build/features/business/screens/Activities/Activities.js +27 -10
- package/build/features/business/screens/Activities/ActivitiesList.d.ts +4 -4
- package/build/features/business/screens/Activities/ActivitiesList.js +1 -1
- package/build/features/business/screens/Activities/OperationStartDate.d.ts +5 -3
- package/build/features/business/screens/Activities/OperationStartDate.js +2 -2
- package/build/features/business/screens/BrandDetails/SalesChannel.d.ts +2 -2
- package/build/features/business/screens/BusinessType/BusinessType.js +24 -8
- package/build/features/business/screens/BusinessType/EntityName.js +3 -3
- package/build/features/business/screens/BusinessType/LicenseList.js +3 -3
- package/build/features/business/screens/BusinessType/LicenseNumber.js +10 -9
- package/build/features/business/screens/BusinessType/LicenseType.d.ts +4 -4
- package/build/features/business/screens/BusinessType/validation.d.ts +10 -0
- package/build/features/business/screens/BusinessType/validation.js +16 -0
- package/build/features/business/screens/CivilID/CivilID.js +1 -1
- package/build/features/business/screens/Customers/CustomerLocations.d.ts +14 -12
- package/build/features/business/screens/Customers/CustomerLocations.js +5 -3
- package/build/features/business/screens/Customers/Customers.js +51 -11
- package/build/features/business/screens/Customers/ExpectedCustomers.d.ts +3 -1
- package/build/features/business/screens/Customers/ExpectedCustomers.js +5 -3
- package/build/features/business/screens/Customers/ExpectedSalesRange.d.ts +3 -1
- package/build/features/business/screens/Customers/ExpectedSalesRange.js +10 -4
- package/build/features/business/screens/Customers/RefundPolicy.d.ts +12 -5
- package/build/features/business/screens/Customers/RefundPolicy.js +13 -13
- package/build/features/business/screens/Customers/TransactionPolicy.d.ts +4 -1
- package/build/features/business/screens/Customers/TransactionPolicy.js +8 -5
- package/build/features/business/screens/Customers/validation.d.ts +6 -6
- package/build/features/business/screens/Customers/validation.js +3 -8
- package/build/features/business/screens/DOB/DOB.d.ts +6 -0
- package/build/features/business/screens/DOB/DOB.js +45 -0
- package/build/features/business/screens/DOB/DOBForm.d.ts +5 -0
- package/build/features/business/screens/DOB/DOBForm.js +72 -0
- package/build/features/business/screens/DOB/index.d.ts +3 -0
- package/build/features/business/screens/DOB/index.js +2 -0
- package/build/features/business/screens/DOB/validation.d.ts +8 -0
- package/build/features/business/screens/DOB/validation.js +4 -0
- package/build/features/business/screens/IDBOD/ID.js +6 -2
- package/build/features/business/screens/IDBOD/IDBOD.js +18 -19
- package/build/features/business/screens/IDBOD/validation.d.ts +7 -0
- package/build/features/business/screens/IDBOD/validation.js +4 -1
- package/build/features/business/screens/OperatorError/OperatorError.d.ts +5 -0
- package/build/features/business/screens/OperatorError/OperatorError.js +9 -0
- package/build/features/business/screens/OperatorError/index.d.ts +3 -0
- package/build/features/business/screens/OperatorError/index.js +2 -0
- package/build/features/business/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +14 -3
- package/build/features/business/screens/Verify/Verify.js +16 -5
- package/build/features/business/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
- package/build/features/business/screens/VerifyNafath/VerifyNafath.js +35 -0
- package/build/features/business/screens/VerifyNafath/index.d.ts +3 -0
- package/build/features/business/screens/VerifyNafath/index.js +2 -0
- package/build/features/connect/Connect.d.ts +5 -1
- package/build/features/connect/Connect.js +48 -31
- package/build/features/connect/screens/BrandSegment/BrandSegment.js +4 -26
- package/build/features/connect/screens/BrandSegment/TeamSize.js +1 -1
- package/build/features/connect/screens/BrandSegment/validation.d.ts +0 -9
- package/build/features/connect/screens/BrandSegment/validation.js +0 -3
- package/build/features/connect/screens/BusinessCountry/BusinessCountry.d.ts +5 -0
- package/build/features/connect/screens/BusinessCountry/BusinessCountry.js +113 -0
- package/build/features/connect/screens/BusinessCountry/index.d.ts +3 -0
- package/build/features/connect/screens/BusinessCountry/index.js +2 -0
- package/build/features/connect/screens/CivilID/CivilID.js +12 -4
- package/build/features/{connectExpress/screens/NID → connect/screens/DOB}/DOB.d.ts +1 -2
- package/build/features/connect/screens/{NID → DOB}/DOB.js +2 -2
- package/build/features/connect/screens/DOB/DOBForm.d.ts +5 -0
- package/build/features/connect/screens/DOB/DOBForm.js +59 -0
- package/build/features/connect/screens/DOB/index.d.ts +3 -0
- package/build/features/connect/screens/DOB/index.js +2 -0
- package/build/features/connect/screens/DOB/validation.d.ts +8 -0
- package/build/features/connect/screens/DOB/validation.js +4 -0
- package/build/features/connect/screens/Individual/Individual.js +12 -6
- package/build/features/connect/screens/Individual/MobileNumber.js +8 -7
- package/build/features/connect/screens/Individual/validation.js +11 -3
- package/build/features/connect/screens/Merchant/BrandList.js +3 -3
- package/build/features/connect/screens/Merchant/BrandName.js +5 -2
- package/build/features/connect/screens/Merchant/Merchant.js +1 -1
- package/build/features/connect/screens/Merchant/SalesChannels.js +1 -1
- package/build/features/connect/screens/Merchant/validation.js +2 -2
- package/build/features/connect/screens/Mobile/Mobile.js +14 -7
- package/build/features/connect/screens/Mobile/MobileNumber.js +15 -11
- package/build/features/connect/screens/Mobile/validation.js +11 -3
- package/build/features/connect/screens/NID/IDNumber.d.ts +1 -0
- package/build/features/connect/screens/NID/IDNumber.js +2 -2
- package/build/features/connect/screens/NID/NID.js +10 -13
- package/build/features/connect/screens/NID/validation.d.ts +0 -3
- package/build/features/connect/screens/NID/validation.js +0 -1
- package/build/features/connect/screens/OTP/OTP.js +7 -7
- package/build/features/connect/screens/OTP/OTPInput.js +3 -11
- package/build/features/connect/screens/OperatorError/OperatorError.d.ts +5 -0
- package/build/features/connect/screens/OperatorError/OperatorError.js +9 -0
- package/build/features/connect/screens/OperatorError/index.d.ts +3 -0
- package/build/features/connect/screens/OperatorError/index.js +2 -0
- package/build/features/connect/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
- package/build/features/connect/screens/VerifyNafath/VerifyNafath.js +35 -0
- package/build/features/connect/screens/VerifyNafath/index.d.ts +3 -0
- package/build/features/connect/screens/VerifyNafath/index.js +2 -0
- package/build/features/connectExpress/ConnectExpress.d.ts +5 -2
- package/build/features/connectExpress/ConnectExpress.js +69 -36
- package/build/features/connectExpress/screens/AccountAlreadyCreated/AccountAlreadyCreated.js +14 -2
- package/build/features/connectExpress/screens/AccountCreatedLoader/AccountCreatedLoader.d.ts +5 -0
- package/build/features/connectExpress/screens/AccountCreatedLoader/AccountCreatedLoader.js +36 -0
- package/build/features/connectExpress/screens/AccountCreatedLoader/index.d.ts +2 -0
- package/build/features/connectExpress/screens/AccountCreatedLoader/index.js +2 -0
- package/build/features/connectExpress/screens/AuthMerchant/AuthMerchant.d.ts +5 -0
- package/build/features/connectExpress/screens/AuthMerchant/AuthMerchant.js +74 -0
- package/build/features/connectExpress/screens/{AuthenticationList/TerminalList.d.ts → AuthMerchant/MerchantList.d.ts} +4 -3
- package/build/features/connectExpress/screens/AuthMerchant/MerchantList.js +64 -0
- package/build/features/connectExpress/screens/AuthMerchant/index.d.ts +2 -0
- package/build/features/connectExpress/screens/AuthMerchant/index.js +2 -0
- package/build/features/connectExpress/screens/AuthMerchant/validation.d.ts +8 -0
- package/build/features/connectExpress/screens/AuthMerchant/validation.js +4 -0
- package/build/features/connectExpress/screens/AuthenticationList/AuthenticationList.js +28 -17
- package/build/features/connectExpress/screens/AuthenticationList/EntityLegalName.d.ts +3 -0
- package/build/features/connectExpress/screens/AuthenticationList/EntityLegalName.js +48 -0
- package/build/features/connectExpress/screens/AuthenticationList/EntityLicenseType.d.ts +31 -0
- package/build/features/connectExpress/screens/AuthenticationList/EntityLicenseType.js +90 -0
- package/build/features/connectExpress/screens/AuthenticationList/EntityList.d.ts +3 -3
- package/build/features/connectExpress/screens/AuthenticationList/EntityList.js +52 -10
- package/build/features/connectExpress/screens/AuthenticationList/LicenseNumber.d.ts +3 -0
- package/build/features/connectExpress/screens/AuthenticationList/LicenseNumber.js +36 -0
- package/build/features/connectExpress/screens/AuthenticationList/validation.d.ts +13 -10
- package/build/features/connectExpress/screens/AuthenticationList/validation.js +66 -7
- package/build/features/connectExpress/screens/BusinessCountry/BusinessCountry.d.ts +5 -0
- package/build/features/connectExpress/screens/BusinessCountry/BusinessCountry.js +111 -0
- package/build/features/connectExpress/screens/BusinessCountry/index.d.ts +3 -0
- package/build/features/connectExpress/screens/BusinessCountry/index.js +2 -0
- package/build/features/connectExpress/screens/CivilID/CivilID.js +16 -5
- package/build/features/connectExpress/screens/CivilID/IDNumber.js +7 -2
- package/build/features/connectExpress/screens/CivilIDMissed/CivilID.js +2 -2
- package/build/features/connectExpress/screens/CollectBusinessInfo/BrandName.js +5 -2
- package/build/features/connectExpress/screens/CollectBusinessInfo/CollectBusinessInfo.js +20 -5
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseList.js +6 -5
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseNumber.js +9 -8
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.d.ts +4 -4
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.js +1 -1
- package/build/features/connectExpress/screens/CollectBusinessInfo/TAC.d.ts +1 -1
- package/build/features/connectExpress/screens/CollectBusinessInfo/validation.d.ts +13 -0
- package/build/features/connectExpress/screens/CollectBusinessInfo/validation.js +68 -1
- package/build/features/connectExpress/screens/CollectIndividualInfo/CollectIndividualInfo.js +34 -7
- package/build/features/connectExpress/screens/CollectIndividualInfo/MobileNumber.js +9 -8
- package/build/features/connectExpress/screens/CollectIndividualInfo/validation.js +11 -3
- package/build/features/connectExpress/screens/CreateAccountLoader/CreateAccountLoader.js +14 -24
- package/build/features/connectExpress/screens/DOB/DOB.d.ts +6 -0
- package/build/features/connectExpress/screens/{NID → DOB}/DOB.js +3 -3
- package/build/features/connectExpress/screens/DOB/DOBForm.d.ts +5 -0
- package/build/features/connectExpress/screens/DOB/DOBForm.js +63 -0
- package/build/features/connectExpress/screens/DOB/index.d.ts +3 -0
- package/build/features/connectExpress/screens/DOB/index.js +2 -0
- package/build/features/connectExpress/screens/DOB/validation.d.ts +8 -0
- package/build/features/connectExpress/screens/DOB/validation.js +4 -0
- package/build/features/connectExpress/screens/IdentityVerifyNafath/IdentityVerifyNafath.d.ts +5 -0
- package/build/features/connectExpress/screens/IdentityVerifyNafath/IdentityVerifyNafath.js +35 -0
- package/build/features/connectExpress/screens/IdentityVerifyNafath/index.d.ts +3 -0
- package/build/features/connectExpress/screens/IdentityVerifyNafath/index.js +2 -0
- package/build/features/connectExpress/screens/IdentityVerifyPACI/VerifyPACI.js +2 -2
- package/build/features/connectExpress/screens/Mobile/Mobile.js +17 -7
- package/build/features/connectExpress/screens/Mobile/MobileNumber.js +18 -14
- package/build/features/connectExpress/screens/Mobile/TAC.js +1 -1
- package/build/features/connectExpress/screens/Mobile/validation.js +21 -6
- package/build/features/connectExpress/screens/NID/IDNumber.d.ts +1 -0
- package/build/features/connectExpress/screens/NID/IDNumber.js +2 -2
- package/build/features/connectExpress/screens/NID/NID.js +15 -12
- package/build/features/connectExpress/screens/NID/TAC.d.ts +1 -1
- package/build/features/connectExpress/screens/NID/TAC.js +2 -2
- package/build/features/connectExpress/screens/NID/validation.d.ts +0 -3
- package/build/features/connectExpress/screens/NID/validation.js +0 -2
- package/build/features/connectExpress/screens/NIDMissed/IDNumber.js +6 -2
- package/build/features/connectExpress/screens/NIDMissed/NID.js +10 -8
- package/build/features/connectExpress/screens/NIDMissed/validation.d.ts +7 -0
- package/build/features/connectExpress/screens/NIDMissed/validation.js +4 -1
- package/build/features/connectExpress/screens/OTP/OTP.js +14 -16
- package/build/features/connectExpress/screens/OTP/OTPInput.js +12 -10
- package/build/features/connectExpress/screens/OperatorError/OperatorError.d.ts +5 -0
- package/build/features/connectExpress/screens/OperatorError/OperatorError.js +9 -0
- package/build/features/connectExpress/screens/OperatorError/index.d.ts +3 -0
- package/build/features/connectExpress/screens/OperatorError/index.js +2 -0
- package/build/features/connectExpress/screens/PrepareDataLoading/PrepareDataLoading.d.ts +5 -0
- package/build/features/connectExpress/screens/PrepareDataLoading/PrepareDataLoading.js +34 -0
- package/build/features/connectExpress/screens/PrepareDataLoading/index.d.ts +2 -0
- package/build/features/connectExpress/screens/PrepareDataLoading/index.js +2 -0
- package/build/features/connectExpress/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +3 -4
- package/build/features/connectExpress/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
- package/build/features/connectExpress/screens/VerifyNafath/VerifyNafath.js +35 -0
- package/build/features/connectExpress/screens/VerifyNafath/index.d.ts +3 -0
- package/build/features/connectExpress/screens/VerifyNafath/index.js +2 -0
- package/build/features/entity/Entity.d.ts +5 -1
- package/build/features/entity/Entity.js +26 -12
- package/build/features/entity/screens/EntityCapital/ActivityList.d.ts +4 -4
- package/build/features/entity/screens/EntityCapital/CapitalPaid.js +5 -3
- package/build/features/entity/screens/EntityCapital/CapitalShareValue.js +6 -4
- package/build/features/entity/screens/EntityCapital/EntityCapital.js +34 -10
- package/build/features/entity/screens/EntityName/EntityName.js +44 -19
- package/build/features/entity/screens/EntityName/EntityTypeList.d.ts +9 -9
- package/build/features/entity/screens/EntityName/EntityTypeList.js +2 -3
- package/build/features/entity/screens/EntityName/ExpiryDate.d.ts +2 -2
- package/build/features/entity/screens/EntityName/ExpiryDate.js +13 -8
- package/build/features/entity/screens/EntityName/IssuingDate.d.ts +2 -2
- package/build/features/entity/screens/EntityName/IssuingDate.js +15 -8
- package/build/features/entity/screens/EntityName/LegalName.js +1 -13
- package/build/features/entity/screens/EntityName/LicenseNumber.js +10 -11
- package/build/features/entity/screens/EntityName/UnifiedNumber.js +4 -6
- package/build/features/entity/screens/EntityName/validation.d.ts +31 -3
- package/build/features/entity/screens/EntityName/validation.js +38 -9
- package/build/features/entity/screens/OperatorError/OperatorError.d.ts +5 -0
- package/build/features/entity/screens/OperatorError/OperatorError.js +9 -0
- package/build/features/entity/screens/OperatorError/index.d.ts +3 -0
- package/build/features/entity/screens/OperatorError/index.js +2 -0
- package/build/features/entity/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
- package/build/features/entity/screens/Verify/Verify.js +4 -3
- package/build/features/featuresScreens.d.ts +2 -0
- package/build/features/featuresScreens.js +250 -16
- package/build/features/individual/Individual.d.ts +5 -1
- package/build/features/individual/Individual.js +26 -12
- package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.d.ts +2 -2
- package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.js +55 -15
- package/build/features/individual/screens/AdditionalIndividualInfo/IsAuthorizedSwitch.d.ts +36 -0
- package/build/features/individual/screens/AdditionalIndividualInfo/IsAuthorizedSwitch.js +76 -0
- package/build/features/individual/screens/AdditionalIndividualInfo/MonthlyIncome.js +5 -2
- package/build/features/individual/screens/AdditionalIndividualInfo/PEPSwitch.d.ts +4 -4
- package/build/features/individual/screens/AdditionalIndividualInfo/ShareValue.js +7 -4
- package/build/features/individual/screens/AdditionalIndividualInfo/validation.d.ts +4 -1
- package/build/features/individual/screens/AdditionalIndividualInfo/validation.js +4 -3
- package/build/features/individual/screens/IndividualList/IndividualList.d.ts +4 -4
- package/build/features/individual/screens/IndividualList/IndividualList.js +21 -6
- package/build/features/individual/screens/IndividualList/MobileNumber.js +8 -10
- package/build/features/individual/screens/IndividualList/UserList.js +13 -9
- package/build/features/individual/screens/IndividualList/validation.js +11 -4
- package/build/features/individual/screens/IndividualPersonalInfo/Gender.d.ts +4 -4
- package/build/features/individual/screens/IndividualPersonalInfo/ID.js +6 -2
- package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.d.ts +2 -2
- package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.js +79 -21
- package/build/features/individual/screens/IndividualPersonalInfo/MobileNumber.js +6 -5
- package/build/features/individual/screens/IndividualPersonalInfo/validation.d.ts +1 -1
- package/build/features/individual/screens/IndividualPersonalInfo/validation.js +75 -63
- package/build/features/individual/screens/IndividualPhoneInfo/MobileNumber.js +9 -11
- package/build/features/individual/screens/IndividualPhoneInfo/PhoneInfo.js +1 -1
- package/build/features/individual/screens/IndividualPhoneInfo/validation.js +11 -3
- package/build/features/individual/screens/OperatorError/OperatorError.d.ts +5 -0
- package/build/features/individual/screens/OperatorError/OperatorError.js +9 -0
- package/build/features/individual/screens/OperatorError/index.d.ts +3 -0
- package/build/features/individual/screens/OperatorError/index.js +2 -0
- package/build/features/individual/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
- package/build/features/individual/screens/Verify/Verify.js +4 -3
- package/build/features/password/Password.d.ts +5 -1
- package/build/features/password/Password.js +90 -33
- package/build/features/password/screens/CreatePassword/CreatePassword.js +10 -4
- package/build/features/password/screens/OTP/OTP.js +4 -4
- package/build/features/password/screens/OperatorError/OperatorError.d.ts +5 -0
- package/build/features/password/screens/OperatorError/OperatorError.js +9 -0
- package/build/features/password/screens/OperatorError/index.d.ts +3 -0
- package/build/features/password/screens/OperatorError/index.js +2 -0
- package/build/features/password/screens/PrepareDataLoading/PrepareDataLoading.d.ts +4 -0
- package/build/features/password/screens/PrepareDataLoading/PrepareDataLoading.js +10 -0
- package/build/features/password/screens/PrepareDataLoading/index.d.ts +2 -0
- package/build/features/password/screens/PrepareDataLoading/index.js +2 -0
- package/build/features/password/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
- package/build/features/password/screens/Verify/Verify.js +8 -7
- package/build/features/shared/Address/CountryList.d.ts +7 -7
- package/build/features/shared/Address/InputSelect.d.ts +7 -7
- package/build/features/shared/Background/Background.d.ts +3 -1
- package/build/features/shared/Background/Background.js +9 -11
- package/build/features/shared/BusinessCountry/BusinessCountry.d.ts +15 -0
- package/build/features/shared/BusinessCountry/BusinessCountry.js +179 -0
- package/build/features/shared/BusinessCountry/index.d.ts +2 -0
- package/build/features/shared/BusinessCountry/index.js +2 -0
- package/build/features/shared/Button/Button.js +11 -5
- package/build/features/shared/Button/EmailProvidersButtons.js +2 -0
- package/build/features/shared/Button/FlowsButtons.js +19 -4
- package/build/features/shared/Button/NafathButton.d.ts +8 -0
- package/build/features/shared/Button/{AbsherButton.js → NafathButton.js} +12 -3
- package/build/features/shared/Button/index.d.ts +2 -2
- package/build/features/shared/Button/index.js +2 -2
- package/build/features/shared/Calender/Calender.d.ts +2 -1
- package/build/features/shared/Calender/Calender.js +3 -3
- package/build/features/shared/Containers/FeatureContainer.d.ts +3 -1
- package/build/features/shared/Containers/FeatureContainer.js +5 -3
- package/build/features/shared/Containers/ScreenContainer.d.ts +1 -1
- package/build/features/shared/DataLoading/DataLoading.d.ts +4 -1
- package/build/features/shared/DataLoading/DataLoading.js +2 -2
- package/build/features/shared/Dialog/DialogContainer.js +2 -1
- package/build/features/shared/Footer/Footer.js +2 -1
- package/build/features/shared/Input/Input.d.ts +2 -2
- package/build/features/shared/NafathVerification/NafathVerification.d.ts +14 -0
- package/build/features/shared/NafathVerification/NafathVerification.js +92 -0
- package/build/features/shared/NafathVerification/VerifyNafathLoading.d.ts +8 -0
- package/build/features/shared/NafathVerification/VerifyNafathLoading.js +53 -0
- package/build/features/shared/NafathVerification/VerifyNafathSuccess.d.ts +5 -0
- package/build/features/shared/NafathVerification/VerifyNafathSuccess.js +8 -0
- package/build/features/shared/NafathVerification/index.d.ts +2 -0
- package/build/features/shared/NafathVerification/index.js +2 -0
- package/build/features/shared/SuccessFlowButtons/SuccessFlowButtons.d.ts +6 -1
- package/build/features/shared/SuccessFlowButtons/SuccessFlowButtons.js +10 -13
- package/build/features/shared/SuccessScreen/SuccessScreen.js +2 -2
- package/build/features/shared/UploadFile/FileUpload.d.ts +1 -1
- package/build/features/shared/UploadFile/UploadFile.d.ts +1 -1
- package/build/features/shared/UploadFile/UploadWrapper.d.ts +1 -1
- package/build/features/shared/UploadMultipleFile/UploadFile.d.ts +1 -1
- package/build/features/shared/UploadMultipleFile/UploadMultipleFile.d.ts +1 -1
- package/build/features/signIn/SignIn.js +18 -7
- package/build/features/signIn/screens/Mobile/MobileNumber.js +8 -7
- package/build/features/signIn/screens/Mobile/validation.js +11 -3
- package/build/features/signIn/screens/OTP/OTP.js +5 -4
- package/build/features/signIn/screens/OperatorError/OperatorError.d.ts +5 -0
- package/build/features/signIn/screens/OperatorError/OperatorError.js +9 -0
- package/build/features/signIn/screens/OperatorError/index.d.ts +3 -0
- package/build/features/signIn/screens/OperatorError/index.js +2 -0
- package/build/features/tax/Tax.d.ts +5 -1
- package/build/features/tax/Tax.js +26 -12
- package/build/features/tax/screens/OperatorError/OperatorError.d.ts +5 -0
- package/build/features/tax/screens/OperatorError/OperatorError.js +9 -0
- package/build/features/tax/screens/OperatorError/index.d.ts +3 -0
- package/build/features/tax/screens/OperatorError/index.js +2 -0
- package/build/features/tax/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
- package/build/features/tax/screens/TaxDetails/TaxDetails.js +9 -3
- package/build/features/tax/screens/Verify/Verify.js +8 -7
- package/build/hooks/index.d.ts +3 -0
- package/build/hooks/index.js +3 -0
- package/build/hooks/useAppConfig.d.ts +3 -3
- package/build/hooks/useAppConfig.js +10 -8
- package/build/hooks/useAppDispatch.d.ts +2 -0
- package/build/hooks/useAppTheme.js +4 -3
- package/build/hooks/useCountDown.d.ts +10 -0
- package/build/hooks/useCountDown.js +17 -0
- package/build/hooks/useCountry.d.ts +1 -0
- package/build/hooks/useCountry.js +4 -3
- package/build/hooks/useFormDirtyCheck.d.ts +10 -0
- package/build/hooks/useFormDirtyCheck.js +66 -0
- package/build/hooks/useSanitizedTranslation.d.ts +2 -0
- package/build/hooks/useSanitizedTranslation.js +15 -0
- package/build/hooks/useVerifyToken.d.ts +5 -2
- package/build/hooks/useVerifyToken.js +10 -5
- package/build/index.css +360 -120
- package/build/index.d.ts +4 -2
- package/build/index.js +6 -2
- package/build/theme/components.js +7 -0
- package/build/theme/palette.js +4 -2
- package/build/theme/shadows.js +1 -1
- package/build/theme/theme.d.ts +1 -1
- package/build/theme/theme.js +2 -2
- package/build/utils/array.js +2 -2
- package/build/utils/common.d.ts +3 -0
- package/build/utils/common.js +38 -2
- package/build/utils/device.d.ts +2 -0
- package/build/utils/device.js +6 -0
- package/build/utils/locale.js +2 -1
- package/build/utils/object.d.ts +1 -0
- package/build/utils/object.js +4 -1
- package/build/utils/string.d.ts +7 -2
- package/build/utils/string.js +32 -5
- package/build/utils/validation.d.ts +5 -0
- package/build/utils/validation.js +16 -0
- package/package.json +2 -2
- package/build/features/business/screens/OTP/OTP.d.ts +0 -8
- package/build/features/business/screens/OTP/OTP.js +0 -90
- package/build/features/connect/screens/BrandSegment/SegmentLocations.d.ts +0 -8
- package/build/features/connect/screens/BrandSegment/SegmentLocations.js +0 -66
- package/build/features/connect/screens/BrandSegment/SegmentProfits.d.ts +0 -8
- package/build/features/connect/screens/BrandSegment/SegmentProfits.js +0 -66
- package/build/features/connect/screens/BrandSegment/SegmentTechs.d.ts +0 -8
- package/build/features/connect/screens/BrandSegment/SegmentTechs.js +0 -66
- package/build/features/connectExpress/screens/AuthenticationList/MerchantList.js +0 -100
- package/build/features/connectExpress/screens/AuthenticationList/TerminalList.js +0 -101
- package/build/features/connectExpress/screens/IdentityOTP/index.d.ts +0 -3
- package/build/features/connectExpress/screens/IdentityOTP/index.js +0 -2
- package/build/features/shared/Button/AbsherButton.d.ts +0 -8
- /package/build/features/{connect/screens/NID → auth/screens/DOB}/DOB.d.ts +0 -0
- /package/build/features/{connectExpress/screens/IdentityOTP → auth/screens/OTP}/OTP.d.ts +0 -0
- /package/build/features/{business → auth}/screens/OTP/OTPInput.d.ts +0 -0
- /package/build/features/{business → auth}/screens/OTP/index.d.ts +0 -0
- /package/build/features/{business → auth}/screens/OTP/index.js +0 -0
- /package/build/features/{business → auth}/screens/OTP/validation.d.ts +0 -0
- /package/build/features/{business → auth}/screens/OTP/validation.js +0 -0
- /package/build/features/{connectExpress/screens/IdentityOTP/OTPInput.d.ts → board/screens/Verify/Verify.d.ts} +0 -0
- /package/build/features/{connectExpress/screens/IdentityOTP → board/screens/Verify}/validation.d.ts +0 -0
- /package/build/features/{connectExpress/screens/IdentityOTP → board/screens/Verify}/validation.js +0 -0
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"(citizeninfo) dateofbirth does not match nic records": "May you please verify the entered date of birth.",
|
|
3
3
|
"Api key is unauthorized to perform the operation": "May you please verify the API operator used to perform this service.",
|
|
4
|
+
"Board Request Not Found": "You are experiencing some service interruption. Please give it a try another time.",
|
|
4
5
|
"CR Not Found": "May you please verify the entered commercial registration.",
|
|
6
|
+
"Choose_any_country": "Search Country...",
|
|
5
7
|
"Freelance License Not Found": "May you please verify the entered freelancer registration.",
|
|
8
|
+
"Individual_additional_title": "One last thing",
|
|
9
|
+
"Individual_occupation_description": "Please select your occupation",
|
|
10
|
+
"Individual_success_header_description": "That was easy!",
|
|
11
|
+
"Individual_success_header_title": "Account Updated",
|
|
6
12
|
"Internal server error": "You are experiencing some service interruption. Please give it a try another time.",
|
|
7
13
|
"Invalid National Id or Date of Birth": "Please verify the entered information.",
|
|
8
14
|
"Invalid OTP": "Please enter a valid One Time Passcode (OTP).",
|
|
@@ -10,101 +16,214 @@
|
|
|
10
16
|
"Invalid Password": "Please verify the entered information.",
|
|
11
17
|
"Invalid lead_id": "You are experiencing some service interruption. May you please reach out the support team.",
|
|
12
18
|
"Invalid otp in data_token": "Please enter a valid One Time Passcode (OTP).",
|
|
19
|
+
"KD": "KWD",
|
|
20
|
+
"Please upload bank statement file": "Please upload bank IBAN certificate file",
|
|
13
21
|
"Profile Name Required": "May you please enter a brand name for your business.",
|
|
14
22
|
"Profile Name already exists": "The brand name you have entered is not available. May you please provide an alternate brand name.",
|
|
15
23
|
"Profile Name is invalid": "May you please verify the entered brand name.",
|
|
24
|
+
"SAR": "SAR",
|
|
16
25
|
"absher_button_label": "Continue with Absher",
|
|
17
26
|
"acceptance_btn_text": "Acceptance",
|
|
27
|
+
"account_already_created": "Preparing your account",
|
|
18
28
|
"account_completed_title_eg": "well done",
|
|
19
29
|
"account_completed_title_sa": "Congratulations",
|
|
20
30
|
"account_details": "Your account details",
|
|
31
|
+
"account_not_found": "Account not found",
|
|
32
|
+
"account_not_found_desc": "It looks like you're new here.",
|
|
33
|
+
"account_not_found_desc_sub": "To get started and make the most of Tap, please create an account.",
|
|
21
34
|
"activities": "Business activities",
|
|
35
|
+
"activities_list_alert": "Select at least one Activity",
|
|
36
|
+
"activities_name_hint": "Please select the business's activities as per your licence. You may select multiple activities. ",
|
|
22
37
|
"activities_selected": "Business activities selected",
|
|
23
38
|
"actual_income_hint": "Lorem ipsum dolor sit amet, consetetur",
|
|
39
|
+
"add_details": "Add details",
|
|
40
|
+
"add_entity": "Add Entity",
|
|
41
|
+
"add_other": "Other",
|
|
24
42
|
"add_other_cr": "Add a Commercial Registration",
|
|
25
43
|
"add_other_fl": "Add a Freelance Registration",
|
|
26
44
|
"agree_on_chargeback_policy": "I agree to the ",
|
|
27
45
|
"agree_on_refund_policy": "I agree to the ",
|
|
28
46
|
"alert_bank_confirm": "you have to confirm",
|
|
29
|
-
"alert_bank_statement": "
|
|
47
|
+
"alert_bank_statement": "Please upload bank IBAN certificate file",
|
|
30
48
|
"alert_beneficiary_name": "May you please verify the entered beneficiary name.",
|
|
49
|
+
"alert_choose_business": "Please select business",
|
|
50
|
+
"alert_choose_segment_location": "Please select segment location",
|
|
51
|
+
"alert_choose_segment_profit": "Please select segment profit",
|
|
52
|
+
"alert_choose_segment_tech": "Please select segment tech",
|
|
31
53
|
"alert_file_upload": "please upload a valid file ",
|
|
32
54
|
"alert_iban": "May you please verify the entered IBAN",
|
|
33
55
|
"alert_tax_confirm": "please confirm your tax information",
|
|
34
56
|
"alert_vat": "May you please verify the entered tax identification number (TIN) for VAT purposes. (Note - the TIN constitutes of 15 digits)",
|
|
35
|
-
"android": "Enter your app name (
|
|
57
|
+
"android": "Enter your app name (Play Store)",
|
|
36
58
|
"app": "App",
|
|
37
|
-
"apple_btn_open_title": "Open
|
|
59
|
+
"apple_btn_open_title": "Open Mail",
|
|
38
60
|
"apple_store_placeholder": "Enter your app name (App Store)",
|
|
61
|
+
"approve_with_nafath_app": "Continue with NAFATH",
|
|
62
|
+
"approve_with_paci_app": "Continue with PACI",
|
|
63
|
+
"ar": "ع",
|
|
64
|
+
"arabic": "اللغة العربية",
|
|
65
|
+
"article_of_association": "PDF, JPG or PNG files up to 5mb.",
|
|
66
|
+
"auth_brand_required": "Brand is required",
|
|
67
|
+
"auth_entity_required": "Entity is required",
|
|
68
|
+
"auth_merchant_required": "Merchant is required",
|
|
69
|
+
"auth_terminal_required": "Terminal is required",
|
|
39
70
|
"authenticate_kuwait_mobile_description": "Please go to your Kuwait Mobile ID app and accept the authentication request from Tap.",
|
|
40
71
|
"authenticate_kuwait_mobile_title": "Authenticate with Kuwait Mobile ID app",
|
|
72
|
+
"authentication_list_description": "Please fill below info",
|
|
73
|
+
"back": "Back",
|
|
41
74
|
"bank": "Bank",
|
|
42
75
|
"bank_confirm_information": "I confirm my bank information is correct and related to me.",
|
|
43
76
|
"bank_flow_completed": "{{bank_name}} {{iban}}",
|
|
44
77
|
"bank_flow_pending": "Add the bank account",
|
|
45
78
|
"bank_flow_title": "Add your bank details",
|
|
79
|
+
"bank_flows_description": "Below are the flows to move forward",
|
|
80
|
+
"bank_flows_title": "Bank flow summary",
|
|
81
|
+
"bank_info_description": "Please add your business bank details",
|
|
82
|
+
"bank_info_title": "Your bank details",
|
|
46
83
|
"bank_name_required": "Bank name is required",
|
|
47
84
|
"bank_statement_first_page": "Bank statement",
|
|
85
|
+
"bank_statement_required": "Bank Statement is required",
|
|
86
|
+
"bank_success_header_description": "You have successfully completed with adding bank data",
|
|
87
|
+
"bank_success_header_title": "Bank completed",
|
|
48
88
|
"bank_success_title": "Your bank details are updated",
|
|
49
89
|
"beneficiary_name": "Beneficiary name",
|
|
50
|
-
"beneficiary_name_invalid": "
|
|
90
|
+
"beneficiary_name_invalid": "The beneficiary name should be in English and matches the legal name associated with the bank account",
|
|
51
91
|
"beneficiary_name_placeholder": "Beneficiary name",
|
|
52
92
|
"beneficiary_name_required": "Beneficiary name is required",
|
|
53
93
|
"birthdate": "Date of birth",
|
|
94
|
+
"brand": "Brand",
|
|
95
|
+
"brand_activities_description": "Please add your activities details",
|
|
96
|
+
"brand_activities_title": "Your brand activities details",
|
|
97
|
+
"brand_details_additional_info": "Please tell us about additional info of your business",
|
|
98
|
+
"brand_details_description": "Please tell us about your business",
|
|
99
|
+
"brand_flow_completed": "{{brand}}",
|
|
100
|
+
"brand_flow_pending": "{{brand}}",
|
|
101
|
+
"brand_flows_description": "Below are the flows to move forward",
|
|
102
|
+
"brand_flows_title": "Brand flow summary",
|
|
103
|
+
"brand_id_missing": "Brand id is missing",
|
|
104
|
+
"brand_info_description": "Please add your brand details",
|
|
105
|
+
"brand_info_title": "Your brand details",
|
|
54
106
|
"brand_name_already_exist": "Profile Name already exists",
|
|
55
107
|
"brand_name_hint": "Please enter a brand name for you business. The brand will appear for your customers. (Note - brand names might be taken sometime, therefore please provide a brand name that is legally registered under your business)",
|
|
108
|
+
"brand_segment_description": "Your brand segment details",
|
|
109
|
+
"brand_segment_title": "Your segment details",
|
|
110
|
+
"brand_success_header_description": "You have successfully completed",
|
|
111
|
+
"brand_success_header_title": "Brand completed",
|
|
56
112
|
"brand_success_title": "Your brand details are updated",
|
|
113
|
+
"business_activities_description": "Please select your business activities",
|
|
114
|
+
"business_activities_title": "Business Activities",
|
|
115
|
+
"business_activity_info_description": "Few details about business activities",
|
|
116
|
+
"business_activity_info_title": "Business activity info",
|
|
117
|
+
"business_brand_description": "Please review brand details",
|
|
118
|
+
"business_brand_title": "Brand Info",
|
|
57
119
|
"business_completed_button": "Finish setting up my account",
|
|
58
|
-
"business_completed_description": "
|
|
120
|
+
"business_completed_description": "You're all set to accept payments. One last thing, add your bank details to start receiving your payouts.",
|
|
59
121
|
"business_completed_title": "Your account is active",
|
|
122
|
+
"business_customer_description": "Last few questions about your business",
|
|
123
|
+
"business_expiry_date": "Expiry Date",
|
|
60
124
|
"business_flow_completed": "{{business_type}} {{license_number}}",
|
|
125
|
+
"business_flows_description": "Below are the flows to move forward",
|
|
126
|
+
"business_flows_title": "Account Summary",
|
|
127
|
+
"business_sales_description": "Please select your business sale",
|
|
128
|
+
"business_sales_title": "Business expected sales",
|
|
61
129
|
"business_start_date": "When did you start your business?",
|
|
130
|
+
"business_success_description": "You have successfully completed with updating business info",
|
|
131
|
+
"business_success_title": "Business Completed",
|
|
62
132
|
"call_center": "Enter your call center number",
|
|
133
|
+
"call_center_label": "Call Center",
|
|
63
134
|
"call_center_placeholder": "Enter your call center number",
|
|
135
|
+
"cancel": "Cancel",
|
|
136
|
+
"capital_paid_hint": "00000",
|
|
137
|
+
"capital_paid_label": "Capital Paid ({{currency}})",
|
|
138
|
+
"capital_paid_required": "Please Enter paid amount",
|
|
139
|
+
"capital_share_count_hint": "00000",
|
|
140
|
+
"capital_share_count_label": "Capital Share Count",
|
|
141
|
+
"capital_share_count_required": "Please Enter share count",
|
|
142
|
+
"capital_share_value_hint": "00000",
|
|
143
|
+
"capital_share_value_label": "Capital Share Value ({{currency}})",
|
|
144
|
+
"capital_share_value_required": "Please Enter share value",
|
|
64
145
|
"category": "Category",
|
|
65
146
|
"category_name": "Category name",
|
|
66
147
|
"channel_of_service": "What are your sales channels?",
|
|
67
|
-
"chargeback_policy": "
|
|
148
|
+
"chargeback_policy": "Dispute policy",
|
|
68
149
|
"check_terms_cond": "Please accept the terms & conditions",
|
|
69
150
|
"choose_activities": "Business Activities",
|
|
70
151
|
"choose_activity": "- Please select -",
|
|
71
152
|
"choose_any_business_date": "Please select a date",
|
|
153
|
+
"choose_any_expiry_date": "Please select a date",
|
|
154
|
+
"choose_any_issuing_date": "Please select a date",
|
|
72
155
|
"choose_any_license": "Choose License",
|
|
156
|
+
"choose_any_monthly_income": "Please choose monthly income",
|
|
73
157
|
"choose_any_occupation": "Select -",
|
|
158
|
+
"choose_any_segment": "Please Select -",
|
|
74
159
|
"choose_any_source_of_income": "- Please select -",
|
|
75
160
|
"choose_atleast_one_activity": "- Please select -",
|
|
76
161
|
"choose_atleast_one_channel": "Please select at least a channel.",
|
|
77
|
-
"alert_choose_segment": "Please select business segment.",
|
|
78
|
-
"alert_choose_teamSize": "Please select team size.",
|
|
79
162
|
"choose_brand": "Please select a brand",
|
|
163
|
+
"choose_business": "Please select a business",
|
|
80
164
|
"choose_channel": "- Please select -",
|
|
81
165
|
"choose_customer_base": "- Please select -",
|
|
82
166
|
"choose_employee_location": "- Please select -",
|
|
167
|
+
"choose_entity_license": "Choose Entity License",
|
|
168
|
+
"choose_entity_type": "- Please select -",
|
|
83
169
|
"choose_expected_sales": "- Please select -",
|
|
84
170
|
"choose_expected_sales_yearly": "- Please select -",
|
|
171
|
+
"choose_issued_country": "- Please select -",
|
|
85
172
|
"choose_license": "- Please select -",
|
|
86
173
|
"choose_license_cr": "- Please select -",
|
|
174
|
+
"choose_license_entity": "- Please select -",
|
|
87
175
|
"choose_license_fl": "- Please select -",
|
|
176
|
+
"choose_nationality": "- Please select -",
|
|
177
|
+
"choose_place_birth_city": "- Please select -",
|
|
178
|
+
"choose_place_of_birth_country": "- Please select -",
|
|
179
|
+
"choose_team_size": "Please Select -",
|
|
88
180
|
"citizenship": "Nationality",
|
|
89
|
-
"
|
|
90
|
-
"
|
|
181
|
+
"civil_id_description": "Start instantly with your Civil ID",
|
|
182
|
+
"civil_id_placeholder": "2xxxxxxxxx12",
|
|
183
|
+
"civil_id_title": "Civil ID",
|
|
184
|
+
"close_and_complete_later": "Close and Complete Later",
|
|
185
|
+
"commercial_reg": "Commercial entity",
|
|
186
|
+
"commercial_reg_hint": "Small & medium businesses, Startups and Enterprises with an authorised commercial licence.",
|
|
91
187
|
"commercial_registration": "Commercial registration",
|
|
188
|
+
"company_individuals": "Company Individuals",
|
|
189
|
+
"company_individuals_add_or_request_details": "Add or request details for authorized signatories",
|
|
190
|
+
"company_individuals_details": "Company individuals details ({{count}})",
|
|
92
191
|
"confirm": "Confirm",
|
|
93
192
|
"confirm_close_flow_no": "NO",
|
|
94
193
|
"confirm_close_flow_title": "Are you sure you would like to close?",
|
|
95
194
|
"confirm_close_flow_yes": "YES",
|
|
96
|
-
"connect_completed_description": "You successfully signed up your brand with Tap.
|
|
195
|
+
"connect_completed_description": "You successfully signed up your brand with Tap. We will send you an email to activate your account.",
|
|
196
|
+
"connect_completed_description_dev": "You successfully signed up your brand with Tap. We sent you an email at <strong>{{email}}</strong> to activate your account",
|
|
97
197
|
"connect_completed_title": "Congratulations",
|
|
198
|
+
"connect_express_flows_description": "Below are the flows to move forward",
|
|
199
|
+
"connect_express_flows_title": "Account Summary",
|
|
200
|
+
"connect_flow_completed_description": "You successfully signed up your brand with Tap. We send you an email at <strong> {{email}} </strong> to activate your account.",
|
|
201
|
+
"connect_success": "Well, that was easy!",
|
|
202
|
+
"connect_success_description": "You have successfully signed up",
|
|
98
203
|
"continue": "Continue",
|
|
204
|
+
"country_list_title": "Please select your country",
|
|
99
205
|
"country_of_residence": "Country of residence",
|
|
100
206
|
"cr_kw_max_length": "May you please verify the entered commercial registration number. (Note - the commercial registration minimum of 3 may contains characters and digits).",
|
|
101
207
|
"cr_max_length": "May you please verify the entered commercial registration number. (Note - the commercial registration constitutes of {{length}} digits). ",
|
|
102
208
|
"cr_number": "Commercial registration",
|
|
103
209
|
"cr_number_hint": 214151616,
|
|
104
210
|
"cr_required": "May you please enter a commercial registration number.",
|
|
211
|
+
"create_account_loading": "Loading...",
|
|
212
|
+
"create_account_loading_desc": "Please be patient until finish loading",
|
|
105
213
|
"create_new_business": "Create a new business",
|
|
214
|
+
"create_new_entity": "Create Entity",
|
|
215
|
+
"creating_account_description": "This might take a moment...",
|
|
216
|
+
"creating_account_title": "Creating your account",
|
|
217
|
+
"customer_base_name_hint": "Choose local if you sell only in the country where you are based. Choose regional if you also sell to other GCC countries. Choose worldwide if you sell to any country outside the GCC.",
|
|
218
|
+
"data_loading_desc": "Please wait as we are preparing data",
|
|
219
|
+
"data_loading_title": "Preparing data",
|
|
220
|
+
"day": "Day",
|
|
106
221
|
"desc_drag_and_drop": "First page showing matching bank details. PDF, JPG or PNG files up to 5mb.",
|
|
107
|
-
"desc_drag_and_drop_certificate": "
|
|
222
|
+
"desc_drag_and_drop_certificate": "PDF, JPG or PNG files up to 4mb. 4 files maximum",
|
|
223
|
+
"desc_drag_and_drop_civilID": "PDF, JPG or PNG files up to 4mb. 4 files maximum",
|
|
224
|
+
"desc_drag_and_drop_signature": "PDF, JPG or PNG files up to 4mb. 4 files maximum",
|
|
225
|
+
"desc_drag_and_drop_tax_document": "PDF, JPG or PNG files up to 4mb. 4 files maximum",
|
|
226
|
+
"description_brand_logo": "JPG or PNG files up to 4mb.",
|
|
108
227
|
"drag_and_drop": "Drop or ",
|
|
109
228
|
"edit": "Edit",
|
|
110
229
|
"email_activation_description": "Thank you for choosing Tap Payments. Your email address has been confirmed successfully!",
|
|
@@ -112,45 +231,82 @@
|
|
|
112
231
|
"email_confirmed": "Email confirmed",
|
|
113
232
|
"email_not_valid": "May you please verify the entered email address.",
|
|
114
233
|
"employer_name_invalid": "May you please verify the entered name of your employer.",
|
|
234
|
+
"en": "EN",
|
|
235
|
+
"english": "English",
|
|
115
236
|
"enter_at_least_one": "May you please enter at least one social media",
|
|
116
237
|
"enter_at_least_one_call_center": "Please enter at least one call center number",
|
|
117
238
|
"enter_at_least_one_mobile_app": "Please enter at least one mobile app store",
|
|
118
239
|
"enter_at_least_one_physical_store": "Please enter at least one physical store",
|
|
119
240
|
"enter_at_least_one_social_media": "Please enter at least one social media",
|
|
120
|
-
"enter_at_least_one_website": "Please enter
|
|
241
|
+
"enter_at_least_one_website": "Please enter the website address",
|
|
121
242
|
"enter_bank_name": "Bank name",
|
|
122
243
|
"enter_bank_name_placeholder": "bank name",
|
|
123
|
-
"enter_birth_date": "
|
|
244
|
+
"enter_birth_date": "Birthday",
|
|
124
245
|
"enter_brand_name_english_chars_numbers_space": "May you please verify the entered brand name. (Note - Brand names may consist of English letters, numbers and spaces)",
|
|
125
246
|
"enter_brand_name_english_chars_only": "May you please verify the entered brand name. (Note - Brand names may consist of English letters)",
|
|
126
247
|
"enter_civil_id": "Please enter your civil ID",
|
|
127
248
|
"enter_commercial_register_no": "Commercial registration",
|
|
128
249
|
"enter_entity_name_english_chars_numbers_space": "Enter valid business name",
|
|
250
|
+
"enter_expiry_date": "Expiry Date",
|
|
129
251
|
"enter_freelance_license": "Freelance registration",
|
|
130
252
|
"enter_iban": "Please enter the bank account in the IBAN form",
|
|
131
|
-
"enter_iban_placeholder": "
|
|
253
|
+
"enter_iban_placeholder": "KW44#################0",
|
|
132
254
|
"enter_iqama_id": "Identification number",
|
|
255
|
+
"enter_legal_name_min_three_chars": "Please Enter at least minimum 2 characters",
|
|
133
256
|
"enter_license_no": "Freelance registration",
|
|
257
|
+
"enter_license_number": "Please enter license number at least 5 chars",
|
|
134
258
|
"enter_national_id": "Identification number",
|
|
135
|
-
"enter_served_monthly": "
|
|
259
|
+
"enter_served_monthly": "Customers server per month",
|
|
136
260
|
"enter_strong_password": "Please enter strong password.",
|
|
137
261
|
"enter_valid_birth_date": "Please enter a valid birth date.",
|
|
138
262
|
"enter_valid_brand_name": "Please enter a valid brand name.",
|
|
139
263
|
"enter_valid_customer_no": "-",
|
|
264
|
+
"enter_valid_first_name": "Please write your first name",
|
|
265
|
+
"enter_valid_last_name": "Please write your last name",
|
|
266
|
+
"enter_valid_legal_name": "Please enter legal name at least 3 chars",
|
|
140
267
|
"enter_valid_license": "May you please verify the entered license number.",
|
|
141
268
|
"enter_valid_mobile_number": "May you please verify the entered mobile number. (Note - Mobile numbers consist of {{length}} digits)",
|
|
269
|
+
"enter_valid_mobile_number_min_max_length": "May you please verify the entered mobile number. (Note - Mobile numbers consist of {{minLength}}-{{length}} digits",
|
|
142
270
|
"enter_valid_password": "Please enter a password with a minimum of {{length}} characters",
|
|
271
|
+
"entity": "Entity",
|
|
272
|
+
"entity_activities_description": "Please select your entity activities",
|
|
273
|
+
"entity_activities_title": "Entity Activities",
|
|
274
|
+
"entity_flow_completed": "{{business_type}} {{license_number}}",
|
|
275
|
+
"entity_flow_pending": "{{business_type}} {{license_number}}",
|
|
276
|
+
"entity_flows_description": "Below are the flows to move forward",
|
|
277
|
+
"entity_flows_title": "Entity flow summary",
|
|
278
|
+
"entity_id_missing": "Entity id is missing",
|
|
279
|
+
"entity_info_description": "Please add your entity details",
|
|
280
|
+
"entity_info_title": "Your entity details",
|
|
281
|
+
"entity_last_step_description": "Last few details about your entity",
|
|
143
282
|
"entity_legal_name_placeholder": "Business name",
|
|
144
283
|
"entity_legal_name_title": "Business Name",
|
|
284
|
+
"entity_success_header_description": "You have successfully completed",
|
|
285
|
+
"entity_success_header_title": "Entity completed",
|
|
145
286
|
"entity_success_title": "Entity Updated Successfully",
|
|
146
|
-
"
|
|
287
|
+
"entity_type": "Entity Type",
|
|
288
|
+
"entity_type_required": "Please select at least one entity type",
|
|
289
|
+
"expected_customers_to_serve": "Customers server per month",
|
|
290
|
+
"expected_sales_monthly": "Expected sale per month? ({{currency}})",
|
|
147
291
|
"expected_sales_yearly": "What is the expected sales for your business per month?",
|
|
148
|
-
"expected_served_monthly": "
|
|
292
|
+
"expected_served_monthly": "Customers server per month",
|
|
149
293
|
"expiry_date": "Date of expiry",
|
|
294
|
+
"express_account_already_created_close_button": "Close",
|
|
295
|
+
"express_account_already_created_description": "Your Account is already created",
|
|
296
|
+
"express_account_already_created_details": "Account Created Details",
|
|
297
|
+
"express_account_already_created_summary": "Account is already created",
|
|
298
|
+
"express_account_already_created_title": "Create Account",
|
|
299
|
+
"file_already_exist": "File is already uploaded",
|
|
300
|
+
"file_delete_error": "Something went wrong with deleting file. Please try again",
|
|
301
|
+
"file_download_error": "Something went wrong with downloading file. Please try again",
|
|
302
|
+
"file_exceed_max_limit": "Sorry, you are uploading too many files (maximum of {{length}} files)",
|
|
303
|
+
"file_exit_max_limit": "Sorry, you are uploading too many files (maximum of {{length}} files)",
|
|
150
304
|
"file_not_supported_alert": "File not supported, please try again",
|
|
305
|
+
"file_required": "File is required",
|
|
151
306
|
"file_size_alert": "Your file is too big, please upload another",
|
|
152
|
-
"file_upload_error": "Something went wrong, please try again",
|
|
153
307
|
"file_upload_article_error": "Something went wrong, please try again",
|
|
308
|
+
"file_upload_at_least_one": "Please upload at least one file",
|
|
309
|
+
"file_upload_error": "Something went wrong, please try again",
|
|
154
310
|
"file_upload_failed": "You are experiencing some challenges uploading the file. Please give it another try.",
|
|
155
311
|
"file_uploading_title": "Uploading....",
|
|
156
312
|
"fl_kw_max_length": "May you please verify the entered freelancer registration reference. (Note - the freelancer registration may contains characters and digits).",
|
|
@@ -158,15 +314,22 @@
|
|
|
158
314
|
"fl_number": "Freelancer registration",
|
|
159
315
|
"fl_number_hint": "fl31414ss3",
|
|
160
316
|
"fl_required": "May you please enter a freelancer registration reference.",
|
|
317
|
+
"flow_description": "You are ready to start accepting payments. Complete the below sections to enable payouts.",
|
|
161
318
|
"follow_us": "Follow us",
|
|
162
319
|
"freelance": "Freelance registration",
|
|
163
320
|
"freelancer_reg": "Freelancer",
|
|
164
321
|
"future_work": "Future Work",
|
|
322
|
+
"gender_female": "Female",
|
|
323
|
+
"gender_male": "Male",
|
|
324
|
+
"get_started": "Get Started",
|
|
165
325
|
"gmail_btn_open_title": "Open Gmail",
|
|
166
326
|
"goto_dashboard": "Dashboard",
|
|
167
327
|
"goto_dashboard_button_label": "Enter the dashboard",
|
|
168
328
|
"have_physical_store": "Do you have a physical store?",
|
|
169
|
-
"
|
|
329
|
+
"hi": "Hi",
|
|
330
|
+
"homemaker_reg": "Home business",
|
|
331
|
+
"homemaker_reg_hint": "Individuals with a freelance permit or sole professional licence from a licensing authority.",
|
|
332
|
+
"iban_input_placeholder": "{{countrycode}}44#################0",
|
|
170
333
|
"id_placeholder": 2345566666,
|
|
171
334
|
"ide_not_valid_url": "May you please verify the entered website address.",
|
|
172
335
|
"ide_opt_sent_title": "A One Time Passcode (OTP) has been be sent to mobile number",
|
|
@@ -179,39 +342,109 @@
|
|
|
179
342
|
"ide_successfully_verified_message": "Your account has been created successfully!",
|
|
180
343
|
"ide_terms_and_conditions_description": "",
|
|
181
344
|
"identity_type": "Type of identity",
|
|
345
|
+
"individual": "Add user details",
|
|
346
|
+
"individual_additional_description": "Please confirm the employment details",
|
|
182
347
|
"individual_flow_completed": "{{individual_name}}",
|
|
183
348
|
"individual_flow_pending": "{{individual_name}}",
|
|
184
349
|
"individual_flow_title": "Complete your details",
|
|
350
|
+
"individual_flows_title": "Account Summary",
|
|
351
|
+
"individual_gender_title": "Gender",
|
|
352
|
+
"individual_id_missing": "Individual id is missing",
|
|
353
|
+
"individual_info_description": "Pleased to meet you. Please verify your details:",
|
|
354
|
+
"individual_occupation_title": "Individual occupation",
|
|
355
|
+
"individual_personal_description": "Please confirm the details",
|
|
356
|
+
"individual_personal_title": "Personal details",
|
|
357
|
+
"individual_phone_description": "Fill mobile information",
|
|
358
|
+
"individual_phone_title": "Mobile",
|
|
359
|
+
"individual_success_title": "Your personal information has been updated",
|
|
360
|
+
"influencer_name_hint": "Choose this option if you are earning financial revenue (commissions, affiliate revenue, sponsorship) for advertising products or services on your personal social media channel.",
|
|
185
361
|
"instagram": "your.business",
|
|
362
|
+
"internal_server_error": "You are experiencing some service interruption. Please give it a try another time.",
|
|
363
|
+
"invalid_android_app": "May you please verify the entered Android application name.",
|
|
364
|
+
"invalid_call_center_number": "May you please verify the entered call center number.",
|
|
186
365
|
"invalid_civil_id": "Please enter valid civil ID",
|
|
366
|
+
"invalid_facebook_username": "May you please verify the entered Facebook username.",
|
|
187
367
|
"invalid_iban_format": "May you please verify the entered IBAN.",
|
|
368
|
+
"invalid_instagram_username": "May you please verify the entered Instagram username.",
|
|
369
|
+
"invalid_ios_app": "May you please verify the entered iOS application name.",
|
|
370
|
+
"invalid_linkedin_profile_url": "May you please verify the entered LinkedIn profile URL.",
|
|
371
|
+
"invalid_physical_store_location": "May you please verify the entered physical store location.",
|
|
188
372
|
"invalid_token": "Please be patient... You are experiencing some challenges with your connection.",
|
|
373
|
+
"invalid_twitter_username": "May you please verify the entered Twitter username.",
|
|
189
374
|
"invalid_url": "May you please verify the entered website address.",
|
|
190
|
-
"ios": "Enter your app name (
|
|
375
|
+
"ios": "Enter your app name (App Store)",
|
|
376
|
+
"is_authorized_user_label": "Are you the authorized user?",
|
|
191
377
|
"issue_date": "Date of issuance",
|
|
378
|
+
"issued_country_label": "Issued Country",
|
|
192
379
|
"join_our_community": "",
|
|
380
|
+
"kyc_dispute_policy": "Dispute Policy",
|
|
381
|
+
"kyc_refund_policy": "Refund Policy",
|
|
382
|
+
"kyc_success_button": "Go to my board",
|
|
383
|
+
"kyc_success_title": "All done",
|
|
384
|
+
"kyc_terms_conditions": "Terms & Conditions",
|
|
385
|
+
"kyc_terms_description": "An authorized representative of the company must read and approve the legal documents",
|
|
386
|
+
"kyc_terms_description_single_user": "The authorized person with the ID {{id_number}} must read and approve the legal documents",
|
|
387
|
+
"kyc_terms_title": "Legal documents",
|
|
388
|
+
"kyc_token_invalid": "May you please verify link of which you are trying to open.",
|
|
389
|
+
"kyc_users_description": "Please select an authorized registered ID to approve with {{provider}}",
|
|
193
390
|
"kyc_verification": "Know Your Customer (KYC)",
|
|
194
391
|
"language": "العربية",
|
|
195
|
-
"
|
|
392
|
+
"license_info": "License information",
|
|
393
|
+
"license_name_hint": "Enter legal name",
|
|
394
|
+
"license_name_label": "Legal Name",
|
|
395
|
+
"license_name_placeholder": "License name",
|
|
396
|
+
"license_number": "License Number",
|
|
397
|
+
"license_number_hint": "Enter license number",
|
|
196
398
|
"license_number_label": "License Number",
|
|
197
399
|
"linkedin": "your.business",
|
|
198
400
|
"loading": "Loading...",
|
|
199
401
|
"loading_bank_statement": "loading....",
|
|
402
|
+
"login_to_dashboard": "Login to dashboard",
|
|
200
403
|
"mail_btn_open_title": "Open Mail",
|
|
201
404
|
"marital_status": "Marital status",
|
|
202
405
|
"masking_symbols": "•••",
|
|
406
|
+
"merchant_first_name_label": "First name",
|
|
407
|
+
"merchant_last_name_label": "Last name",
|
|
408
|
+
"merchant_middle_name_label": "Middle name",
|
|
409
|
+
"merchant_third_name_label": "Third name",
|
|
410
|
+
"migrating_data_title": "Please wait as we are preparing data",
|
|
411
|
+
"migration_email_sent_des": "We will notify you on your email {{email}} once it's ready to use.",
|
|
412
|
+
"migration_email_sent_title": "We are preparing your data",
|
|
413
|
+
"mobile_app_label": "Mobile App",
|
|
203
414
|
"mobile_button_label": "Continue with Mobile",
|
|
415
|
+
"mobile_number_description": "Start instantly with your Mobile Number",
|
|
416
|
+
"month": "Month",
|
|
417
|
+
"nafath_button_label": "Continue with Nafath",
|
|
418
|
+
"nafath_verification_description_check": "Please go to your NAFATH app and enter the above request number to authenticate.",
|
|
419
|
+
"nafath_verification_description_error": "Please try again",
|
|
420
|
+
"nafath_verification_description_wait": "Please go to your NAFATH app and enter the above request number to authenticate.",
|
|
421
|
+
"nafath_verification_redirection_message": "You will be redirected now",
|
|
422
|
+
"nafath_verification_title_check": "Authenticate with NAFATH app",
|
|
423
|
+
"nafath_verification_title_error": "We cannot confirm your authentication",
|
|
424
|
+
"nafath_verification_title_wait": "Authenticate with NAFATH app",
|
|
204
425
|
"national_address": "National address",
|
|
426
|
+
"national_id_description": "Start instantly with your National ID",
|
|
205
427
|
"national_id_placeholder": "0000000000",
|
|
428
|
+
"national_id_title": "National ID",
|
|
429
|
+
"nationality_label": "Nationality",
|
|
206
430
|
"next": "Next",
|
|
207
431
|
"no": "No",
|
|
208
432
|
"no login credentials available": "May you please verify the entered email address. (Note - Please make sure to enter an email address associated with Tap)",
|
|
433
|
+
"no_results": "No results",
|
|
209
434
|
"notify_strong_password": "Awesome! You have a secure password.",
|
|
210
435
|
"notify_user_has_account": "Your mobile number is registered in Tap. Please login to create new business. ",
|
|
211
436
|
"occupation_title": "Occupation",
|
|
437
|
+
"one_last_step": "One last step",
|
|
438
|
+
"oops": "Oops",
|
|
212
439
|
"open_mail_box": "Open Mailbox",
|
|
440
|
+
"open_nafath_app": "Open NAFATH app",
|
|
441
|
+
"operator_is_invalid": "Operator is invalid",
|
|
213
442
|
"opt_nid_sent_title": "Please enter the One Time Passcode (OTP) sent via Absher to the mobile number registered under your Saudi National ID",
|
|
214
443
|
"or": "or",
|
|
444
|
+
"other": "other",
|
|
445
|
+
"otp_authentication": "Authentication",
|
|
446
|
+
"otp_authentication_description": "Verify with OTP for a Hassle-Free Experience",
|
|
447
|
+
"otp_email_sent_title": "A One Time Passcode (OTP) has been be sent to your email ",
|
|
215
448
|
"otp_min_length": "Please enter the 6 digit OTP",
|
|
216
449
|
"otp_provider": "Absher",
|
|
217
450
|
"otp_required": "Please enter the required OTP",
|
|
@@ -219,21 +452,41 @@
|
|
|
219
452
|
"our_community_description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.",
|
|
220
453
|
"outlook_btn_open_title": "Open Outlook",
|
|
221
454
|
"paci_button_label": "Continue with PACI",
|
|
455
|
+
"paci_verification_description_check": "This might take a moment...",
|
|
456
|
+
"paci_verification_description_error": "Please try again",
|
|
457
|
+
"paci_verification_description_wait": "This might take a moment...",
|
|
458
|
+
"paci_verification_failed": "Make sure to approve the request sent to your device, or send a new request",
|
|
459
|
+
"paci_verification_redirection_message": "You will be redirected now",
|
|
460
|
+
"paci_verification_title_check": "We are still checking",
|
|
461
|
+
"paci_verification_title_error": "We cannot confirm your authentication",
|
|
462
|
+
"paci_verification_title_wait": "Please wait",
|
|
463
|
+
"paci_verify_loading": "Fetching Details",
|
|
464
|
+
"paci_verify_loading_desc": "Please be patient until verify details",
|
|
222
465
|
"paci_waiting_title": "Please wait we are verifying",
|
|
223
466
|
"password_flow_completed": "Reset my password",
|
|
224
467
|
"password_flow_pending": "Setup my password",
|
|
225
468
|
"password_flow_title": "Setup your password",
|
|
469
|
+
"password_flows_description": "Below are the flows to move forward",
|
|
470
|
+
"password_flows_title": "Brand flow summary",
|
|
471
|
+
"password_info_description": "Please set a secure password to protect your account",
|
|
472
|
+
"password_info_title": "Set your password",
|
|
226
473
|
"password_length": "Needs to be more than 8 characters.",
|
|
227
474
|
"password_lower": "Includes at least 1 lowercase character.",
|
|
228
475
|
"password_not_match": "The password you have entered does not match.",
|
|
229
476
|
"password_required": "May you please enter the Password required.",
|
|
230
477
|
"password_special": "Includes at least 1 special character. (!@#%)",
|
|
231
|
-
"
|
|
478
|
+
"password_success_header_description": "You have successfully updated your password",
|
|
479
|
+
"password_success_header_title": "Flow completed",
|
|
480
|
+
"password_success_title": "Congrats your account has been set successfully.",
|
|
232
481
|
"password_upper": "Includes at least 1 uppercase character.",
|
|
233
482
|
"payouts_btn_text": "Payouts",
|
|
483
|
+
"pep_name_hint": "“Politically exposed person” or “PEP” means a natural person who is or has been entrusted with prominent public functions.",
|
|
234
484
|
"physical_store": "Enter your store address or Google Map URL",
|
|
485
|
+
"physical_store_label": "Physical Store",
|
|
235
486
|
"physical_store_placeholder": "Enter your store address or Google Map URL",
|
|
487
|
+
"place_birth_city_label": "Place of Birth City",
|
|
236
488
|
"place_of_birth": "Place of birth",
|
|
489
|
+
"place_of_birth_country_label": "Place of Birth County",
|
|
237
490
|
"play_store_placeholder": "Enter your app name (Google Play Store)",
|
|
238
491
|
"please write your first and last name": "May you please verify the entered name in full. (Note - Your full name consists of your first, middle and last name)",
|
|
239
492
|
"please_agree_on_recharge": "Please agree to the dispute policy ",
|
|
@@ -241,25 +494,57 @@
|
|
|
241
494
|
"please_choose_are_you_influncer": "Are you an influencer",
|
|
242
495
|
"please_choose_base": "- Please select - ",
|
|
243
496
|
"please_choose_employer_location": "- Please select - ",
|
|
497
|
+
"please_choose_is_authorized": "Please tell us if you are the authorized user",
|
|
244
498
|
"please_choose_relative_pep": "Are you or one of your relatives a Publicly Exposed Person (PEP)",
|
|
245
|
-
"please_enter_actual_income": "
|
|
499
|
+
"please_enter_actual_income": "Monthly income ({{currency}})",
|
|
246
500
|
"please_enter_employer_name": "Please enter the name of your employer",
|
|
501
|
+
"please_try_again_after_few_minutes": "You can try to login again after {{minutes}} mins",
|
|
502
|
+
"powered_by": "Powered by",
|
|
503
|
+
"prepare_data_description": "This might take a moment..",
|
|
504
|
+
"prepare_data_title": "Preparing your data",
|
|
247
505
|
"read_agree_terms_and_conditions_message": "I have read, agreed to the ",
|
|
248
|
-
"refund_policy_compliance": "Refund policy
|
|
506
|
+
"refund_policy_compliance": "Refund policy",
|
|
507
|
+
"refund_policy_error": "You have to accept the refund policy",
|
|
508
|
+
"request_details_by_email": "Request details by email",
|
|
249
509
|
"reset_password_success_description": "Check your email to reset your password.",
|
|
510
|
+
"reset_password_success_description_dev": "Check your email <strong>{{email}}</strong> to reset your password.",
|
|
511
|
+
"reset_password_success_header_description": "Please verify email",
|
|
512
|
+
"reset_password_success_header_title": "Reset Password",
|
|
250
513
|
"reset_password_success_title": "We sent you an email",
|
|
514
|
+
"review_account": "Review account",
|
|
515
|
+
"sales_channel_title": "Sales channel details",
|
|
516
|
+
"sales_channels": "Sales channels",
|
|
251
517
|
"scs_53Hj4422123SBTK7RV10J578": "your.business",
|
|
252
518
|
"scs_6Nsy4422123sjWe7gt10h579": "your.business",
|
|
253
519
|
"scs_99it4422123pJXN7Jm10Y579": "your.business",
|
|
254
520
|
"scs_FCz64422123nZfm7zm10V577": "Enter your app name (Google Play Store)",
|
|
255
521
|
"scs_ZULK4422123p2PK7Mg105576": "Enter your app name (App Store)",
|
|
522
|
+
"search_activities_placeholder": "Search Activities...",
|
|
256
523
|
"search_placeholder": "Search...",
|
|
524
|
+
"segment_location_title": "Segment Location",
|
|
525
|
+
"segment_profit_title": "Segment Profit",
|
|
526
|
+
"segment_tech_title": "Segment Tech",
|
|
527
|
+
"segment_title": "what best describes your business ?",
|
|
257
528
|
"select_bank": "Bank",
|
|
258
529
|
"select_brand_label": "Brands",
|
|
530
|
+
"select_business_label": "Business",
|
|
259
531
|
"select_cr_license": "- Please select -",
|
|
260
532
|
"select_customer_base": "What regions of customers do you serve?",
|
|
533
|
+
"select_entity_label": "Entity",
|
|
534
|
+
"select_entity_placeholder": "Please select a entity",
|
|
261
535
|
"select_expected_customers_serve": "- Please select - ",
|
|
262
536
|
"select_expected_sales": "- Please select - ",
|
|
537
|
+
"select_merchant_label": "Merchant",
|
|
538
|
+
"select_merchant_placeholder": "Please select a merchant",
|
|
539
|
+
"select_terminal_label": "Terminal",
|
|
540
|
+
"select_terminal_placeholder": "Please select a terminal",
|
|
541
|
+
"selected_activities": "Selected Activities",
|
|
542
|
+
"share_count_hint": "0",
|
|
543
|
+
"share_count_label": "Share Count",
|
|
544
|
+
"share_value_hint": "0000",
|
|
545
|
+
"share_value_label": "Share Value ({{currency}})",
|
|
546
|
+
"sign_up": "Sign up",
|
|
547
|
+
"signed_up": "Signed up",
|
|
263
548
|
"signin_email_label": "Email address",
|
|
264
549
|
"signin_email_mobile_label": "Email / Mobile",
|
|
265
550
|
"signin_email_mobile_placeholder": "Enter email address or mobile number",
|
|
@@ -288,12 +573,17 @@
|
|
|
288
573
|
"signup_website_placeholder": "www.yourbusiness.com",
|
|
289
574
|
"signup_welcoming": "Hello {{username}},",
|
|
290
575
|
"signup_welcoming_hi": "Hello,",
|
|
576
|
+
"social_media_label": "Social Media",
|
|
291
577
|
"start_with_number": "May you please verify the entered mobile. (Note - mobile numbers start with 5 or 05",
|
|
292
578
|
"step_required_by_rayah": "This step is required in order to initiate a verification with Yaqeen service from Elm.",
|
|
293
579
|
"subtitle_drop": "choose file",
|
|
294
580
|
"success_upload_bank_statement": "Done",
|
|
581
|
+
"success_upload_civil_id": "Done",
|
|
582
|
+
"success_upload_signature_file": "Done",
|
|
295
583
|
"sucess_message_for_non_saudi": "Thank you for your interest in Tap Payments, we shall be contacting you shortly.",
|
|
584
|
+
"switch_to_gregorian_calendar": "Switch to Gregorian Calendar",
|
|
296
585
|
"switch_to_id": "Continue with your ID",
|
|
586
|
+
"switch_to_islamic_calendar": "Switch to Islamic Calendar",
|
|
297
587
|
"switch_to_mobile": "Continue with your mobile",
|
|
298
588
|
"tap_js_actual_income": "What is your income per month? ",
|
|
299
589
|
"tap_js_are_you_an_influencer": "Are you a person who is considered an influencer?",
|
|
@@ -320,15 +610,38 @@
|
|
|
320
610
|
"tax_confirm_information": "I confirm my tax information is correct",
|
|
321
611
|
"tax_flow_completed": "TIN {{tax_id}}",
|
|
322
612
|
"tax_flow_pending": "Add the company's tax details",
|
|
613
|
+
"tax_flows_description": "Below are the flows to move forward",
|
|
614
|
+
"tax_flows_title": "Account summary",
|
|
615
|
+
"tax_info_description": "Please add your tax details",
|
|
616
|
+
"tax_info_title": "Your tax details",
|
|
617
|
+
"tax_success_header_description": "You have successfully completed with updating tax info",
|
|
618
|
+
"tax_success_header_title": "Tax completed",
|
|
323
619
|
"tax_success_title": "Your tax details are updated",
|
|
620
|
+
"team_size_title": "Team Size",
|
|
324
621
|
"terms_and_conditions_link_title": "terms and conditions",
|
|
325
622
|
"the nin format is not valid": "May you please verify the entered identification number.",
|
|
326
|
-
"
|
|
623
|
+
"title_article": "Article of association",
|
|
624
|
+
"title_bank_statement": "Bank IBAN certificate",
|
|
625
|
+
"title_brand_logo": "Brand Logo",
|
|
626
|
+
"title_civil_id": "Civil ID Attachment",
|
|
627
|
+
"title_connect_flow": "Connect Tap",
|
|
327
628
|
"title_license_certificate": "License Certificate",
|
|
629
|
+
"title_signature_file": "Signature Attachment",
|
|
630
|
+
"title_tax_document": "Tax document",
|
|
328
631
|
"title_upload_file": "upload from your computer",
|
|
632
|
+
"transaction_policy_error": "You have to accept the transaction policy",
|
|
633
|
+
"try_again": "Try Again",
|
|
634
|
+
"try_sign_in": "Try signing in again",
|
|
329
635
|
"twitter": "your.business",
|
|
636
|
+
"type_board_member": "Board member",
|
|
637
|
+
"type_share_holder": "Share holder",
|
|
638
|
+
"type_user": "User",
|
|
639
|
+
"unified_number_hint": "00000",
|
|
640
|
+
"unified_number_label": "Unified Number",
|
|
641
|
+
"unified_number_required": "Unified Number Required",
|
|
330
642
|
"upload_bank_statement": "Please upload the bank statement",
|
|
331
643
|
"upload_file": "Select a file from your computer",
|
|
644
|
+
"uploaded_file": "file",
|
|
332
645
|
"vat_id": "Tax Identification Number (TIN)",
|
|
333
646
|
"vat_id_placeholder": "000000000",
|
|
334
647
|
"verification_brand_name": "Brand name",
|
|
@@ -340,123 +653,10 @@
|
|
|
340
653
|
"verification_name": "Name",
|
|
341
654
|
"verification_status": "Status",
|
|
342
655
|
"verification_status_cancelled": "Cancelled",
|
|
656
|
+
"wallet_id_missing": "Wallet id is missing",
|
|
343
657
|
"website": "www.yourbusiness.com",
|
|
344
|
-
"yes": "Yes",
|
|
345
|
-
"invalid_linkedin_profile_url": "May you please verify the entered LinkedIn profile URL.",
|
|
346
|
-
"invalid_facebook_username": "May you please verify the entered Facebook username.",
|
|
347
|
-
"invalid_instagram_username": "May you please verify the entered Instagram username.",
|
|
348
|
-
"invalid_twitter_username": "May you please verify the entered Twitter username.",
|
|
349
|
-
"invalid_physical_store_location": "May you please verify the entered physical store location.",
|
|
350
|
-
"invalid_ios_app": "May you please verify the entered iOS application name.",
|
|
351
|
-
"invalid_android_app": "May you please verify the entered Android application name.",
|
|
352
|
-
"invalid_call_center_number": "May you please verify the entered call center number.",
|
|
353
|
-
"activities_name_hint": "activities_name_hint",
|
|
354
|
-
"customer_base_name_hint": "customer_base_name_hint",
|
|
355
|
-
"title_article": "Article",
|
|
356
|
-
"article_of_association": "Article file. PDF, JPG or PNG files up to 5mb.",
|
|
357
|
-
"paci_verification_title_wait": "Please wait",
|
|
358
|
-
"paci_verification_title_check": "We are still checking",
|
|
359
|
-
"paci_verification_title_error": "We cannot confirm your authentication",
|
|
360
|
-
"paci_verification_description_wait": "This might take a moment...",
|
|
361
|
-
"paci_verification_description_check": "This might take a moment...",
|
|
362
|
-
"paci_verification_description_error": "Please try again.",
|
|
363
|
-
"paci_verification_redirection_message": "You will be redirected now",
|
|
364
|
-
"commercial_reg_hint": "Commercial Registration",
|
|
365
|
-
"homemaker_reg_hint": "Home Business",
|
|
366
|
-
"file_already_exist": "file is already uploaded",
|
|
367
|
-
"file_exceed_max_limit": "You can able to upload maximum {{length}} files",
|
|
368
|
-
"unified_number_label": "Unified Number",
|
|
369
|
-
"unified_number_hint": "00000",
|
|
370
|
-
"business_expiry_date": "Expiry Date",
|
|
371
|
-
"capital_paid_label": "Capital Paid ({{currency}})",
|
|
372
|
-
"capital_paid_hint": "00000",
|
|
373
|
-
"capital_share_count_label": "Capital Share Count",
|
|
374
|
-
"capital_share_count_hint": "00000",
|
|
375
|
-
"capital_share_value_label": "Capital Share Value ({{currency}})",
|
|
376
|
-
"capital_share_value_hint": "00000",
|
|
377
|
-
"license_name_placeholder": "Legal name",
|
|
378
|
-
"choose_any_issuing_date": "Please select a date",
|
|
379
|
-
"choose_any_expiry_date": "Please select a date",
|
|
380
|
-
"entity_type": "Entity Type",
|
|
381
|
-
"choose_entity_type": "- Please select -",
|
|
382
|
-
"entity_type_required": "Please select at least one entity type",
|
|
383
|
-
"enter_legal_name_min_three_chars": "Please Enter at least minimum 2 characters",
|
|
384
|
-
"capital_paid_required": "Please Enter paid amount",
|
|
385
|
-
"capital_share_count_required": "Please Enter share count",
|
|
386
|
-
"capital_share_value_required": "Please Enter share value",
|
|
387
|
-
"unified_number_required": "Unified Number Required",
|
|
388
|
-
"creating_account_title": "Creating your account",
|
|
389
|
-
"creating_account_description": "This might take a moment...",
|
|
390
|
-
"uploaded_file": "file",
|
|
391
|
-
"prepare_data_title": "Preparing your data",
|
|
392
|
-
"prepare_data_description": "This might take a moment...",
|
|
393
|
-
"oops": "Oops",
|
|
394
|
-
"file_upload_at_least_one": "please upload at least one file",
|
|
395
|
-
"company_individuals": "Company Individuals",
|
|
396
|
-
"company_individuals_add_or_request_details": "Add or request details for authorized signatories",
|
|
397
|
-
"add_details": "Add details",
|
|
398
|
-
"request_details_by_email": "Request details by email",
|
|
399
|
-
"back": "Back",
|
|
400
|
-
"company_individuals_details": "Company individuals details ({{count}})",
|
|
401
|
-
"type_user": "User",
|
|
402
|
-
"type_share_holder": "Share holder",
|
|
403
|
-
"type_board_member": "Board member",
|
|
404
|
-
"individual_gender_title": "Gender",
|
|
405
|
-
"gender_male": "Male",
|
|
406
|
-
"gender_female": "Female",
|
|
407
|
-
"issued_country_label": "Issued Country",
|
|
408
|
-
"choose_issued_country": "- Please select -",
|
|
409
|
-
"enter_expiry_date": "Expiry Date",
|
|
410
|
-
"place_of_birth_country_label": "Place of Birth County",
|
|
411
|
-
"choose_place_of_birth_country": "- Please select -",
|
|
412
|
-
"place_birth_city_label": "Place of Birth City",
|
|
413
|
-
"choose_place_birth_city": "- Please select -",
|
|
414
|
-
"nationality_label": "Nationality",
|
|
415
|
-
"choose_nationality": "- Please select -",
|
|
416
|
-
"share_count_label": "Share Count",
|
|
417
|
-
"share_count_hint": "0",
|
|
418
|
-
"share_value_label": "Share Value ({{currency}})",
|
|
419
|
-
"share_value_hint": "0000",
|
|
420
|
-
"brand": "Brand",
|
|
421
|
-
"try_again": "Try again",
|
|
422
|
-
"file_delete_error": "Something went wrong with deleting file. Please try again",
|
|
423
|
-
"file_download_error": "Something went wrong with downloading file. Please try again",
|
|
424
|
-
"title_brand_logo": "Brand Logo",
|
|
425
|
-
"description_brand_logo": "JPG or PNG files up to 4mb.",
|
|
426
|
-
"powered_by": "Powered by",
|
|
427
|
-
"add_other": "Other",
|
|
428
|
-
"choose_entity_license": "Choose Entity License",
|
|
429
|
-
"choose_license_entity": "- Please select -",
|
|
430
|
-
"your_brand_details": "Your brand details",
|
|
431
|
-
"signed_up": "Signed up",
|
|
432
|
-
"login_to_dashboard": "Login to dashboard",
|
|
433
|
-
"review_account": "Review account",
|
|
434
|
-
"license_info": "License information",
|
|
435
|
-
"sales_channels": "Sales channels",
|
|
436
658
|
"website_label": "Website",
|
|
437
|
-
"
|
|
438
|
-
"
|
|
439
|
-
"
|
|
440
|
-
"social_media_label": "Social Media",
|
|
441
|
-
"selected_activities": "Selected Activities",
|
|
442
|
-
"segment_location_title": "Segment Location",
|
|
443
|
-
"segment_tech_title": "Segment Tech",
|
|
444
|
-
"segment_profit_title": "Segment Profit",
|
|
445
|
-
"alert_choose_segment_location": "Please select segment location",
|
|
446
|
-
"alert_choose_segment_profit": "Please select segment profit",
|
|
447
|
-
"alert_choose_segment_tech": "Please select segment tech",
|
|
448
|
-
"switch_to_islamic_calendar": "Switch to Islamic Calendar",
|
|
449
|
-
"switch_to_gregorian_calendar": "Switch to Gregorian Calendar",
|
|
450
|
-
"choose_any_monthly_income": "Please choose monthly income",
|
|
451
|
-
"auth_brand_required": "Brand is required",
|
|
452
|
-
"auth_entity_required": "Entity is required",
|
|
453
|
-
"auth_merchant_required": "Merchant is required",
|
|
454
|
-
"auth_terminal_required": "Terminal is required",
|
|
455
|
-
"select_entity_label": "Entity",
|
|
456
|
-
"select_entity_placeholder": "Please select a entity",
|
|
457
|
-
"select_merchant_label": "Merchant",
|
|
458
|
-
"select_merchant_placeholder": "Please select a merchant",
|
|
459
|
-
"select_terminal_label": "Terminal",
|
|
460
|
-
"select_terminal_placeholder": "Please select a terminal",
|
|
461
|
-
"close_and_complete_later": "Close and Complete Later"
|
|
659
|
+
"year": "Year",
|
|
660
|
+
"yes": "Yes",
|
|
661
|
+
"your_brand_details": "Your brand details"
|
|
462
662
|
}
|