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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (644) hide show
  1. package/README.md +1 -1
  2. package/build/@types/app.d.ts +73 -18
  3. package/build/@types/app.js +19 -1
  4. package/build/@types/config.d.ts +49 -0
  5. package/build/@types/config.js +1 -0
  6. package/build/@types/form.d.ts +14 -3
  7. package/build/@types/index.d.ts +1 -0
  8. package/build/@types/index.js +1 -0
  9. package/build/@types/redux.d.ts +1 -0
  10. package/build/@types/theme.d.ts +4 -0
  11. package/build/@types/theme.js +5 -0
  12. package/build/api/account.d.ts +6 -0
  13. package/build/api/account.js +16 -2
  14. package/build/api/auth.d.ts +44 -2
  15. package/build/api/auth.js +18 -1
  16. package/build/api/availabilityServices.d.ts +1 -0
  17. package/build/api/country.d.ts +1 -0
  18. package/build/api/country.js +8 -1
  19. package/build/api/data.d.ts +4 -17
  20. package/build/api/data.js +5 -45
  21. package/build/api/entity.d.ts +28 -3
  22. package/build/api/entity.js +23 -10
  23. package/build/api/firebase.js +68 -8
  24. package/build/api/index.d.ts +24 -29
  25. package/build/api/lead.d.ts +27 -3
  26. package/build/api/lead.js +63 -1
  27. package/build/api/operator.d.ts +8 -3
  28. package/build/api/operator.js +4 -16
  29. package/build/api/user.d.ts +7 -0
  30. package/build/api/user.js +9 -1
  31. package/build/app/rootReducer.d.ts +2 -0
  32. package/build/app/rootReducer.js +5 -1
  33. package/build/app/settings.d.ts +13 -6
  34. package/build/app/settings.js +119 -77
  35. package/build/app/store.d.ts +4 -0
  36. package/build/assets/locales/ar.json +346 -143
  37. package/build/assets/locales/en.json +343 -143
  38. package/build/components/AnimationFlow/AnimationFlow.d.ts +14 -3
  39. package/build/components/AnimationFlow/AnimationFlow.js +16 -5
  40. package/build/components/AnimationFlow/BottomSheet.d.ts +7 -2
  41. package/build/components/AnimationFlow/BottomSheet.js +44 -15
  42. package/build/components/AnimationFlow/Dialog.d.ts +11 -2
  43. package/build/components/AnimationFlow/Dialog.js +10 -12
  44. package/build/components/AnimationFlow/Loader.d.ts +6 -1
  45. package/build/components/AnimationFlow/Loader.js +17 -5
  46. package/build/components/ArabicDatePicker/ArabicDatePicker.d.ts +1 -1
  47. package/build/components/ArabicDatePicker/ArabicDatePicker.js +2 -2
  48. package/build/components/ArabicDatePicker/style.css +32 -3
  49. package/build/components/DatePicker/DatePicker.d.ts +1 -1
  50. package/build/components/DatePicker/DatePicker.js +2 -2
  51. package/build/components/ExpandIcon/ExpandIcon.d.ts +2 -0
  52. package/build/components/Footer/Footer.js +2 -1
  53. package/build/components/Input/Input.js +1 -1
  54. package/build/components/Providers/ThemeProvider.js +3 -3
  55. package/build/components/Slide/Slide.d.ts +1 -1
  56. package/build/components/Tooltip/Tooltip.js +1 -1
  57. package/build/constants/api.d.ts +9 -7
  58. package/build/constants/api.js +19 -15
  59. package/build/constants/app.d.ts +56 -0
  60. package/build/constants/app.js +446 -21
  61. package/build/constants/assets.d.ts +4 -0
  62. package/build/constants/assets.js +5 -1
  63. package/build/constants/dummy.d.ts +43 -196
  64. package/build/constants/dummy.js +614 -6141
  65. package/build/constants/flows.d.ts +24 -0
  66. package/build/constants/flows.js +25 -0
  67. package/build/constants/index.d.ts +1 -0
  68. package/build/constants/index.js +1 -0
  69. package/build/constants/validation.d.ts +5 -0
  70. package/build/constants/validation.js +6 -1
  71. package/build/features/app/auth/authStore.d.ts +103 -0
  72. package/build/features/app/auth/authStore.js +1184 -0
  73. package/build/features/app/bank/bankStore.d.ts +13 -18
  74. package/build/features/app/bank/bankStore.js +194 -161
  75. package/build/features/app/board/boardStore.d.ts +33 -0
  76. package/build/features/app/board/boardStore.js +269 -0
  77. package/build/features/app/brand/brandStore.d.ts +17 -31
  78. package/build/features/app/brand/brandStore.js +272 -266
  79. package/build/features/app/business/businessStore.d.ts +28 -10
  80. package/build/features/app/business/businessStore.js +363 -216
  81. package/build/features/app/connect/connectStore.d.ts +39 -15
  82. package/build/features/app/connect/connectStore.js +321 -216
  83. package/build/features/app/connectExpress/connectExpressStore.d.ts +63 -29
  84. package/build/features/app/connectExpress/connectExpressStore.js +744 -382
  85. package/build/features/app/entity/entityStore.d.ts +20 -34
  86. package/build/features/app/entity/entityStore.js +224 -249
  87. package/build/features/app/individual/individualStore.d.ts +22 -32
  88. package/build/features/app/individual/individualStore.js +331 -290
  89. package/build/features/app/password/passwordStore.d.ts +33 -18
  90. package/build/features/app/password/passwordStore.js +263 -223
  91. package/build/features/app/signIn/signInStore.js +19 -15
  92. package/build/features/app/tax/taxStore.d.ts +13 -7
  93. package/build/features/app/tax/taxStore.js +178 -144
  94. package/build/features/auth/Auth.d.ts +14 -0
  95. package/build/features/auth/Auth.js +168 -0
  96. package/build/features/auth/index.d.ts +1 -0
  97. package/build/features/auth/index.js +1 -0
  98. package/build/features/auth/screens/AccountCreatedLoader/AccountCreatedLoader.d.ts +5 -0
  99. package/build/features/auth/screens/AccountCreatedLoader/AccountCreatedLoader.js +36 -0
  100. package/build/features/auth/screens/AccountCreatedLoader/index.d.ts +2 -0
  101. package/build/features/auth/screens/AccountCreatedLoader/index.js +2 -0
  102. package/build/features/auth/screens/AccountNotFound/AccountNotFound.d.ts +5 -0
  103. package/build/features/auth/screens/AccountNotFound/AccountNotFound.js +71 -0
  104. package/build/features/auth/screens/AccountNotFound/index.d.ts +2 -0
  105. package/build/features/auth/screens/AccountNotFound/index.js +2 -0
  106. package/build/features/auth/screens/AuthMerchant/AuthMerchant.d.ts +5 -0
  107. package/build/features/auth/screens/AuthMerchant/AuthMerchant.js +73 -0
  108. package/build/features/{connectExpress/screens/AuthenticationList → auth/screens/AuthMerchant}/MerchantList.d.ts +2 -1
  109. package/build/features/auth/screens/AuthMerchant/MerchantList.js +64 -0
  110. package/build/features/auth/screens/AuthMerchant/index.d.ts +2 -0
  111. package/build/features/auth/screens/AuthMerchant/index.js +2 -0
  112. package/build/features/auth/screens/AuthMerchant/validation.d.ts +8 -0
  113. package/build/features/auth/screens/AuthMerchant/validation.js +4 -0
  114. package/build/features/auth/screens/AuthSwitch/AuthSwitch.d.ts +5 -0
  115. package/build/features/auth/screens/AuthSwitch/AuthSwitch.js +58 -0
  116. package/build/features/auth/screens/AuthSwitch/index.d.ts +3 -0
  117. package/build/features/auth/screens/AuthSwitch/index.js +2 -0
  118. package/build/features/auth/screens/AuthenticationList/AuthenticationList.d.ts +5 -0
  119. package/build/features/auth/screens/AuthenticationList/AuthenticationList.js +96 -0
  120. package/build/features/auth/screens/AuthenticationList/BrandList.d.ts +10 -0
  121. package/build/features/auth/screens/AuthenticationList/BrandList.js +81 -0
  122. package/build/features/auth/screens/AuthenticationList/EntityLegalName.d.ts +3 -0
  123. package/build/features/auth/screens/AuthenticationList/EntityLegalName.js +48 -0
  124. package/build/features/auth/screens/AuthenticationList/EntityLicenseType.d.ts +31 -0
  125. package/build/features/auth/screens/AuthenticationList/EntityLicenseType.js +90 -0
  126. package/build/features/auth/screens/AuthenticationList/EntityList.d.ts +11 -0
  127. package/build/features/auth/screens/AuthenticationList/EntityList.js +138 -0
  128. package/build/features/auth/screens/AuthenticationList/LicenseNumber.d.ts +3 -0
  129. package/build/features/auth/screens/AuthenticationList/LicenseNumber.js +36 -0
  130. package/build/features/auth/screens/AuthenticationList/index.d.ts +3 -0
  131. package/build/features/auth/screens/AuthenticationList/index.js +2 -0
  132. package/build/features/auth/screens/AuthenticationList/validation.d.ts +20 -0
  133. package/build/features/auth/screens/AuthenticationList/validation.js +68 -0
  134. package/build/features/auth/screens/BusinessCountry/BusinessCountry.d.ts +5 -0
  135. package/build/features/auth/screens/BusinessCountry/BusinessCountry.js +111 -0
  136. package/build/features/auth/screens/BusinessCountry/index.d.ts +3 -0
  137. package/build/features/auth/screens/BusinessCountry/index.js +2 -0
  138. package/build/features/auth/screens/CivilID/CivilID.d.ts +5 -0
  139. package/build/features/auth/screens/CivilID/CivilID.js +57 -0
  140. package/build/features/auth/screens/CivilID/IDNumber.d.ts +8 -0
  141. package/build/features/auth/screens/CivilID/IDNumber.js +54 -0
  142. package/build/features/auth/screens/CivilID/index.d.ts +3 -0
  143. package/build/features/auth/screens/CivilID/index.js +2 -0
  144. package/build/features/auth/screens/CivilID/validation.d.ts +8 -0
  145. package/build/features/auth/screens/CivilID/validation.js +4 -0
  146. package/build/features/auth/screens/DOB/DOB.js +47 -0
  147. package/build/features/auth/screens/DOB/DOBForm.d.ts +5 -0
  148. package/build/features/auth/screens/DOB/DOBForm.js +59 -0
  149. package/build/features/auth/screens/DOB/index.d.ts +3 -0
  150. package/build/features/auth/screens/DOB/index.js +2 -0
  151. package/build/features/auth/screens/DOB/validation.d.ts +8 -0
  152. package/build/features/auth/screens/DOB/validation.js +4 -0
  153. package/build/features/auth/screens/Email/Email.d.ts +5 -0
  154. package/build/features/auth/screens/Email/Email.js +57 -0
  155. package/build/features/auth/screens/Email/EmailField.d.ts +8 -0
  156. package/build/features/auth/screens/Email/EmailField.js +52 -0
  157. package/build/features/auth/screens/Email/index.d.ts +3 -0
  158. package/build/features/auth/screens/Email/index.js +2 -0
  159. package/build/features/auth/screens/Email/validation.d.ts +8 -0
  160. package/build/features/auth/screens/Email/validation.js +4 -0
  161. package/build/features/auth/screens/EmailSent/EmailSent.d.ts +5 -0
  162. package/build/features/auth/screens/EmailSent/EmailSent.js +79 -0
  163. package/build/features/auth/screens/EmailSent/index.d.ts +2 -0
  164. package/build/features/auth/screens/EmailSent/index.js +2 -0
  165. package/build/features/auth/screens/MigratingData/MigratingData.d.ts +5 -0
  166. package/build/features/auth/screens/MigratingData/MigratingData.js +44 -0
  167. package/build/features/auth/screens/MigratingData/index.d.ts +2 -0
  168. package/build/features/auth/screens/MigratingData/index.js +2 -0
  169. package/build/features/auth/screens/Mobile/Mobile.d.ts +5 -0
  170. package/build/features/auth/screens/Mobile/Mobile.js +82 -0
  171. package/build/features/auth/screens/Mobile/MobileNumber.d.ts +13 -0
  172. package/build/features/auth/screens/Mobile/MobileNumber.js +156 -0
  173. package/build/features/auth/screens/Mobile/index.d.ts +3 -0
  174. package/build/features/auth/screens/Mobile/index.js +2 -0
  175. package/build/features/auth/screens/Mobile/validation.d.ts +8 -0
  176. package/build/features/auth/screens/Mobile/validation.js +38 -0
  177. package/build/features/auth/screens/NID/IDNumber.d.ts +7 -0
  178. package/build/features/auth/screens/NID/IDNumber.js +55 -0
  179. package/build/features/auth/screens/NID/NID.d.ts +5 -0
  180. package/build/features/auth/screens/NID/NID.js +56 -0
  181. package/build/features/auth/screens/NID/index.d.ts +3 -0
  182. package/build/features/auth/screens/NID/index.js +2 -0
  183. package/build/features/auth/screens/NID/validation.d.ts +8 -0
  184. package/build/features/auth/screens/NID/validation.js +10 -0
  185. package/build/features/auth/screens/OTP/OTP.js +118 -0
  186. package/build/features/{connectExpress/screens/IdentityOTP → auth/screens/OTP}/OTPInput.js +27 -7
  187. package/build/features/auth/screens/OperatorError/OperatorError.d.ts +5 -0
  188. package/build/features/auth/screens/OperatorError/OperatorError.js +9 -0
  189. package/build/features/auth/screens/OperatorError/index.d.ts +3 -0
  190. package/build/features/auth/screens/OperatorError/index.js +2 -0
  191. package/build/features/auth/screens/Password/Password.d.ts +5 -0
  192. package/build/features/auth/screens/Password/Password.js +61 -0
  193. package/build/features/auth/screens/Password/PasswordField.d.ts +5 -0
  194. package/build/features/auth/screens/Password/PasswordField.js +28 -0
  195. package/build/features/auth/screens/Password/index.d.ts +3 -0
  196. package/build/features/auth/screens/Password/index.js +2 -0
  197. package/build/features/auth/screens/Password/validation.d.ts +8 -0
  198. package/build/features/auth/screens/Password/validation.js +4 -0
  199. package/build/features/auth/screens/PreparingData/PreparingData.d.ts +5 -0
  200. package/build/features/auth/screens/PreparingData/PreparingData.js +44 -0
  201. package/build/features/auth/screens/PreparingData/index.d.ts +2 -0
  202. package/build/features/auth/screens/PreparingData/index.js +2 -0
  203. package/build/features/auth/screens/ResetPasswordMessage/ResetPasswordMessage.d.ts +5 -0
  204. package/build/features/auth/screens/ResetPasswordMessage/ResetPasswordMessage.js +21 -0
  205. package/build/features/auth/screens/ResetPasswordMessage/index.d.ts +3 -0
  206. package/build/features/auth/screens/ResetPasswordMessage/index.js +2 -0
  207. package/build/features/auth/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
  208. package/build/features/auth/screens/VerifyNafath/VerifyNafath.js +35 -0
  209. package/build/features/auth/screens/VerifyNafath/index.d.ts +3 -0
  210. package/build/features/auth/screens/VerifyNafath/index.js +2 -0
  211. package/build/features/auth/screens/VerifyPACI/VerifyPACI.d.ts +5 -0
  212. package/build/features/auth/screens/VerifyPACI/VerifyPACI.js +34 -0
  213. package/build/features/auth/screens/VerifyPACI/index.d.ts +3 -0
  214. package/build/features/auth/screens/VerifyPACI/index.js +2 -0
  215. package/build/features/bank/Bank.d.ts +6 -1
  216. package/build/features/bank/Bank.js +26 -12
  217. package/build/features/bank/screens/BankDetails/BankDetails.js +21 -7
  218. package/build/features/bank/screens/OperatorError/OperatorError.d.ts +5 -0
  219. package/build/features/bank/screens/OperatorError/OperatorError.js +9 -0
  220. package/build/features/bank/screens/OperatorError/index.d.ts +3 -0
  221. package/build/features/bank/screens/OperatorError/index.js +2 -0
  222. package/build/features/bank/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
  223. package/build/features/bank/screens/Verify/Verify.js +8 -7
  224. package/build/features/board/Board.d.ts +13 -0
  225. package/build/features/board/Board.js +87 -0
  226. package/build/features/board/index.d.ts +1 -0
  227. package/build/features/board/index.js +1 -0
  228. package/build/features/board/screens/OperatorError/OperatorError.d.ts +5 -0
  229. package/build/features/board/screens/OperatorError/OperatorError.js +9 -0
  230. package/build/features/board/screens/OperatorError/index.d.ts +3 -0
  231. package/build/features/board/screens/OperatorError/index.js +2 -0
  232. package/build/features/board/screens/PrepareDataLoading/PrepareDataLoading.d.ts +4 -0
  233. package/build/features/board/screens/PrepareDataLoading/PrepareDataLoading.js +10 -0
  234. package/build/features/board/screens/PrepareDataLoading/index.d.ts +2 -0
  235. package/build/features/board/screens/PrepareDataLoading/index.js +2 -0
  236. package/build/features/board/screens/ResetPasswordSuccess/ResetPasswordSuccess.d.ts +5 -0
  237. package/build/features/board/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +21 -0
  238. package/build/features/board/screens/ResetPasswordSuccess/index.d.ts +3 -0
  239. package/build/features/board/screens/ResetPasswordSuccess/index.js +2 -0
  240. package/build/features/board/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.d.ts +3 -0
  241. package/build/features/board/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +44 -0
  242. package/build/features/board/screens/SuccessWithFlowButtons/index.d.ts +2 -0
  243. package/build/features/board/screens/SuccessWithFlowButtons/index.js +2 -0
  244. package/build/features/board/screens/Verify/OTPInput.d.ts +7 -0
  245. package/build/features/{business/screens/OTP → board/screens/Verify}/OTPInput.js +9 -7
  246. package/build/features/{connectExpress/screens/IdentityOTP/OTP.js → board/screens/Verify/Verify.js} +25 -37
  247. package/build/features/board/screens/Verify/index.d.ts +2 -0
  248. package/build/features/board/screens/Verify/index.js +2 -0
  249. package/build/features/brand/Brand.d.ts +6 -1
  250. package/build/features/brand/Brand.js +26 -12
  251. package/build/features/brand/screens/BrandActivities/ActivitiesList.d.ts +9 -9
  252. package/build/features/brand/screens/BrandActivities/BrandActivities.js +49 -12
  253. package/build/features/brand/screens/BrandActivities/CustomerBase.d.ts +6 -6
  254. package/build/features/brand/screens/BrandActivities/CustomerBase.js +1 -1
  255. package/build/features/brand/screens/BrandActivities/ExpectedSalesRange.js +5 -2
  256. package/build/features/brand/screens/BrandActivities/RefundPolicy.d.ts +4 -4
  257. package/build/features/brand/screens/BrandActivities/RefundPolicy.js +1 -1
  258. package/build/features/brand/screens/BrandActivities/TAC.d.ts +1 -1
  259. package/build/features/brand/screens/BrandActivities/TAC.js +1 -1
  260. package/build/features/brand/screens/BrandActivities/TransactionPolicy.js +1 -1
  261. package/build/features/brand/screens/BrandInfo/BrandInfo.js +27 -7
  262. package/build/features/brand/screens/BrandInfo/BrandName.js +5 -2
  263. package/build/features/brand/screens/BrandInfo/validation.js +2 -2
  264. package/build/features/brand/screens/BrandSegmentInfo/BrandSegmentInfo.js +23 -7
  265. package/build/features/brand/screens/OperatorError/OperatorError.d.ts +5 -0
  266. package/build/features/brand/screens/OperatorError/OperatorError.js +9 -0
  267. package/build/features/brand/screens/OperatorError/index.d.ts +3 -0
  268. package/build/features/brand/screens/OperatorError/index.js +2 -0
  269. package/build/features/brand/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
  270. package/build/features/brand/screens/Verify/Verify.js +4 -3
  271. package/build/features/business/Business.js +20 -12
  272. package/build/features/business/screens/Activities/Activities.js +27 -10
  273. package/build/features/business/screens/Activities/ActivitiesList.d.ts +4 -4
  274. package/build/features/business/screens/Activities/ActivitiesList.js +1 -1
  275. package/build/features/business/screens/Activities/OperationStartDate.d.ts +5 -3
  276. package/build/features/business/screens/Activities/OperationStartDate.js +2 -2
  277. package/build/features/business/screens/BrandDetails/SalesChannel.d.ts +2 -2
  278. package/build/features/business/screens/BusinessType/BusinessType.js +24 -8
  279. package/build/features/business/screens/BusinessType/EntityName.js +3 -3
  280. package/build/features/business/screens/BusinessType/LicenseList.js +3 -3
  281. package/build/features/business/screens/BusinessType/LicenseNumber.js +10 -9
  282. package/build/features/business/screens/BusinessType/LicenseType.d.ts +4 -4
  283. package/build/features/business/screens/BusinessType/validation.d.ts +10 -0
  284. package/build/features/business/screens/BusinessType/validation.js +16 -0
  285. package/build/features/business/screens/CivilID/CivilID.js +1 -1
  286. package/build/features/business/screens/Customers/CustomerLocations.d.ts +14 -12
  287. package/build/features/business/screens/Customers/CustomerLocations.js +5 -3
  288. package/build/features/business/screens/Customers/Customers.js +51 -11
  289. package/build/features/business/screens/Customers/ExpectedCustomers.d.ts +3 -1
  290. package/build/features/business/screens/Customers/ExpectedCustomers.js +5 -3
  291. package/build/features/business/screens/Customers/ExpectedSalesRange.d.ts +3 -1
  292. package/build/features/business/screens/Customers/ExpectedSalesRange.js +10 -4
  293. package/build/features/business/screens/Customers/RefundPolicy.d.ts +12 -5
  294. package/build/features/business/screens/Customers/RefundPolicy.js +13 -13
  295. package/build/features/business/screens/Customers/TransactionPolicy.d.ts +4 -1
  296. package/build/features/business/screens/Customers/TransactionPolicy.js +8 -5
  297. package/build/features/business/screens/Customers/validation.d.ts +6 -6
  298. package/build/features/business/screens/Customers/validation.js +3 -8
  299. package/build/features/business/screens/DOB/DOB.d.ts +6 -0
  300. package/build/features/business/screens/DOB/DOB.js +45 -0
  301. package/build/features/business/screens/DOB/DOBForm.d.ts +5 -0
  302. package/build/features/business/screens/DOB/DOBForm.js +72 -0
  303. package/build/features/business/screens/DOB/index.d.ts +3 -0
  304. package/build/features/business/screens/DOB/index.js +2 -0
  305. package/build/features/business/screens/DOB/validation.d.ts +8 -0
  306. package/build/features/business/screens/DOB/validation.js +4 -0
  307. package/build/features/business/screens/IDBOD/ID.js +6 -2
  308. package/build/features/business/screens/IDBOD/IDBOD.js +18 -19
  309. package/build/features/business/screens/IDBOD/validation.d.ts +7 -0
  310. package/build/features/business/screens/IDBOD/validation.js +4 -1
  311. package/build/features/business/screens/OperatorError/OperatorError.d.ts +5 -0
  312. package/build/features/business/screens/OperatorError/OperatorError.js +9 -0
  313. package/build/features/business/screens/OperatorError/index.d.ts +3 -0
  314. package/build/features/business/screens/OperatorError/index.js +2 -0
  315. package/build/features/business/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +14 -3
  316. package/build/features/business/screens/Verify/Verify.js +16 -5
  317. package/build/features/business/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
  318. package/build/features/business/screens/VerifyNafath/VerifyNafath.js +35 -0
  319. package/build/features/business/screens/VerifyNafath/index.d.ts +3 -0
  320. package/build/features/business/screens/VerifyNafath/index.js +2 -0
  321. package/build/features/connect/Connect.d.ts +5 -1
  322. package/build/features/connect/Connect.js +48 -31
  323. package/build/features/connect/screens/BrandSegment/BrandSegment.js +4 -26
  324. package/build/features/connect/screens/BrandSegment/TeamSize.js +1 -1
  325. package/build/features/connect/screens/BrandSegment/validation.d.ts +0 -9
  326. package/build/features/connect/screens/BrandSegment/validation.js +0 -3
  327. package/build/features/connect/screens/BusinessCountry/BusinessCountry.d.ts +5 -0
  328. package/build/features/connect/screens/BusinessCountry/BusinessCountry.js +113 -0
  329. package/build/features/connect/screens/BusinessCountry/index.d.ts +3 -0
  330. package/build/features/connect/screens/BusinessCountry/index.js +2 -0
  331. package/build/features/connect/screens/CivilID/CivilID.js +12 -4
  332. package/build/features/{connectExpress/screens/NID → connect/screens/DOB}/DOB.d.ts +1 -2
  333. package/build/features/connect/screens/{NID → DOB}/DOB.js +2 -2
  334. package/build/features/connect/screens/DOB/DOBForm.d.ts +5 -0
  335. package/build/features/connect/screens/DOB/DOBForm.js +59 -0
  336. package/build/features/connect/screens/DOB/index.d.ts +3 -0
  337. package/build/features/connect/screens/DOB/index.js +2 -0
  338. package/build/features/connect/screens/DOB/validation.d.ts +8 -0
  339. package/build/features/connect/screens/DOB/validation.js +4 -0
  340. package/build/features/connect/screens/Individual/Individual.js +12 -6
  341. package/build/features/connect/screens/Individual/MobileNumber.js +8 -7
  342. package/build/features/connect/screens/Individual/validation.js +11 -3
  343. package/build/features/connect/screens/Merchant/BrandList.js +3 -3
  344. package/build/features/connect/screens/Merchant/BrandName.js +5 -2
  345. package/build/features/connect/screens/Merchant/Merchant.js +1 -1
  346. package/build/features/connect/screens/Merchant/SalesChannels.js +1 -1
  347. package/build/features/connect/screens/Merchant/validation.js +2 -2
  348. package/build/features/connect/screens/Mobile/Mobile.js +14 -7
  349. package/build/features/connect/screens/Mobile/MobileNumber.js +15 -11
  350. package/build/features/connect/screens/Mobile/validation.js +11 -3
  351. package/build/features/connect/screens/NID/IDNumber.d.ts +1 -0
  352. package/build/features/connect/screens/NID/IDNumber.js +2 -2
  353. package/build/features/connect/screens/NID/NID.js +10 -13
  354. package/build/features/connect/screens/NID/validation.d.ts +0 -3
  355. package/build/features/connect/screens/NID/validation.js +0 -1
  356. package/build/features/connect/screens/OTP/OTP.js +7 -7
  357. package/build/features/connect/screens/OTP/OTPInput.js +3 -11
  358. package/build/features/connect/screens/OperatorError/OperatorError.d.ts +5 -0
  359. package/build/features/connect/screens/OperatorError/OperatorError.js +9 -0
  360. package/build/features/connect/screens/OperatorError/index.d.ts +3 -0
  361. package/build/features/connect/screens/OperatorError/index.js +2 -0
  362. package/build/features/connect/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
  363. package/build/features/connect/screens/VerifyNafath/VerifyNafath.js +35 -0
  364. package/build/features/connect/screens/VerifyNafath/index.d.ts +3 -0
  365. package/build/features/connect/screens/VerifyNafath/index.js +2 -0
  366. package/build/features/connectExpress/ConnectExpress.d.ts +5 -2
  367. package/build/features/connectExpress/ConnectExpress.js +69 -36
  368. package/build/features/connectExpress/screens/AccountAlreadyCreated/AccountAlreadyCreated.js +14 -2
  369. package/build/features/connectExpress/screens/AccountCreatedLoader/AccountCreatedLoader.d.ts +5 -0
  370. package/build/features/connectExpress/screens/AccountCreatedLoader/AccountCreatedLoader.js +36 -0
  371. package/build/features/connectExpress/screens/AccountCreatedLoader/index.d.ts +2 -0
  372. package/build/features/connectExpress/screens/AccountCreatedLoader/index.js +2 -0
  373. package/build/features/connectExpress/screens/AuthMerchant/AuthMerchant.d.ts +5 -0
  374. package/build/features/connectExpress/screens/AuthMerchant/AuthMerchant.js +74 -0
  375. package/build/features/connectExpress/screens/{AuthenticationList/TerminalList.d.ts → AuthMerchant/MerchantList.d.ts} +4 -3
  376. package/build/features/connectExpress/screens/AuthMerchant/MerchantList.js +64 -0
  377. package/build/features/connectExpress/screens/AuthMerchant/index.d.ts +2 -0
  378. package/build/features/connectExpress/screens/AuthMerchant/index.js +2 -0
  379. package/build/features/connectExpress/screens/AuthMerchant/validation.d.ts +8 -0
  380. package/build/features/connectExpress/screens/AuthMerchant/validation.js +4 -0
  381. package/build/features/connectExpress/screens/AuthenticationList/AuthenticationList.js +28 -17
  382. package/build/features/connectExpress/screens/AuthenticationList/EntityLegalName.d.ts +3 -0
  383. package/build/features/connectExpress/screens/AuthenticationList/EntityLegalName.js +48 -0
  384. package/build/features/connectExpress/screens/AuthenticationList/EntityLicenseType.d.ts +31 -0
  385. package/build/features/connectExpress/screens/AuthenticationList/EntityLicenseType.js +90 -0
  386. package/build/features/connectExpress/screens/AuthenticationList/EntityList.d.ts +3 -3
  387. package/build/features/connectExpress/screens/AuthenticationList/EntityList.js +52 -10
  388. package/build/features/connectExpress/screens/AuthenticationList/LicenseNumber.d.ts +3 -0
  389. package/build/features/connectExpress/screens/AuthenticationList/LicenseNumber.js +36 -0
  390. package/build/features/connectExpress/screens/AuthenticationList/validation.d.ts +13 -10
  391. package/build/features/connectExpress/screens/AuthenticationList/validation.js +66 -7
  392. package/build/features/connectExpress/screens/BusinessCountry/BusinessCountry.d.ts +5 -0
  393. package/build/features/connectExpress/screens/BusinessCountry/BusinessCountry.js +111 -0
  394. package/build/features/connectExpress/screens/BusinessCountry/index.d.ts +3 -0
  395. package/build/features/connectExpress/screens/BusinessCountry/index.js +2 -0
  396. package/build/features/connectExpress/screens/CivilID/CivilID.js +16 -5
  397. package/build/features/connectExpress/screens/CivilID/IDNumber.js +7 -2
  398. package/build/features/connectExpress/screens/CivilIDMissed/CivilID.js +2 -2
  399. package/build/features/connectExpress/screens/CollectBusinessInfo/BrandName.js +5 -2
  400. package/build/features/connectExpress/screens/CollectBusinessInfo/CollectBusinessInfo.js +20 -5
  401. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseList.js +6 -5
  402. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseNumber.js +9 -8
  403. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.d.ts +4 -4
  404. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.js +1 -1
  405. package/build/features/connectExpress/screens/CollectBusinessInfo/TAC.d.ts +1 -1
  406. package/build/features/connectExpress/screens/CollectBusinessInfo/validation.d.ts +13 -0
  407. package/build/features/connectExpress/screens/CollectBusinessInfo/validation.js +68 -1
  408. package/build/features/connectExpress/screens/CollectIndividualInfo/CollectIndividualInfo.js +34 -7
  409. package/build/features/connectExpress/screens/CollectIndividualInfo/MobileNumber.js +9 -8
  410. package/build/features/connectExpress/screens/CollectIndividualInfo/validation.js +11 -3
  411. package/build/features/connectExpress/screens/CreateAccountLoader/CreateAccountLoader.js +14 -24
  412. package/build/features/connectExpress/screens/DOB/DOB.d.ts +6 -0
  413. package/build/features/connectExpress/screens/{NID → DOB}/DOB.js +3 -3
  414. package/build/features/connectExpress/screens/DOB/DOBForm.d.ts +5 -0
  415. package/build/features/connectExpress/screens/DOB/DOBForm.js +63 -0
  416. package/build/features/connectExpress/screens/DOB/index.d.ts +3 -0
  417. package/build/features/connectExpress/screens/DOB/index.js +2 -0
  418. package/build/features/connectExpress/screens/DOB/validation.d.ts +8 -0
  419. package/build/features/connectExpress/screens/DOB/validation.js +4 -0
  420. package/build/features/connectExpress/screens/IdentityVerifyNafath/IdentityVerifyNafath.d.ts +5 -0
  421. package/build/features/connectExpress/screens/IdentityVerifyNafath/IdentityVerifyNafath.js +35 -0
  422. package/build/features/connectExpress/screens/IdentityVerifyNafath/index.d.ts +3 -0
  423. package/build/features/connectExpress/screens/IdentityVerifyNafath/index.js +2 -0
  424. package/build/features/connectExpress/screens/IdentityVerifyPACI/VerifyPACI.js +2 -2
  425. package/build/features/connectExpress/screens/Mobile/Mobile.js +17 -7
  426. package/build/features/connectExpress/screens/Mobile/MobileNumber.js +18 -14
  427. package/build/features/connectExpress/screens/Mobile/TAC.js +1 -1
  428. package/build/features/connectExpress/screens/Mobile/validation.js +21 -6
  429. package/build/features/connectExpress/screens/NID/IDNumber.d.ts +1 -0
  430. package/build/features/connectExpress/screens/NID/IDNumber.js +2 -2
  431. package/build/features/connectExpress/screens/NID/NID.js +15 -12
  432. package/build/features/connectExpress/screens/NID/TAC.d.ts +1 -1
  433. package/build/features/connectExpress/screens/NID/TAC.js +2 -2
  434. package/build/features/connectExpress/screens/NID/validation.d.ts +0 -3
  435. package/build/features/connectExpress/screens/NID/validation.js +0 -2
  436. package/build/features/connectExpress/screens/NIDMissed/IDNumber.js +6 -2
  437. package/build/features/connectExpress/screens/NIDMissed/NID.js +10 -8
  438. package/build/features/connectExpress/screens/NIDMissed/validation.d.ts +7 -0
  439. package/build/features/connectExpress/screens/NIDMissed/validation.js +4 -1
  440. package/build/features/connectExpress/screens/OTP/OTP.js +14 -16
  441. package/build/features/connectExpress/screens/OTP/OTPInput.js +12 -10
  442. package/build/features/connectExpress/screens/OperatorError/OperatorError.d.ts +5 -0
  443. package/build/features/connectExpress/screens/OperatorError/OperatorError.js +9 -0
  444. package/build/features/connectExpress/screens/OperatorError/index.d.ts +3 -0
  445. package/build/features/connectExpress/screens/OperatorError/index.js +2 -0
  446. package/build/features/connectExpress/screens/PrepareDataLoading/PrepareDataLoading.d.ts +5 -0
  447. package/build/features/connectExpress/screens/PrepareDataLoading/PrepareDataLoading.js +34 -0
  448. package/build/features/connectExpress/screens/PrepareDataLoading/index.d.ts +2 -0
  449. package/build/features/connectExpress/screens/PrepareDataLoading/index.js +2 -0
  450. package/build/features/connectExpress/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +3 -4
  451. package/build/features/connectExpress/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
  452. package/build/features/connectExpress/screens/VerifyNafath/VerifyNafath.js +35 -0
  453. package/build/features/connectExpress/screens/VerifyNafath/index.d.ts +3 -0
  454. package/build/features/connectExpress/screens/VerifyNafath/index.js +2 -0
  455. package/build/features/entity/Entity.d.ts +5 -1
  456. package/build/features/entity/Entity.js +26 -12
  457. package/build/features/entity/screens/EntityCapital/ActivityList.d.ts +4 -4
  458. package/build/features/entity/screens/EntityCapital/CapitalPaid.js +5 -3
  459. package/build/features/entity/screens/EntityCapital/CapitalShareValue.js +6 -4
  460. package/build/features/entity/screens/EntityCapital/EntityCapital.js +34 -10
  461. package/build/features/entity/screens/EntityName/EntityName.js +44 -19
  462. package/build/features/entity/screens/EntityName/EntityTypeList.d.ts +9 -9
  463. package/build/features/entity/screens/EntityName/EntityTypeList.js +2 -3
  464. package/build/features/entity/screens/EntityName/ExpiryDate.d.ts +2 -2
  465. package/build/features/entity/screens/EntityName/ExpiryDate.js +13 -8
  466. package/build/features/entity/screens/EntityName/IssuingDate.d.ts +2 -2
  467. package/build/features/entity/screens/EntityName/IssuingDate.js +15 -8
  468. package/build/features/entity/screens/EntityName/LegalName.js +1 -13
  469. package/build/features/entity/screens/EntityName/LicenseNumber.js +10 -11
  470. package/build/features/entity/screens/EntityName/UnifiedNumber.js +4 -6
  471. package/build/features/entity/screens/EntityName/validation.d.ts +31 -3
  472. package/build/features/entity/screens/EntityName/validation.js +38 -9
  473. package/build/features/entity/screens/OperatorError/OperatorError.d.ts +5 -0
  474. package/build/features/entity/screens/OperatorError/OperatorError.js +9 -0
  475. package/build/features/entity/screens/OperatorError/index.d.ts +3 -0
  476. package/build/features/entity/screens/OperatorError/index.js +2 -0
  477. package/build/features/entity/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
  478. package/build/features/entity/screens/Verify/Verify.js +4 -3
  479. package/build/features/featuresScreens.d.ts +2 -0
  480. package/build/features/featuresScreens.js +250 -16
  481. package/build/features/individual/Individual.d.ts +5 -1
  482. package/build/features/individual/Individual.js +26 -12
  483. package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.d.ts +2 -2
  484. package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.js +55 -15
  485. package/build/features/individual/screens/AdditionalIndividualInfo/IsAuthorizedSwitch.d.ts +36 -0
  486. package/build/features/individual/screens/AdditionalIndividualInfo/IsAuthorizedSwitch.js +76 -0
  487. package/build/features/individual/screens/AdditionalIndividualInfo/MonthlyIncome.js +5 -2
  488. package/build/features/individual/screens/AdditionalIndividualInfo/PEPSwitch.d.ts +4 -4
  489. package/build/features/individual/screens/AdditionalIndividualInfo/ShareValue.js +7 -4
  490. package/build/features/individual/screens/AdditionalIndividualInfo/validation.d.ts +4 -1
  491. package/build/features/individual/screens/AdditionalIndividualInfo/validation.js +4 -3
  492. package/build/features/individual/screens/IndividualList/IndividualList.d.ts +4 -4
  493. package/build/features/individual/screens/IndividualList/IndividualList.js +21 -6
  494. package/build/features/individual/screens/IndividualList/MobileNumber.js +8 -10
  495. package/build/features/individual/screens/IndividualList/UserList.js +13 -9
  496. package/build/features/individual/screens/IndividualList/validation.js +11 -4
  497. package/build/features/individual/screens/IndividualPersonalInfo/Gender.d.ts +4 -4
  498. package/build/features/individual/screens/IndividualPersonalInfo/ID.js +6 -2
  499. package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.d.ts +2 -2
  500. package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.js +79 -21
  501. package/build/features/individual/screens/IndividualPersonalInfo/MobileNumber.js +6 -5
  502. package/build/features/individual/screens/IndividualPersonalInfo/validation.d.ts +1 -1
  503. package/build/features/individual/screens/IndividualPersonalInfo/validation.js +75 -63
  504. package/build/features/individual/screens/IndividualPhoneInfo/MobileNumber.js +9 -11
  505. package/build/features/individual/screens/IndividualPhoneInfo/PhoneInfo.js +1 -1
  506. package/build/features/individual/screens/IndividualPhoneInfo/validation.js +11 -3
  507. package/build/features/individual/screens/OperatorError/OperatorError.d.ts +5 -0
  508. package/build/features/individual/screens/OperatorError/OperatorError.js +9 -0
  509. package/build/features/individual/screens/OperatorError/index.d.ts +3 -0
  510. package/build/features/individual/screens/OperatorError/index.js +2 -0
  511. package/build/features/individual/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
  512. package/build/features/individual/screens/Verify/Verify.js +4 -3
  513. package/build/features/password/Password.d.ts +5 -1
  514. package/build/features/password/Password.js +90 -33
  515. package/build/features/password/screens/CreatePassword/CreatePassword.js +10 -4
  516. package/build/features/password/screens/OTP/OTP.js +4 -4
  517. package/build/features/password/screens/OperatorError/OperatorError.d.ts +5 -0
  518. package/build/features/password/screens/OperatorError/OperatorError.js +9 -0
  519. package/build/features/password/screens/OperatorError/index.d.ts +3 -0
  520. package/build/features/password/screens/OperatorError/index.js +2 -0
  521. package/build/features/password/screens/PrepareDataLoading/PrepareDataLoading.d.ts +4 -0
  522. package/build/features/password/screens/PrepareDataLoading/PrepareDataLoading.js +10 -0
  523. package/build/features/password/screens/PrepareDataLoading/index.d.ts +2 -0
  524. package/build/features/password/screens/PrepareDataLoading/index.js +2 -0
  525. package/build/features/password/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
  526. package/build/features/password/screens/Verify/Verify.js +8 -7
  527. package/build/features/shared/Address/CountryList.d.ts +7 -7
  528. package/build/features/shared/Address/InputSelect.d.ts +7 -7
  529. package/build/features/shared/Background/Background.d.ts +3 -1
  530. package/build/features/shared/Background/Background.js +9 -11
  531. package/build/features/shared/BusinessCountry/BusinessCountry.d.ts +15 -0
  532. package/build/features/shared/BusinessCountry/BusinessCountry.js +179 -0
  533. package/build/features/shared/BusinessCountry/index.d.ts +2 -0
  534. package/build/features/shared/BusinessCountry/index.js +2 -0
  535. package/build/features/shared/Button/Button.js +11 -5
  536. package/build/features/shared/Button/EmailProvidersButtons.js +2 -0
  537. package/build/features/shared/Button/FlowsButtons.js +19 -4
  538. package/build/features/shared/Button/NafathButton.d.ts +8 -0
  539. package/build/features/shared/Button/{AbsherButton.js → NafathButton.js} +12 -3
  540. package/build/features/shared/Button/index.d.ts +2 -2
  541. package/build/features/shared/Button/index.js +2 -2
  542. package/build/features/shared/Calender/Calender.d.ts +2 -1
  543. package/build/features/shared/Calender/Calender.js +3 -3
  544. package/build/features/shared/Containers/FeatureContainer.d.ts +3 -1
  545. package/build/features/shared/Containers/FeatureContainer.js +5 -3
  546. package/build/features/shared/Containers/ScreenContainer.d.ts +1 -1
  547. package/build/features/shared/DataLoading/DataLoading.d.ts +4 -1
  548. package/build/features/shared/DataLoading/DataLoading.js +2 -2
  549. package/build/features/shared/Dialog/DialogContainer.js +2 -1
  550. package/build/features/shared/Footer/Footer.js +2 -1
  551. package/build/features/shared/Input/Input.d.ts +2 -2
  552. package/build/features/shared/NafathVerification/NafathVerification.d.ts +14 -0
  553. package/build/features/shared/NafathVerification/NafathVerification.js +92 -0
  554. package/build/features/shared/NafathVerification/VerifyNafathLoading.d.ts +8 -0
  555. package/build/features/shared/NafathVerification/VerifyNafathLoading.js +53 -0
  556. package/build/features/shared/NafathVerification/VerifyNafathSuccess.d.ts +5 -0
  557. package/build/features/shared/NafathVerification/VerifyNafathSuccess.js +8 -0
  558. package/build/features/shared/NafathVerification/index.d.ts +2 -0
  559. package/build/features/shared/NafathVerification/index.js +2 -0
  560. package/build/features/shared/SuccessFlowButtons/SuccessFlowButtons.d.ts +6 -1
  561. package/build/features/shared/SuccessFlowButtons/SuccessFlowButtons.js +10 -13
  562. package/build/features/shared/SuccessScreen/SuccessScreen.js +2 -2
  563. package/build/features/shared/UploadFile/FileUpload.d.ts +1 -1
  564. package/build/features/shared/UploadFile/UploadFile.d.ts +1 -1
  565. package/build/features/shared/UploadFile/UploadWrapper.d.ts +1 -1
  566. package/build/features/shared/UploadMultipleFile/UploadFile.d.ts +1 -1
  567. package/build/features/shared/UploadMultipleFile/UploadMultipleFile.d.ts +1 -1
  568. package/build/features/signIn/SignIn.js +18 -7
  569. package/build/features/signIn/screens/Mobile/MobileNumber.js +8 -7
  570. package/build/features/signIn/screens/Mobile/validation.js +11 -3
  571. package/build/features/signIn/screens/OTP/OTP.js +5 -4
  572. package/build/features/signIn/screens/OperatorError/OperatorError.d.ts +5 -0
  573. package/build/features/signIn/screens/OperatorError/OperatorError.js +9 -0
  574. package/build/features/signIn/screens/OperatorError/index.d.ts +3 -0
  575. package/build/features/signIn/screens/OperatorError/index.js +2 -0
  576. package/build/features/tax/Tax.d.ts +5 -1
  577. package/build/features/tax/Tax.js +26 -12
  578. package/build/features/tax/screens/OperatorError/OperatorError.d.ts +5 -0
  579. package/build/features/tax/screens/OperatorError/OperatorError.js +9 -0
  580. package/build/features/tax/screens/OperatorError/index.d.ts +3 -0
  581. package/build/features/tax/screens/OperatorError/index.js +2 -0
  582. package/build/features/tax/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
  583. package/build/features/tax/screens/TaxDetails/TaxDetails.js +9 -3
  584. package/build/features/tax/screens/Verify/Verify.js +8 -7
  585. package/build/hooks/index.d.ts +3 -0
  586. package/build/hooks/index.js +3 -0
  587. package/build/hooks/useAppConfig.d.ts +3 -3
  588. package/build/hooks/useAppConfig.js +10 -8
  589. package/build/hooks/useAppDispatch.d.ts +2 -0
  590. package/build/hooks/useAppTheme.js +4 -3
  591. package/build/hooks/useCountDown.d.ts +10 -0
  592. package/build/hooks/useCountDown.js +17 -0
  593. package/build/hooks/useCountry.d.ts +1 -0
  594. package/build/hooks/useCountry.js +4 -3
  595. package/build/hooks/useFormDirtyCheck.d.ts +10 -0
  596. package/build/hooks/useFormDirtyCheck.js +66 -0
  597. package/build/hooks/useSanitizedTranslation.d.ts +2 -0
  598. package/build/hooks/useSanitizedTranslation.js +15 -0
  599. package/build/hooks/useVerifyToken.d.ts +5 -2
  600. package/build/hooks/useVerifyToken.js +10 -5
  601. package/build/index.css +360 -120
  602. package/build/index.d.ts +4 -2
  603. package/build/index.js +6 -2
  604. package/build/theme/components.js +7 -0
  605. package/build/theme/palette.js +4 -2
  606. package/build/theme/shadows.js +1 -1
  607. package/build/theme/theme.d.ts +1 -1
  608. package/build/theme/theme.js +2 -2
  609. package/build/utils/array.js +2 -2
  610. package/build/utils/common.d.ts +3 -0
  611. package/build/utils/common.js +38 -2
  612. package/build/utils/device.d.ts +2 -0
  613. package/build/utils/device.js +6 -0
  614. package/build/utils/locale.js +2 -1
  615. package/build/utils/object.d.ts +1 -0
  616. package/build/utils/object.js +4 -1
  617. package/build/utils/string.d.ts +7 -2
  618. package/build/utils/string.js +32 -5
  619. package/build/utils/validation.d.ts +5 -0
  620. package/build/utils/validation.js +16 -0
  621. package/package.json +2 -2
  622. package/build/features/business/screens/OTP/OTP.d.ts +0 -8
  623. package/build/features/business/screens/OTP/OTP.js +0 -90
  624. package/build/features/connect/screens/BrandSegment/SegmentLocations.d.ts +0 -8
  625. package/build/features/connect/screens/BrandSegment/SegmentLocations.js +0 -66
  626. package/build/features/connect/screens/BrandSegment/SegmentProfits.d.ts +0 -8
  627. package/build/features/connect/screens/BrandSegment/SegmentProfits.js +0 -66
  628. package/build/features/connect/screens/BrandSegment/SegmentTechs.d.ts +0 -8
  629. package/build/features/connect/screens/BrandSegment/SegmentTechs.js +0 -66
  630. package/build/features/connectExpress/screens/AuthenticationList/MerchantList.js +0 -100
  631. package/build/features/connectExpress/screens/AuthenticationList/TerminalList.js +0 -101
  632. package/build/features/connectExpress/screens/IdentityOTP/index.d.ts +0 -3
  633. package/build/features/connectExpress/screens/IdentityOTP/index.js +0 -2
  634. package/build/features/shared/Button/AbsherButton.d.ts +0 -8
  635. /package/build/features/{connect/screens/NID → auth/screens/DOB}/DOB.d.ts +0 -0
  636. /package/build/features/{connectExpress/screens/IdentityOTP → auth/screens/OTP}/OTP.d.ts +0 -0
  637. /package/build/features/{business → auth}/screens/OTP/OTPInput.d.ts +0 -0
  638. /package/build/features/{business → auth}/screens/OTP/index.d.ts +0 -0
  639. /package/build/features/{business → auth}/screens/OTP/index.js +0 -0
  640. /package/build/features/{business → auth}/screens/OTP/validation.d.ts +0 -0
  641. /package/build/features/{business → auth}/screens/OTP/validation.js +0 -0
  642. /package/build/features/{connectExpress/screens/IdentityOTP/OTPInput.d.ts → board/screens/Verify/Verify.d.ts} +0 -0
  643. /package/build/features/{connectExpress/screens/IdentityOTP → board/screens/Verify}/validation.d.ts +0 -0
  644. /package/build/features/{connectExpress/screens/IdentityOTP → board/screens/Verify}/validation.js +0 -0
