@tap-payments/auth-jsconnect 2.7.1-test → 2.7.1

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