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