@@ -1,9 +1,20 @@
1
1
  {
2
2
  " No Login Credentials available": "البريد الألكتروني غير صحيح",
3
+ " android": "اسم التطبيق على متجر قوقل",
3
4
  "(citizeninfo) dateofbirth does not match nic records": "هل يمكنك التحقق من تاريخ الميلاد الذي تم إدخاله.",
4
5
  "Api key is unauthorized to perform the operation": "يرجى التحقق من مشغل الـ API لأداء هذه الخدمة.",
6
+ "Board Request Not Found": "أنت تواجه بعض الانقطاع في الخدمة. يرجى المحاولة مرة أخرى.",
5
7
  "CR Not Found": "هل يمكنك التحقق من السجل التجاري الذي تم إدخاله.",
8
+ "Choose_any_country": "بحث عن البلد ...",
9
+ "Choose_issued_country": "- اختر -",
10
+ "Choose_nationality": "- اختر -",
11
+ "Choose_place_birth_city": "- اختر -",
12
+ "Choose_place_of_birth_country": "- اختر -",
6
13
  "Freelance License Not Found": "هل يمكنك التحقق من سجل العمل الحر الذي تم إدخاله.",
14
+ "Individual_additional_title": "شيء أخير",
15
+ "Individual_occupation_description": "الرجاء تحديد مهنتك",
16
+ "Individual_success_header_description": "كان ذلك سهلاً!",
17
+ "Individual_success_header_title": "تم تحديث الحساب",
7
18
  "Internal server error": "أنت تواجه بعض الانقطاع في الخدمة. يرجى المحاولة مرة أخرى.",
8
19
  "Invalid National Id or Date of Birth": "يرجى التحقق من المعلومات المدخلة.",
9
20
  "Invalid OTP": " الرجاء إدخال رمز المرور الصالح لمرة واحدة - الـ OTP",
@@ -11,23 +22,39 @@
11
22
  "Invalid Password": "يرجى التحقق من المعلومات المدخلة.",
12
23
  "Invalid lead_id": "أنت تواجه بعض الخلل عند الربط في الخدمة. يرجى التواصل مع فريق الدعم الفني.",
13
24
  "Invalid otp in data_token": " الرجاء إدخال رمز المرور الصالح لمرة واحدة - الـ OTP",
25
+ "KD": "د.ك",
26
+ "Please upload bank statement file": "الرجاء تحميل شهادة الايبان البنكية",
14
27
  "Profile Name Required": "يرجى إدخال اسم تجاري خاص بعملك والمربوط بالعلامة التجارية",
15
28
  "Profile Name already exists": "الاسم التجاري الذي تم ادخاله غير متوفر. يرجى ادخال اسم تجاري آخر.",
16
29
  "Profile Name is invalid": "هل يمكنك التحقق من اسم التجاري الذي تم إدخاله.",
30
+ "SAR": "ر.س",
17
31
  "Signup_email_lable": "البريد الإلكتروني",
18
32
  "absher_button_label": "المتابعة عن طريق أبشر",
19
33
  "acceptance_btn_text": "استقبال المدفوعات",
34
+ "account_already_created": "جاري تحضير حسابك",
20
35
  "account_details": "تفاصيل حسابك",
36
+ "account_not_found": "Account not found",
37
+ "account_not_found_desc": "It looks like you're new here.",
38
+ "account_not_found_desc_sub": "To get started and make the most of Tap, please create an account.",
21
39
  "activities": "أنشطة عملك",
40
+ "activities_list_alert": "الرجاء اختيار نشاط واحد على الاقل",
41
+ "activities_name_hint": "اختر الأنشطة كما برخصة المنشأة, يمكنك اختيار أكثر من نشاط",
22
42
  "activities_selected": "أنشطة مختارة",
23
43
  "actual_income_hint": "الدخل الفعلي",
44
+ "add_details": "أضف المعلومات",
45
+ "add_entity": "الرجاء إضافة اسم الكيان",
46
+ "add_other": "أخرى",
24
47
  "add_other_cr": "اضف سجل تجارى اخر",
25
48
  "add_other_fl": "اضف وثيقة عمل حر آخرى",
26
49
  "agree_on_chargeback_policy": "لقد قرأت ووافقت على ",
27
50
  "agree_on_refund_policy": "لقد قرأت ووافقت على ",
28
51
  "alert_bank_confirm": "يجب عليك الموافقة",
29
- "alert_bank_statement": "الرجاء رفع كشف الحساب",
52
+ "alert_bank_statement": "الرجاء تحميل شهادة الايبان البنكية",
30
53
  "alert_beneficiary_name": "هل يمكنك التحقق من اسم المستفيد الذي تم إدخاله.",
54
+ "alert_choose_business": "يُرجى اختيار الشركة",
55
+ "alert_choose_segment_location": "يُرجى",
56
+ "alert_choose_segment_profit": "يُرجى تحديد الربح",
57
+ "alert_choose_segment_tech": "الرجاء تحديد التقنية",
31
58
  "alert_file_size": "الملف الذي قمت برفعه حجمه كبير",
32
59
  "alert_file_upload": "الرجاء رفع الملف بشكل صحيح",
33
60
  "alert_iban": "هل يمكنك التحقق من رقم الحساب البنكي (الـ IBAN) الذي تم إدخاله.",
@@ -36,28 +63,86 @@
36
63
  "app": "تطبيق",
37
64
  "apple_btn_open_title": "افتح صندوق بريد آبل ميل - Apple Mail",
38
65
  "apple_store_placeholder": "اسم التطبيق عالـ App Store",
39
- "authenticate_kuwait_mobile_description": "Please go to your Kuwait Mobile ID app and accept the authentication request from Tap.",
40
- "authenticate_kuwait_mobile_title": "Authenticate with Kuwait Mobile ID app",
66
+ "approve_with_nafath_app": "المتابعة من خلال نفاذ",
67
+ "approve_with_paci_app": "المتابعة من خلال PACI",
68
+ "ar": "ع",
69
+ "arabic": "اللغة العربية",
70
+ "article_of_association": "PDF, JPG or PNG files up to 5mb.",
71
+ "auth_brand_required": "العلامة التجارية مطلوبة",
72
+ "auth_entity_required": "المؤسسة مطلوب",
73
+ "auth_merchant_required": "التاجر مطلوب",
74
+ "auth_terminal_required": "ال Terminal مطلوبة",
75
+ "authenticate_kuwait_mobile_description": "يرجى فتح تطبيق هويتي من الهاتف المحمول الكويتي الخاص بك وقبول طلب المصادقة من شركة تاب.",
76
+ "authenticate_kuwait_mobile_title": "المصادقة من خلال تطبيق هويتي",
77
+ "authentication_list_description": "من فضلك املأ المعلومات ادناه",
78
+ "back": "عودة",
41
79
  "bank": "رقم حساب البنك",
42
80
  "bank_confirm_information": "أتعهد بأن المعلومات البنكية المدخلة صحيحة وأنها تعود إلي",
43
81
  "bank_flow_completed": "{{bank_name}} {{iban}}",
44
82
  "bank_flow_pending": "أضف البيانات البنكية",
83
+ "bank_flows_description": "فيما يلي التدفقات للمضي قدمًا",
84
+ "bank_flows_title": "ملخص التدفق المصرفي",
85
+ "bank_info_description": "الرجاء إضافة تفاصيل البنك التجاري الخاص بك",
86
+ "bank_info_title": "تفاصيل حسابك المصرفي",
45
87
  "bank_name_required": "اسم البنك مطلوب",
88
+ "bank_success_header_description": "لقد أكملت بنجاح إضافة البيانات المصرفية",
89
+ "bank_success_header_title": "البنك مكتمل",
46
90
  "bank_success_title": "تم تحديث البيانات البنكية الخاصة بك",
47
91
  "beneficiary_name": "اسم المستفيد",
48
- "beneficiary_name_invalid": "هل يمكنك التحقق من اسم المستفيد الذي تم إدخاله. (ملاحظة - يجب ادخال الاسم القانوني المرتبط بالحساب البنكي)",
92
+ "beneficiary_name_invalid": " اسم المستفيد يجب أن يكون باللغة الإنجليزية ومطابق للإسم القانوني المرتبط بالحساب البنكي",
49
93
  "beneficiary_name_placeholder": "اسم المستفيد",
50
94
  "beneficiary_name_required": "اسم المستفيد مطلوب",
51
95
  "birthdate": "تاريخ الميلاد",
96
+ "brand": "الاسم التجاري",
97
+ "brand_activities_description": "الرجاء إضافة تفاصيل أنشطتك",
98
+ "brand_activities_title": "تفاصيل أنشطة علامتك التجارية",
99
+ "brand_details_additional_info": "الرجاء إخبارنا بالمعلومات الإضافية عن عملك",
100
+ "brand_details_description": "الرجاء إخبارنا عن نشاطك التجاري",
101
+ "brand_flow_completed": "{{brand}}",
102
+ "brand_flows_description": "فيما يلي الخطوات للمضي قدمًا",
103
+ "brand_flows_title": "ملخص العلامة التجارية",
104
+ "brand_id_missing": "رقم تعريف العلامة التجارية مفقود",
105
+ "brand_info_description": "الرجاء إضافة تفاصيل علامتك التجارية",
106
+ "brand_info_title": "تفاصيل علامتك التجارية",
52
107
  "brand_name_already_exist": "Profile Name already exists",
53
108
  "brand_name_hint": "الرجاء إدخال اسم تجاري مسجل قانونياً بعملك التجاري. سيظهر الاسم التجاري لعملائك عند عملية الدفع.",
109
+ "brand_segment_description": "تفاصيل شريحة علامتك التجارية",
110
+ "brand_segment_title": "تفاصيل شريحتك",
111
+ "brand_success_header_description": "لقد أكملت بنجاح",
112
+ "brand_success_header_title": "العلامة التجارية مكتملة",
54
113
  "brand_success_title": "تم تحديث معلومات علامتك التجارية",
114
+ "business_activities_description": "يرجى تحديد الأنشطة التجارية الخاصة بك",
115
+ "business_activities_title": "الأنشطة التجارية",
116
+ "business_activity_info_description": "تفاصيل قليلة حول الأنشطة التجارية",
117
+ "business_activity_info_title": "معلومات النشاط التجاري",
118
+ "business_brand_description": "يُرجى مراجعة تفاصيل العلامة التجارية",
119
+ "business_brand_title": "معلومات العلامة التجارية",
55
120
  "business_completed_button": "الانتهاء من إعداد حسابي",
56
- "business_completed_description": "كان ذلك سهلا! أنت الان جاهز لاستقبال المدفوعات. ولكن نرجو منك، إضافة بيانات البنك لبدء تلقي المدفوعات.",
121
+ "business_completed_description": "أنت مستعد تمامًا لقبول المدفوعات. آخر شيء ، إضافة التفاصيل المصرفية الخاصة بك لبدء تلقي العوائد.",
57
122
  "business_completed_title": "تم تفعيل حسابك",
123
+ "business_customer_description": "الأسئلة القليلة الأخيرة حول نشاطك التجاري",
124
+ "business_expiry_date": "تاريخ الانتهاء",
58
125
  "business_flow_completed": "{{business_type}} {{license_number}}",
126
+ "business_flows_description": "فيما يلي التدفقات للمضي قدمًا",
127
+ "business_flows_title": "ملخص الحساب",
128
+ "business_sales_description": "يرجى تحديد المبيعات المتوقعة",
129
+ "business_sales_title": "المبيعات المتوقعة",
59
130
  "business_start_date": "تاريخ بدء العمل",
131
+ "business_success_description": "لقد أكملت بنجاح تحديث معلومات العمل",
132
+ "business_success_title": "اكتمل العمل",
133
+ "call_center": "رقم مركز الاتصال",
134
+ "call_center_label": "مركز الاتصال",
60
135
  "call_center_placeholder": "رقم هاتف خدمة الإتصال",
136
+ "cancel": "إلغاء",
137
+ "capital_paid_hint": "00000",
138
+ "capital_paid_label": "رأس المال المدفوع ({{currency}})",
139
+ "capital_paid_required": "Please Enter paid amount",
140
+ "capital_share_count_hint": "00000",
141
+ "capital_share_count_label": "عدد اسهم رأس المال",
142
+ "capital_share_count_required": "Please Enter share count",
143
+ "capital_share_value_hint": "00000",
144
+ "capital_share_value_label": "قيمة السهم ({{currency}})",
145
+ "capital_share_value_required": "Please Enter share value",
61
146
  "category": "الفئة",
62
147
  "category_name": "اسم الفئة",
63
148
  "channel_of_service": "ما هي قنوات البيع الخاصة بعملك؟ ",
@@ -65,82 +150,155 @@
65
150
  "check_terms_cond": "يرجى الموافقة على الشروط والاحكام",
66
151
  "choose_activities": "اختر من الانشطة",
67
152
  "choose_any_business_date": "اختر تاريخ",
153
+ "choose_any_expiry_date": "اختر تاريخ",
154
+ "choose_any_issuing_date": "اختر تاريخ",
68
155
  "choose_any_license": "اختر الرخصة",
156
+ "choose_any_monthly_income": "رجاءا اختر الدخل الشهرى",
69
157
  "choose_any_occupation": "الرجاء الاختيار - ",
70
158
  "choose_any_source_of_income": "- الرجاء الاختيار -",
71
159
  "choose_atleast_one_activity": "- الرجاء الاختيار -",
72
- "choose_atleast_one_channel": "الرجاء اختيار قناة واحدة على الأقل",
160
+ "choose_atleast_one_channel": "الرجاء اختيار قناة بيع واحدة على الأقل",
73
161
  "choose_brand": "يرجى اختيار اسم تجاري",
162
+ "choose_business": "الرجاء تحديد شركة",
74
163
  "choose_channel": "- الرجاء الاختيار -",
75
164
  "choose_customer_base": "- الرجاء الاختيار -",
76
165
  "choose_employee_location": "- الرجاء الاختيار -",
166
+ "choose_entity_license": "اختر ترخيص المنشأة",
167
+ "choose_entity_type": "- Please select -",
77
168
  "choose_expected_sales": "- الرجاء الاختيار -",
78
169
  "choose_expected_sales_yearly": "- الرجاء الاختيار -",
79
170
  "choose_license": "- الرجاء الاختيار -",
80
171
  "choose_license_cr": "- الرجاء الاختيار -",
172
+ "choose_license_entity": "- الرجاء الاختيار -",
81
173
  "choose_license_fl": "- الرجاء الاختيار -",
82
174
  "citizenship": "مواطن",
83
- "civil_id_placeholder": "28xxxxxxxx53",
175
+ "civil_id_description": "ابدأ فورًا باستخدام هويتك",
176
+ "civil_id_placeholder": "2xxxxxxxxx12",
177
+ "civil_id_title": "البطاقة المدنية",
178
+ "close_and_complete_later": "اغلق الان و اكمل لاحقا",
84
179
  "commercial_reg": "منشأة تجارية",
180
+ "commercial_reg_hint": "للمنشئات الصغيرة و المتوسطة و المنشأت الناشئة و المؤسسات برخصة مزاوة نشاط تجارى",
181
+ "company_individuals": "الأفراد بالشركة",
182
+ "company_individuals_add_or_request_details": "أضف او أطلب المعلومات من الشخص المصرح له بذلك",
183
+ "company_individuals_details": "الأفراد بالشركة ({{count}})",
85
184
  "confirm": "تآكيد",
86
185
  "confirm_close_flow_no": "لا",
87
186
  "confirm_close_flow_title": "هل تريد الغاء العملية ؟",
88
187
  "confirm_close_flow_yes": "نعم",
89
- "connect_completed_description": "لقد نجحت في تسجيل الاسم التجاري مع تاب. تحقق من بريدك الإلكتروني لتفعيل حسابك.",
188
+ "connect_completed_description": "لقد نجحت في تسجيل الاسم التجاري مع تاب. تحقق من بريدك الإلكتروني لتفعيل حسابك.",
189
+ "connect_completed_description_dev": "لقد نجحت بتسجيل نشاطك في تاب. أرسلنا لك رسالة بريد إلكتروني على <strong>{{email}}</strong> .لتفعيل حسابك",
90
190
  "connect_completed_title": "شكراً",
191
+ "connect_express_flows_description": "فيما يلي التدفقات للمضي قدمًا",
192
+ "connect_express_flows_title": "ملخص الحساب",
193
+ "connect_flow_completed_description": "لقد نجحت في تسجيل الاسم التجاري مع تاب. تحقق من بريدك الإلكتروني <strong>{{email}}</strong> لتفعيل حسابك.",
194
+ "connect_success": "حسنًا , كان ذلك سهلاً!",
195
+ "connect_success_description": "لقد اشتركت بنجاح",
91
196
  "continue": "استمرار",
197
+ "country_list_title": "الرجاء تحديد بلدك",
92
198
  "country_of_residence": "بلد الإقامة",
93
199
  "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).",
94
200
  "cr_max_length": "هل يمكنك التحقق من رقم السجل التجاري الذي تم إدخاله. (ملاحظة - يتكون السجل التجاري من {{length}} رقمًا).",
95
201
  "cr_number": "رقم السجل التجارى",
96
- "cr_number_hint": "2065413241",
202
+ "cr_number_hint": "10xxxxxx53",
97
203
  "cr_required": "هل يمكنك إدخال رقم السجل التجاري.",
204
+ "create_account_loading": "جارٍ التحميل ...",
205
+ "create_account_loading_desc": "يرجى التحلي بالصبر حتى الانتهاء من التحميل",
98
206
  "create_new_business": "انشاء حساب جديد",
99
- "desc_drag_and_drop_certificate": "License certificate file. PDF, JPG or PNG files up to 5mb.",
100
- "drag_and_drop": "قم بسحب وإدراج الكشف او",
207
+ "create_new_entity": "Create Entity",
208
+ "creating_account_description": "هذه العملية تحتاج وقت...",
209
+ "creating_account_title": "جارى انشاء الحساب",
210
+ "customer_base_name_hint": "اختر محليًا إذا كنت تبيع فقط في البلد الذي تقيم فيه. اختر إقليميًا إذا كنت تبيع أيضًا لدول مجلس التعاون الخليجي الأخرى. اختر عالمياً إذا كنت تبيع إلى أي دولة خارج دول مجلس التعاون الخليجي.",
211
+ "data_loading_desc": "الرجاء الانتظار أثناء تحضير البيانات",
212
+ "data_loading_title": "تحضير البيانات",
213
+ "day": "اليوم",
214
+ "desc_drag_and_drop_certificate": "PDF, JPG or PNG files up to 4mb. 4 files maximum",
215
+ "desc_drag_and_drop_civilID": "PDF, JPG or PNG files up to 4mb. 4 files maximum",
216
+ "desc_drag_and_drop_signature": "PDF, JPG or PNG files up to 4mb. 4 files maximum",
217
+ "desc_drag_and_drop_tax_document": "PDF, JPG or PNG files up to 4mb. 4 files maximum",
218
+ "description_brand_logo": "JPG or PNG files up to 4mb.",
219
+ "drag_and_drop": "قم بسحب وإدراج الكشف",
101
220
  "edit": "تعديل",
102
221
  "email_activation_description": "شكراً لاختيارك تاب للمدفوعات، لقد تم تفعيل بريدك الإلكتروني بنجاح!",
103
222
  "email_button_label": "تواصل مع البريد الإلكتروني",
104
223
  "email_confirmed": "تم تأكيد البريد الإلكتروني",
105
224
  "email_not_valid": "هل يمكنك التحقق من البريد الإلكتروني الذي تم إدخاله.",
106
225
  "employer_name_invalid": "هل يمكنك التحقق من اسم المنشأه الذي تم إدخاله.",
226
+ "en": "EN",
227
+ "english": "English",
107
228
  "enter_at_least_one": "هل يمكنك إدخال وسائط اجتماعية واحدة على الأقل",
108
229
  "enter_at_least_one_call_center": "Please enter at least one call center number",
109
230
  "enter_at_least_one_mobile_app": "Please enter at least one mobile app store",
110
- "enter_at_least_one_physical_store": "Please enter at least one physical store",
231
+ "enter_at_least_one_physical_store": "Please fill the address of the physical store",
111
232
  "enter_at_least_one_social_media": "Please enter at least one social media",
112
- "enter_at_least_one_website": "Please enter at least one website",
233
+ "enter_at_least_one_website": "عنوان الموقع مطلوب",
113
234
  "enter_bank_name": "اسم البنك",
114
235
  "enter_bank_name_placeholder": "اسم البنك",
115
- "enter_birth_date": "تاريخ الميلاد",
236
+ "enter_birth_date": "تاريخ الميلاد ",
116
237
  "enter_brand_name_english_chars_numbers_space": "هل يمكنك التحقق من الاسم التجاري الذي تم إدخاله. (ملاحظة - يتكون الاسم التجاري من أحرف باللغة الإنجليزية بالإضافة على أرقام ومسافات) ",
117
238
  "enter_brand_name_english_chars_only": "هل يمكنك التحقق من الاسم التجاري الذي تم إدخاله. (ملاحظة - يتكون الاسم التجاري من أحرف باللغة الإنجليزية) ",
118
- "enter_civil_id": "Please enter your civil ID",
239
+ "enter_civil_id": "الرقم المدني",
119
240
  "enter_commercial_register_no": "السجل التجاري",
120
241
  "enter_entity_name_english_chars_numbers_space": "ادخل اسم العمل بشكل صحيح",
242
+ "enter_expiry_date": "تاريخ انتهاء الصلاحية",
121
243
  "enter_freelance_license": "وثيقة العمل الحر",
122
244
  "enter_iban": "يرجى ادخال الحساب البنكي برمز الـ IBAN",
245
+ "enter_iban_placeholder": "KW44#################0",
123
246
  "enter_iqama_id": "رقم الإقامة",
247
+ "enter_legal_name_min_three_chars": "Please Enter at least minimum 3 characters",
124
248
  "enter_license_no": "رقم وثيقة العمل الحر",
249
+ "enter_license_number": "Please enter license number at least 5 chars",
125
250
  "enter_national_id": "رقم الهوية",
126
- "enter_served_monthly": "كم عدد العملاء الذين تتوقع أن يخدمهم عملك على أساس شهري؟",
251
+ "enter_served_monthly": "عدد العملاء شهريا",
127
252
  "enter_strong_password": "الرجاء إدخال كلمة مرور قوية.",
128
253
  "enter_valid_birth_date": "الرجاء ادخال تاريخ ميلاد صحيح",
129
254
  "enter_valid_brand_name": "الرجاء إدخال اسم تجاري صحيح",
130
255
  "enter_valid_customer_no": "-",
256
+ "enter_valid_first_name": "الرجاء كتابة اسمك الأول",
257
+ "enter_valid_last_name": "الرجاء كتابة اسمك الأخير",
258
+ "enter_valid_legal_name": "الرجاء إدخال الاسم القانوني الذي يتكون من 3 محارف على الأقل",
131
259
  "enter_valid_license": "هل يمكنك التحقق من رقم الرخصه الذي تم إدخاله.",
132
260
  "enter_valid_mobile_number": "هل يمكنك التحقق من رقم الجوال الذي تم إدخاله. (ملاحظة - يتكون رقم الجوال من {{length}} رقمًا)",
261
+ "enter_valid_mobile_number_min_max_length": "هل يمكنك التحقق من رقم الجوال الذي تم إدخاله. (ملاحظة - يتكون رقم الجوال من {{minLength}}-{{length}} ارقام)",
133
262
  "enter_valid_password": "يرجى إدخال كلمة مرور لا تقل عن {{length}} حرفًا",
263
+ "entity": "المؤسسة",
264
+ "entity_activities_description": "الرجاء تحديد أنشطة المؤسسة الخاص بك",
265
+ "entity_activities_title": "أنشطة المؤسسة",
266
+ "entity_flow_completed": "{{business_type}} {{license_number}}",
267
+ "entity_flow_pending": "{{business_type}} {{license_number}}",
268
+ "entity_flows_description": "فيما يلي الخطوات للمضي قدمًا",
269
+ "entity_flows_title": "ملخص المؤسسة",
270
+ "entity_id_missing": "رقم تعريف المؤسسة مفقود",
271
+ "entity_info_description": "الرجاء إضافة تفاصيل المؤسسة الخاص بك",
272
+ "entity_info_title": "تفاصيل المؤسسة الخاص بك",
273
+ "entity_last_step_description": "آخر تفاصيل قليلة حول المؤسسة",
134
274
  "entity_legal_name_placeholder": "اسم العمل",
135
275
  "entity_legal_name_title": "الاسم الرسمي للمنشأة",
276
+ "entity_success_header_description": "لقد أكملت بنجاح",
277
+ "entity_success_header_title": "اكتمل المؤسسة",
136
278
  "entity_success_title": "تم تحديث المعلومات بنجاح",
137
- "expected_customers_to_serve": "كم عدد العملاء الذين تتوقع أن يخدمهم عملك شهريآً؟",
279
+ "entity_type": "نوع الكيان",
280
+ "entity_type_required": "Please select at least one entity type",
281
+ "expected_customers_to_serve": "عدد العملاء شهريا",
282
+ "expected_sales_monthly": "البيع المتوقع في الشهر؟ ({{currency}})",
138
283
  "expected_sales_yearly": "ما هي المبيعات المتوقعة لعملك شهريًا؟",
284
+ "expected_served_monthly": "عدد العملاء شهريا",
139
285
  "expiry_date": "تاريخ الإنتهاء",
286
+ "express_account_already_created_close_button": "اغلاق",
287
+ "express_account_already_created_description": "عفوا الحساب منشأ مسبقا",
288
+ "express_account_already_created_details": "تفاصيل إنشاء الحساب",
289
+ "express_account_already_created_summary": "تم إنشاء الحساب بالفعل",
290
+ "express_account_already_created_title": "انشاء حساب",
291
+ "file_already_exist": "عفوا الملف مرفوع مسبقا",
292
+ "file_delete_error": "حدث خطأ ما في حذف الملف. حاول مرة اخرى",
293
+ "file_download_error": "حدث خطأ ما في تحميل الملف. حاول مرة اخرى",
294
+ "file_exceed_max_limit": "عذرا يمكنك رفع فقط: {{length}} ملف\\ملفات",
295
+ "file_exit_max_limit": "عذرا يمكنك رفع فقط: {{length}} ملف\\ملفات",
140
296
  "file_not_supported_alert": "نوع الملف غير مدعوم",
297
+ "file_required": "الملف مطلوب",
141
298
  "file_size_alert": "حجم الملف اكبر من المطلوب",
142
- "file_upload_error": "هناك مشكلة في رفع الملف, يرجى المحاولة لاحقاً.",
143
299
  "file_upload_article_error": "هناك مشكلة في رفع الملف, يرجى المحاولة لاحقاً.",
300
+ "file_upload_at_least_one": "عذرا,مطلوب رفع ملف واحد على الأقل",
301
+ "file_upload_error": "هناك مشكلة في رفع الملف, يرجى المحاولة لاحقاً.",
144
302
  "file_upload_failed": "أنت تواجه بعض التحديات في تحميل الملف. يرجى المحاولة مرة أخرى.",
145
303
  "file_uploading_title": "جاري الرفع.....",
146
304
  "fl_kw_max_length": "May you please verify the entered freelancer registration reference. (Note - the freelancer registration may contains characters and digits).",
@@ -148,13 +306,20 @@
148
306
  "fl_number": "وثيقة العمل الحر",
149
307
  "fl_number_hint": "F31414ESD",
150
308
  "fl_required": "هل يمكنك إدخال مرجع وثيقة العمل الحر.",
309
+ "flow_description": "أنت جاهز لبدء قبول الدفعات. أكمل الأقسام التالية لتفعيل الدفع .",
151
310
  "follow_us": "تابعنا",
152
311
  "freelancer_reg": "وثيقة العمل الحر",
153
312
  "future_work": "عمل المستقبل",
313
+ "gender_female": "أنثى",
314
+ "gender_male": "ذكر",
315
+ "get_started": "ابدء",
154
316
  "gmail_btn_open_title": "افتح صندوق بريد جي ميل - Gmail",
155
317
  "goto_dashboard": "حساب لوحة التحكم",
156
318
  "goto_dashboard_button_label": "اخل حساب لوحة التحكم",
157
- "homemaker_reg": "Home maker",
319
+ "hi": " مرحبا",
320
+ "homemaker_reg": "عمل منزلي",
321
+ "homemaker_reg_hint": "للأفراد مع رخصة عمل منزلى",
322
+ "iban_input_placeholder": "{{countrycode}}44#################0",
158
323
  "id_placeholder": 2345566666,
159
324
  "ide_not_valid_url": "هل يمكنك التحقق من عنوان الموقع الإلكتروني الذي تم إدخاله.",
160
325
  "ide_opt_sent_title": "تم إرسال رمز المرور لمرة واحدة الـ OTP إلى رقم جوال",
@@ -167,56 +332,145 @@
167
332
  "ide_successfully_verified_message": "تم إنشاء حسابك بنجاح!",
168
333
  "ide_terms_and_conditions_description": "",
169
334
  "identity_type": "نوع الهوية",
335
+ "individual": "اضف بيانات المستخدم",
336
+ "individual_additional_description": "الرجاء تأكيد التفاصيل",
170
337
  "individual_flow_completed": "{{individual_name}}",
171
338
  "individual_flow_pending": "{{individual_name}}",
339
+ "individual_flows_title": "ملخص الحساب",
340
+ "individual_gender_title": "النوع",
341
+ "individual_id_missing": "رقم تعريف المستخدم مفقود",
342
+ "individual_info_description": "سررت بلقائك. يرجى التحقق من التفاصيل الخاصة بك:",
343
+ "individual_occupation_title": "المهنة",
344
+ "individual_personal_description": "الرجاء تأكيد التفاصيل",
345
+ "individual_personal_title": "التفاصيل الشخصية",
346
+ "individual_phone_description": "ملء معلومات الهاتف",
347
+ "individual_phone_title": "الهاتف",
172
348
  "individual_success_title": "تم تحديث المعلومات الشخصية الخاصة بك",
349
+ "influencer_name_hint": "حدد هذا الخيار إذا كنت تكسب عائدًا ماليًا (عمولات ، إيرادات تابعة ، رعاية) للإعلان عن المنتجات أو الخدمات على قناة الوسائط الاجتماعية الشخصية الخاصة بك.",
350
+ "internal_server_error": "أنت تواجه بعض الانقطاع في الخدمة. يرجى المحاولة مرة أخرى.",
351
+ "invalid_android_app": "يرجى التحقق من اسم تطبيق اندرويد",
352
+ "invalid_call_center_number": "يرجى التحقق من رقم مركز الاتصال",
173
353
  "invalid_civil_id": "Please enter valid civil ID",
354
+ "invalid_facebook_username": "يرجى التحقق من اسم مستخدم الفيسبوك",
174
355
  "invalid_iban_format": "هل يمكنك التحقق من رقم الحساب البنكي الـ IBAN الذي تم إدخاله.",
356
+ "invalid_instagram_username": "يرجى التحقق من اسم مستخدم الانستغرام",
357
+ "invalid_linkedin_profile_url": "يرجى التحقق من رابط ملفك الشخصي في لنكد ان",
358
+ "invalid_physical_store_location": "يرجى التحقق من موقع عنوان المتجر ",
175
359
  "invalid_token": "يرجى التحلي بالصبر... أنت تواجه بعض التحديات بالربط مع الخدمة",
360
+ "invalid_twitter_username": "يرجى التحقق من اسم مستخدم تويتر",
176
361
  "invalid_url": "هل يمكنك التحقق من عنوان الموقع الإلكتروني الذي تم إدخاله.",
362
+ "ios": "ادخل اسم التطبيق في متجر اب ستور",
363
+ "is_authorized_user_label": "هل أنت المستخدم المصرح له؟",
177
364
  "issue_date": "تاريخ الإصدار",
365
+ "issued_country_label": "بلد الإصدار",
178
366
  "join_our_community": "",
367
+ "kyc_dispute_policy": "سياسة المنازعات",
368
+ "kyc_refund_policy": "سياسة الاسترجاع",
369
+ "kyc_success_button": "حساب لوحة التحكم",
370
+ "kyc_success_title": "تم تحديث حسابك بنجاح",
371
+ "kyc_terms_conditions": "الشروط والأحكام",
372
+ "kyc_terms_description": "يجب على الممثل المعتمد للشركة قراءة الوثائق القانونية والموافقة عليها",
373
+ "kyc_terms_description_single_user": "يجب على الشخص المخول الذي يحمل الهوية {{id_number}} قراءة المستندات القانونية والموافقة عليها",
374
+ "kyc_terms_title": "وثائق قانونية",
375
+ "kyc_token_invalid": "الرجاء مراجعة رابط المرسل اليك",
376
+ "kyc_users_description": "يرجى اختيار رقم هوية الممثل المعتمد للموافقة عليه مع {{provider}}",
179
377
  "language": "English",
180
- "license_name_label": "اسم الرخصة",
378
+ "license_info": "معلومات الترخيص",
379
+ "license_name_hint": "Enter legal name",
380
+ "license_name_label": "الاسم التجاري",
381
+ "license_name_placeholder": "License name",
382
+ "license_number": "رقم الرخصة",
383
+ "license_number_hint": "الرجاء إدخال رقم الرخصة",
181
384
  "license_number_label": "رقم الرخصة",
182
385
  "loading": "تحميل...",
183
386
  "loading_bank_statement": "تحميل.......",
387
+ "login_to_dashboard": "تسجيل الدخول لادارة الحساب",
184
388
  "mail_btn_open_title": "افتح البريد الإلكتروني",
185
389
  "marital_status": "الحالة الزوجية",
186
390
  "masking_symbols": "•••",
391
+ "merchant_first_name_label": "الاسم الأول",
392
+ "merchant_last_name_label": "اسم العائلة",
393
+ "merchant_middle_name_label": "الاسم الأوسط",
394
+ "merchant_third_name_label": "الاسم الثالث",
395
+ "migrating_data_title": "الرجاء الانتظار أثناء تحضير البيانات",
396
+ "migration_email_sent_des": "سنقوم بإعلامك عبر بريدك الإلكتروني {{email}} عندما يصبح جاهزًا للاستخدام.",
397
+ "migration_email_sent_title": "نحن نجهز بياناتك",
398
+ "mobile_app_label": "تطبيقات هاتف",
187
399
  "mobile_button_label": "المتابعة عن طريق رقم الجوال",
400
+ "mobile_number_description": "ابدأ فورًا باستخدام رقم هاتفك المحمول",
401
+ "month": "الشهر",
402
+ "nafath_button_label": "المتابعة عن طريق نفاذ",
403
+ "nafath_verification_description_check": "يرجى الدخول إلى تطبيق نفاذ الخاص بك وإدخال رقم الطلب أعلاه للمصادقة.",
404
+ "nafath_verification_description_error": "حاول مرة اخرى",
405
+ "nafath_verification_description_wait": "يرجى الدخول إلى تطبيق نفاذ الخاص بك وإدخال رقم الطلب أعلاه للمصادقة.",
406
+ "nafath_verification_redirection_message": "سيتم إعادة توجيهك الآن",
407
+ "nafath_verification_title_check": "المصادقة مع تطبيق نفاذ",
408
+ "nafath_verification_title_error": "لا يمكننا تأكيد المصادقة الخاصة بك",
409
+ "nafath_verification_title_wait": "المصادقة مع تطبيق نفاذ",
188
410
  "national_address": "العنوان الوطني ",
411
+ "national_id_description": "ابدأ فورًا باستخدام الهوية",
189
412
  "national_id_placeholder": "0000000000",
413
+ "national_id_title": "الهوية الوطنية",
414
+ "nationality_label": "الجنسية",
190
415
  "next": "التالي",
191
416
  "no": "لا",
417
+ "no_results": "لا نتائج",
192
418
  "notify_strong_password": "رائع لديك كلمة سر قوية!",
193
419
  "notify_user_has_account": "رقم الجوال مسجل في تاب. الرجاء تسجيل الدخول لإنشاء حساب جديد",
194
420
  "occupation_title": "المنصب",
421
+ "one_last_step": "خطوة أخيرة",
422
+ "oops": "Oops",
195
423
  "open_mail_box": "افتح البريد الإلكتروني‎",
424
+ "open_nafath_app": "افتح تطبيق نفاذ",
425
+ "operator_is_invalid": "المشغل غير مصرح له",
196
426
  "opt_nid_sent_title": "الرجاء إدخال رمز المرور لمرة واحدة (OTP) المرسل عبر أبشر إلى رقم الجوال المسجل تحت هويتك الوطنية",
197
427
  "or": "أو",
428
+ "other": "اخرى",
429
+ "otp_authentication": "المصادقة",
430
+ "otp_authentication_description": "تحقق من OTP لتجربة خالية من المتاعب",
431
+ "otp_email_sent_title": "تم إرسال رمز المرور لمرة واحدة (OTP) إلى بريدك الإلكتروني ",
198
432
  "otp_min_length": "الرجاء إدخال كلمة المرور لمرة واحدة (OTP) المكونة من 6 أرقام",
199
433
  "otp_provider": "أبشر",
200
434
  "otp_required": "الرجاء إدخال كلمة المرور لمرة واحدة (OTP) المطلوب",
201
435
  "otp_success_title": "نجح التوثيق",
202
436
  "our_community_description": "",
203
437
  "outlook_btn_open_title": "افتح صندوق بريد آوتلوك - Outlook",
204
- "paci_button_label": "Continue with PACI",
438
+ "paci_button_label": "المتابعة عن طريق الرقم المدني",
439
+ "paci_verification_description_check": "هذه العملية قد تستغرق القليل من الوقت",
440
+ "paci_verification_description_error": "الرجاء المحاولة مجدداً",
441
+ "paci_verification_description_wait": "هذه العملية قد تستغرق القليل من الوقت",
442
+ "paci_verification_failed": "تأكد من الموافقة على الطلب المرسل لجهازك أو قم بارسال طلب جديد",
443
+ "paci_verification_redirection_message": "سوف يتم إعادة توجيهك",
444
+ "paci_verification_title_check": "مازلنا نتوثق من العملية",
445
+ "paci_verification_title_error": "لم نستطع ان نتبين موثوقيتك",
446
+ "paci_verification_title_wait": "الرجاء الانتظار",
447
+ "paci_verify_loading": "إحضار التفاصيل",
448
+ "paci_verify_loading_desc": "الرجاء التحلي بالصبر حتى التحقق من التفاصيل",
205
449
  "paci_waiting_title": "Please wait we are verifying",
206
450
  "password_flow_completed": "إعادة تعيين كلمة المرور",
207
451
  "password_flow_pending": "إعداد كلمة المرور",
208
452
  "password_flow_title": "إعداد كلمة المرور",
453
+ "password_flows_description": "فيما يلي الخطوات للمضي قدمًا",
454
+ "password_flows_title": "ملخص العلامة التجارية",
455
+ "password_info_description": "يرجى تعيين كلمة مرور آمنة لحماية حسابك",
456
+ "password_info_title": "تعيين كلمة المرور الخاصة بك",
209
457
  "password_length": "يجب أن يكون أكثر من 8 أحرف.",
210
458
  "password_lower": "يجب أن يتضمن حرفًا صغيرًا واحدًا على الأقل.",
211
459
  "password_not_match": "كلمة المرور التي أدخلتها غير متطابقة.",
212
460
  "password_required": "يرجى إدخال كلمة المرور المطلوب.",
213
461
  "password_special": "يجب أن يتضمن على الأقل على رمز مميز. (! @ #٪)",
214
- "password_success_title": "تم تعيين كلمة المرور الخاصة بك",
462
+ "password_success_header_description": "لقد قمت بتحديث كلمة المرور الخاصة بك بنجاح",
463
+ "password_success_header_title": "اكتملت البيانات",
464
+ "password_success_title": "تهانينا ، تم تعيين حسابك بنجاح.",
215
465
  "password_upper": "يجب أن يتضمن حرفًا كبيرًا واحدًا على الأقل.",
216
466
  "payouts_btn_text": "استلام الايداعات",
467
+ "pep_name_hint": "\"الشخص المكشوف سياسيًا\" أو \"PEP\" يعني الشخص الطبيعي الذي أو تم تكليفه بوظائف عامة بارزة.",
217
468
  "physical_store": "متجر ثابت (محل)",
469
+ "physical_store_label": "متجر",
218
470
  "physical_store_placeholder": "العنوان الوطني أو رابط الموقع عالـ Google Map",
471
+ "place_birth_city_label": "مكان الميلاد",
219
472
  "place_of_birth": "مكان الميلاد",
473
+ "place_of_birth_country_label": "مكان الميلاد",
220
474
  "play_store_placeholder": "اسم التطبيق عالـ Google Play Store",
221
475
  "please write your first and last name": "هل يمكنك التحقق من الاسم الذي تم إدخاله بالكامل. (ملاحظة - يتكون اسمك الكامل من اسمك الثلاثي في اللغة الإنجليزية)",
222
476
  "please_agree_on_recharge": "الرجاء الموافقة على سياسة نزاع العمليات",
@@ -224,19 +478,51 @@
224
478
  "please_choose_are_you_influncer": "هل أنت شخص مؤثر اجتماعي",
225
479
  "please_choose_base": "- الرجاء الاختيار -",
226
480
  "please_choose_employer_location": "- الرجاء الاختيار -",
481
+ "please_choose_is_authorized": "الرجاء التأكيد إذا كنت أنت المستخدم المصرح له",
227
482
  "please_choose_relative_pep": "هل أنت أو أحد أقاربك شخص مكشوف علنًا (PEP)",
228
- "please_enter_actual_income": "ما هو دخلك الشهري؟",
483
+ "please_enter_actual_income": "ما هو دخلك الشهري ({{currency}}) ؟ ",
229
484
  "please_enter_employer_name": "يرجى إدخال اسم منشأه العمل الخاص بك",
485
+ "please_try_again_after_few_minutes": "يمكنك محاولة تسجيل الدخول مرة أخرى بعد {{minutes}} دقيقة",
486
+ "powered_by": "بواسطة",
487
+ "prepare_data_description": "هذه العملية تأخذ وقتاً....",
488
+ "prepare_data_title": "جاري تحضير بياناتك",
230
489
  "read_agree_terms_and_conditions_message": "لقد قرأت ووافقت على ",
231
490
  "refund_policy_compliance": "الإلتزام بسياسة الاسترداد",
232
- "reset_password_success_description": "تحقق من بريدك الإلكتروني لإعادة تعيين كلمة المرور الخاصة بك.",
491
+ "refund_policy_error": "يجب عليك الموافقة على سياسة الاسترجاع",
492
+ "request_details_by_email": "اطلب إضافة المعلومات بالايميل",
493
+ "reset_password_success_description": "تحقق من بريدك الإلكتروني {{email}} لإعادة تعيين كلمة المرور الخاصة بك.",
494
+ "reset_password_success_description_dev": "تحقق من بريدك الإلكتروني <strong>{{email}}</strong> لإعادة تعيين كلمة المرور الخاصة بك",
495
+ "reset_password_success_header_description": "الرجاء التحقق من البريد الإلكتروني",
496
+ "reset_password_success_header_title": "إعادة تعيين كلمة المرور",
233
497
  "reset_password_success_title": "لقد ارسلنا رسالة بريدية إليك",
498
+ "review_account": "مراجعة الحساب",
499
+ "sales_channel_title": "تفاصيل قنوات المبيعات",
500
+ "sales_channels": "قنوات المبيعات",
501
+ "search_activities_placeholder": "ابحث عن الأنشطة",
234
502
  "search_placeholder": "البحث....",
503
+ "segment_location_title": "الموقع",
504
+ "segment_profit_title": "التقنية",
505
+ "segment_tech_title": "الربح",
506
+ "segment_title": "ماهي طبيعة المؤسسة",
235
507
  "select_brand_label": "الأسماء التجارية",
508
+ "select_business_label": "اختر الشركة",
236
509
  "select_cr_license": "- الرجاء الاختيار -",
237
510
  "select_customer_base": "ما هي مناطق العملاء التي تخدمها؟",
511
+ "select_entity_label": "مؤسسة",
512
+ "select_entity_placeholder": "الرجاء تحديد مؤسسة",
238
513
  "select_expected_customers_serve": "- الرجاء الإختيار - ",
239
514
  "select_expected_sales": "- الرجاء الإختيار - ",
515
+ "select_merchant_label": "التاجر",
516
+ "select_merchant_placeholder": "الرجاء تحديد تاجر",
517
+ "select_terminal_label": "Terminal",
518
+ "select_terminal_placeholder": "الرجاء تحديد محطة طرفية",
519
+ "selected_activities": "الأنشطة المختارة",
520
+ "share_count_hint": "0",
521
+ "share_count_label": "عدد الأسهم",
522
+ "share_value_hint": "0000",
523
+ "share_value_label": "قيمة السهم ({{currency}})",
524
+ "sign_up": "Sign up",
525
+ "signed_up": "تسجيل الدخول",
240
526
  "signin_email_label": "البريد الألكتروني",
241
527
  "signin_email_mobile_label": "البريد الإلكتروني / رقم الجوال",
242
528
  "signin_email_mobile_placeholder": "ادخل الايميل او الجوال",
@@ -265,11 +551,17 @@
265
551
  "signup_website_placeholder": "www.yourbusiness.com",
266
552
  "signup_welcoming": "مرحبًا {{username}} ،",
267
553
  "signup_welcoming_hi": "مرحبا,",
554
+ "social_media_label": "وسائل التواصل الاجتماعي",
555
+ "source_country_label": "الدولة",
268
556
  "start_with_number": "هل يمكنك التحقق من رقم الجوال الذي تم إدخاله. (ملاحظة - يبدأ رقم الجوال بـ 5 أو 05)",
269
557
  "step_required_by_rayah": "هذه الخطوة مطلوبة لبدء التحقق مع خدمة يقين من شركة علم",
270
558
  "subtitle_drop": "او اختار",
559
+ "success_upload_civil_id": "Done",
560
+ "success_upload_signature_file": "Done",
271
561
  "sucess_message_for_non_saudi": "شكرا لاختيارك تاب للمدفوعات الالكترونية. سوف يتم التواصل معكم في أقرب وقت",
562
+ "switch_to_gregorian_calendar": "التبديل إلى التقويم الميلادي",
272
563
  "switch_to_id": "متابعة التسجيل برقم الهوية",
564
+ "switch_to_islamic_calendar": "التبديل إلى التقويم الهجرى",
273
565
  "switch_to_mobile": "متابعة التسجيل برقم الجوال",
274
566
  "tap_js_actual_income": "ما هو دخلك في الشهر؟",
275
567
  "tap_js_are_you_an_influencer": "هل أنت من الأشخاص المؤثرين؟",
@@ -293,12 +585,35 @@
293
585
  "tax_confirm_information": "اتعهد أن المعلومات الضريبية صحيحة",
294
586
  "tax_flow_completed": " رقم الضريبي المميز {{tax_id}}",
295
587
  "tax_flow_pending": "أضف البيانات الضريبية",
588
+ "tax_flows_description": "فيما يلي التدفقات للمضي قدمًا",
589
+ "tax_flows_title": "ملخص الحساب",
590
+ "tax_info_description": "يُرجى إضافة تفاصيلك الضريبية",
591
+ "tax_info_title": "تفاصيلك الضريبية",
592
+ "tax_success_header_description": "لقد أكملت بنجاح تحديث المعلومات الضريبية",
593
+ "tax_success_header_title": "اكتملت الضريبة",
296
594
  "tax_success_title": "تم تحديث المعلومات الضريبية الخاصة بعملك التجاري.",
595
+ "team_size_title": "حجم الفريق",
297
596
  "terms_and_conditions_link_title": "الشروط والاحكام",
298
597
  "the nin format is not valid": "هل يمكنك التحقق من رقم الهوية الذي تم إدخاله.",
299
- "title_bank_statement": "الصفحة الاولى من كشف الحساب",
300
- "title_license_certificate": "License Certificate",
598
+ "title_article": "مذكرة التأسيس",
599
+ "title_bank_statement": "شهادة الايبان البنكية",
600
+ "title_brand_logo": "لوجو العلامة التجارية",
601
+ "title_civil_id": "صورة الهوية الوطنية",
602
+ "title_connect_flow": "استقبل المدفوعات من تاب",
603
+ "title_license_certificate": "السجل التجاري للمنشأة",
604
+ "title_signature_file": "صورة من التوقيع",
605
+ "title_tax_document": "وثيقة الضرائب",
301
606
  "title_upload_file": "ارفع من جهازك",
607
+ "transaction_policy_error": "يجب الموافقة على سياسة تحويل العمليات",
608
+ "try_again": "حاول مرة اخري",
609
+ "try_sign_in": "Try signing in again",
610
+ "type_board_member": "عضو مجلس الإدارة",
611
+ "type_share_holder": "مساهم",
612
+ "type_user": "المستخدم",
613
+ "unified_number_hint": "000000",
614
+ "unified_number_label": "الرقم الموحد",
615
+ "unified_number_required": "Unified Number Required",
616
+ "uploaded_file": "file",
302
617
  "vat_id": "رقم الضريبي المميز",
303
618
  "vat_id_placeholder": "00000000",
304
619
  "verification_brand_name": "الاسم التجاري",
@@ -310,123 +625,11 @@
310
625
  "verification_name": "الاسم",
311
626
  "verification_status": "الحالة",
312
627
  "verification_status_cancelled": "ملغية",
313
- "website": "موقع الكتروني",
628
+ "wallet_id_missing": "رقم تعريف المحفظة مفقود",
629
+ "website": "متجر الكتروني",
630
+ "website_label": "متجر الكتروني",
631
+ "year": "السنة",
314
632
  "yes": "نعم",
315
- "invalid_linkedin_profile_url": "يرجى التحقق من رابط ملفك الشخصي في LinkedIn",
316
- "invalid_facebook_username": "يرجى التحقق من اسم مستخدم الفيسبوك",
317
- "invalid_instagram_username": "يرجى التحقق من اسم مستخدم الانستغرام",
318
- "invalid_twitter_username": "يرجى التحقق من اسم مستخدم تويتر",
319
- "invalid_physical_store_location": "يرجى التحقق من موقع عنوان المتجر ",
320
- "invalid_ios_app": "يرجى التحقق من اسم تطبيق iOS",
321
- "invalid_android_app": "يرجى التحقق من اسم تطبيق Android",
322
- "invalid_call_center_number": "يرجى التحقق من رقم مركز الاتصال",
323
- "activities_name_hint": "activities_name_hint",
324
- "customer_base_name_hint": "customer_base_name_hint",
325
- "title_article": "Article",
326
- "article_of_association": "Article file. PDF, JPG or PNG files up to 5mb.",
327
- "paci_verification_title_wait": "Please wait",
328
- "paci_verification_title_check": "We are still checking",
329
- "paci_verification_title_error": "We cannot confirm your authentication",
330
- "paci_verification_description_wait": "This might take a moment...",
331
- "paci_verification_description_check": "This might take a moment...",
332
- "paci_verification_description_error": "Please try again.",
333
- "paci_verification_redirection_message": "You will be redirected now",
334
- "commercial_reg_hint": "Commercial Registration",
335
- "homemaker_reg_hint": "Home Business",
336
- "file_already_exist": "File is already uploaded",
337
- "file_exceed_max_limit": "You can able to upload maximum {{length}} files",
338
- "unified_number_label": "Unified Number",
339
- "unified_number_hint": "00000",
340
- "business_expiry_date": "Expiry Date",
341
- "capital_paid_label": "Capital Paid ({{currency}})",
342
- "capital_paid_hint": "00000",
343
- "capital_share_count_label": "Capital Share Count",
344
- "capital_share_count_hint": "00000",
345
- "capital_share_value_label": "Capital Share Value ({{currency}})",
346
- "capital_share_value_hint": "00000",
347
- "license_name_placeholder": "Legal name",
348
- "choose_any_issuing_date": "اختر تاريخ",
349
- "choose_any_expiry_date": "اختر تاريخ",
350
- "entity_type": "Entity Type",
351
- "choose_entity_type": "- Please select -",
352
- "entity_type_required": "Please select at least one entity type",
353
- "enter_legal_name_min_three_chars": "Please Enter at least minimum 2 characters",
354
- "capital_paid_required": "Please Enter paid amount",
355
- "capital_share_count_required": "Please Enter share count",
356
- "capital_share_value_required": "Please Enter share value",
357
- "unified_number_required": "Unified Number Required",
358
- "creating_account_title": "Creating your account",
359
- "creating_account_description": "This might take a moment...",
360
- "uploaded_file": "file",
361
- "prepare_data_title": "Preparing your data",
362
- "prepare_data_description": "This might take a moment...",
363
- "oops": "Oops",
364
- "file_upload_at_least_one": "عذرا,مطلوب رفع ملف واحد على الأقل",
365
- "company_individuals": "الأفراد بالشركة",
366
- "company_individuals_add_or_request_details": "أضف او أطلب المعلومات من الشخص المصرح له بذلك",
367
- "add_details": "أضف المعلومات",
368
- "request_details_by_email": "اطلب إضافة المعلومات بالايميل",
369
- "back": "عودة",
370
- "company_individuals_details": "الأفراد بالشركة ({{count}})",
371
- "type_user": "المستخدم",
372
- "type_share_holder": "مساهم",
373
- "type_board_member": "عضو مجلس الإدارة",
374
- "individual_gender_title": "النوع",
375
- "gender_male": "ذكر",
376
- "gender_female": "أنثى",
377
- "source_country_label": "الدولة",
378
- "Choose_issued_country": "- اختر -",
379
- "enter_expiry_date": "تاريخ انتهاء الصلاحية",
380
- "place_of_birth_country_label": "مكان الميلاد",
381
- "Choose_place_of_birth_country": "- اختر -",
382
- "place_birth_city_label": "مكان الميلاد",
383
- "Choose_place_birth_city": "- اختر -",
384
- "nationality_label": "الجنسية",
385
- "Choose_nationality": "- اختر -",
386
- "share_count_label": "عدد الأسهم",
387
- "share_count_hint": "0",
388
- "share_value_label": "قيمة السهم ({{currency}})",
389
- "share_value_hint": "0000",
390
- "brand": "الاسم التجاري",
391
- "try_again": "حاول مرة أخرى",
392
- "file_delete_error": "حدث خطأ ما في حذف الملف. حاول مرة اخرى",
393
- "file_download_error": "حدث خطأ ما في تحميل الملف. حاول مرة اخرى",
394
- "title_brand_logo": "لوجو العلامة التجارية",
395
- "description_brand_logo": "JPG or PNG files up to 4mb.",
396
- "powered_by": "بواسطة",
397
- "add_other": "أخرى",
398
- "choose_entity_license": "اختر ترخيص المنشأة",
399
- "choose_license_entity": "- الرجاء الاختيار -",
400
633
  "your_brand_details": "تفاصيل علامتك التجارية",
401
- "signed_up": "تسجيل الدخول",
402
- "login_to_dashboard": "تسجيل الدخول لادارة الحساب",
403
- "review_account": "مراجعة الحساب",
404
- "license_info": "معلومات الترخيص",
405
- "sales_channels": "قنوات المبيعات",
406
- "website_label": "موقع الويب",
407
- "call_center_label": "مركز الاتصال",
408
- "mobile_app_label": "تطبيقات هاتف",
409
- "physical_store_label": "متجر",
410
- "social_media_label": "وسائل التواصل الاجتماعي",
411
- "selected_activities": "اختر الأنشطة",
412
- "segment_location_title": "الموقع",
413
- "segment_tech_title": "التقنية",
414
- "segment_profit_title": "الربح",
415
- "alert_choose_segment_location": "يُرجى تحديد الموقع",
416
- "alert_choose_segment_profit": "يُرجى تحديد الربح",
417
- "alert_choose_segment_tech": "الرجاء تحديد التقنية",
418
- "switch_to_islamic_calendar": "التبديل إلى التقويم الهجرى",
419
- "switch_to_gregorian_calendar": "التبديل إلى التقويم الميلادي",
420
- "choose_any_monthly_income": "رجاءا اختر الدخل الشهرى",
421
- "auth_brand_required": "العلامة التجارية مطلوبة",
422
- "auth_entity_required": "المؤسسة مطلوب",
423
- "auth_merchant_required": "التاجر مطلوب",
424
- "auth_terminal_required": "ال Terminal مطلوبة",
425
- "select_entity_label": "مؤسسة",
426
- "select_entity_placeholder": "الرجاء تحديد مؤسسة",
427
- "select_merchant_label": "التاجر",
428
- "select_merchant_placeholder": "الرجاء تحديد تاجر",
429
- "select_terminal_label": "Terminal",
430
- "select_terminal_placeholder": "الرجاء تحديد محطة طرفية",
431
- "close_and_complete_later": "اغلق الان و اكمل لاحقا"
634
+ "يرجى التحقق من اسم تطبيق ابل": ""
432
635
  }