@pisell/private-materials 6.6.44 → 6.6.46

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 (333) hide show
  1. package/build/lowcode/assets-daily.json +11 -11
  2. package/build/lowcode/assets-dev.json +2 -2
  3. package/build/lowcode/assets-prod.json +11 -11
  4. package/build/lowcode/meta.js +1 -1
  5. package/build/lowcode/render/default/view.css +1 -1
  6. package/build/lowcode/render/default/view.js +1 -1
  7. package/build/lowcode/view.css +1 -1
  8. package/build/lowcode/view.js +1 -1
  9. package/es/components/appointmentBooking/components/Voucher/index.js +22 -7
  10. package/es/components/booking/addons/index.js +3 -2
  11. package/es/components/booking/addons/model.d.ts +10 -1
  12. package/es/components/booking/components/footer/amount.js +1 -1
  13. package/es/components/booking/components/footer/index.js +7 -0
  14. package/es/components/booking/components/footer/utils.d.ts +1 -1
  15. package/es/components/booking/components/footer/utils.js +7 -5
  16. package/es/components/booking/components/voucher/index.js +6 -0
  17. package/es/components/booking/components/voucher/index.less +4 -1
  18. package/es/components/booking/components/voucherModal/index.less +1 -0
  19. package/es/components/booking/forms/model.d.ts +10 -1
  20. package/es/components/booking/info/model.d.ts +10 -1
  21. package/es/components/booking/info/service/addService/utils.d.ts +1 -1
  22. package/es/components/booking/info2/service/addService/utils.d.ts +1 -1
  23. package/es/components/booking/info2/service/editService/index.js +8 -2
  24. package/es/components/booking/model.d.ts +9 -1
  25. package/es/components/booking/notes/model.d.ts +10 -1
  26. package/es/components/booking/payments/model.d.ts +10 -1
  27. package/es/components/booking/utils.d.ts +2 -2
  28. package/es/components/checkout/components/WalletPassModule/index.js +1 -0
  29. package/es/components/checkout/components/WalletPassModule/utils.d.ts +1 -0
  30. package/es/components/checkout/components/WalletPassModule/utils.js +17 -3
  31. package/es/components/checkout/hooks/useWalletPass.d.ts +1 -1
  32. package/es/components/checkout/hooks/useWalletPass.js +316 -192
  33. package/es/components/pay/toC/PaymentMethods/WalletPass/index.d.ts +5 -0
  34. package/es/components/pay/toC/PaymentMethods/WalletPass/index.js +166 -145
  35. package/es/components/pay/toC/PaymentMethods/WalletPass/serve.d.ts +6 -0
  36. package/es/components/pay/toC/PaymentMethods/WalletPass/utils.js +3 -3
  37. package/es/components/pay/toC/WalletPassBlock/index.js +3 -1
  38. package/es/components/pay/toC/index.js +66 -27
  39. package/es/components/pay/toC/model.d.ts +10 -1
  40. package/es/components/pay/toC/serve.d.ts +18 -0
  41. package/es/components/pay/toC/serve.js +29 -1
  42. package/es/components/pay/toC/utils.d.ts +2 -2
  43. package/es/components/pay/toC/utils.js +4 -0
  44. package/es/components/schedules/model.d.ts +9 -1
  45. package/es/components/ticketBooking/components/addServiceVariant/addService.js +7 -4
  46. package/es/components/ticketBooking/utils/index.d.ts +1 -1
  47. package/lib/components/appointmentBooking/components/Voucher/index.js +10 -2
  48. package/lib/components/booking/addons/index.js +3 -2
  49. package/lib/components/booking/addons/model.d.ts +10 -1
  50. package/lib/components/booking/components/footer/amount.js +1 -1
  51. package/lib/components/booking/components/footer/index.js +9 -0
  52. package/lib/components/booking/components/footer/utils.d.ts +1 -1
  53. package/lib/components/booking/components/footer/utils.js +5 -3
  54. package/lib/components/booking/components/voucher/index.js +6 -0
  55. package/lib/components/booking/components/voucher/index.less +4 -1
  56. package/lib/components/booking/components/voucherModal/index.less +1 -0
  57. package/lib/components/booking/forms/model.d.ts +10 -1
  58. package/lib/components/booking/info/model.d.ts +10 -1
  59. package/lib/components/booking/info/service/addService/utils.d.ts +1 -1
  60. package/lib/components/booking/info2/service/addService/utils.d.ts +1 -1
  61. package/lib/components/booking/info2/service/editService/index.js +24 -18
  62. package/lib/components/booking/model.d.ts +9 -1
  63. package/lib/components/booking/notes/model.d.ts +10 -1
  64. package/lib/components/booking/payments/model.d.ts +10 -1
  65. package/lib/components/booking/utils.d.ts +2 -2
  66. package/lib/components/checkout/components/WalletPassModule/index.js +1 -0
  67. package/lib/components/checkout/components/WalletPassModule/utils.d.ts +1 -0
  68. package/lib/components/checkout/components/WalletPassModule/utils.js +18 -2
  69. package/lib/components/checkout/hooks/useWalletPass.d.ts +1 -1
  70. package/lib/components/checkout/hooks/useWalletPass.js +157 -108
  71. package/lib/components/pay/toC/PaymentMethods/WalletPass/index.d.ts +5 -0
  72. package/lib/components/pay/toC/PaymentMethods/WalletPass/index.js +90 -103
  73. package/lib/components/pay/toC/PaymentMethods/WalletPass/serve.d.ts +6 -0
  74. package/lib/components/pay/toC/PaymentMethods/WalletPass/utils.js +2 -2
  75. package/lib/components/pay/toC/WalletPassBlock/index.js +3 -1
  76. package/lib/components/pay/toC/index.js +52 -11
  77. package/lib/components/pay/toC/model.d.ts +10 -1
  78. package/lib/components/pay/toC/serve.d.ts +18 -0
  79. package/lib/components/pay/toC/serve.js +6 -0
  80. package/lib/components/pay/toC/utils.d.ts +2 -2
  81. package/lib/components/pay/toC/utils.js +4 -0
  82. package/lib/components/schedules/model.d.ts +9 -1
  83. package/lib/components/ticketBooking/components/addServiceVariant/addService.js +11 -7
  84. package/lib/components/ticketBooking/utils/index.d.ts +1 -1
  85. package/package.json +3 -3
  86. package/es/components/appointmentBooking/components/Date/state.d.ts +0 -63
  87. package/es/components/appointmentBooking/locales.d.ts +0 -603
  88. package/es/components/authentication/admin/AuthMethods/locales.d.ts +0 -413
  89. package/es/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/index.d.ts +0 -6
  90. package/es/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/locales.d.ts +0 -138
  91. package/es/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/types.d.ts +0 -43
  92. package/es/components/authentication/admin/ChannelAuthSetting/CollectInfo/index.d.ts +0 -6
  93. package/es/components/authentication/admin/ChannelAuthSetting/CollectInfo/locales.d.ts +0 -118
  94. package/es/components/authentication/admin/ChannelAuthSetting/CollectInfo/types.d.ts +0 -35
  95. package/es/components/authentication/admin/ChannelAuthSetting/OnlineShopAuth/index.d.ts +0 -6
  96. package/es/components/authentication/admin/ChannelAuthSetting/PageSetting/locales.d.ts +0 -43
  97. package/es/components/authentication/admin/ChannelAuthSetting/PageSettingItem/index.d.ts +0 -8
  98. package/es/components/authentication/admin/ChannelAuthSetting/PageSettingItem/locales.d.ts +0 -108
  99. package/es/components/authentication/admin/ChannelAuthSetting/PageSettingItem/types.d.ts +0 -28
  100. package/es/components/authentication/admin/ChannelAuthSetting/SaaSManagermentAuth/index.d.ts +0 -6
  101. package/es/components/authentication/admin/ChannelAuthSetting/locales.d.ts +0 -63
  102. package/es/components/authentication/admin/CustomerAuth/locales.d.ts +0 -108
  103. package/es/components/authentication/admin/CustomerOAuthConfig/locales.d.ts +0 -178
  104. package/es/components/authentication/admin/DeviceAuth/locales.d.ts +0 -93
  105. package/es/components/authentication/admin/OAuthConfig/locales.d.ts +0 -148
  106. package/es/components/authentication/admin/OrgAdminAuth/locales.d.ts +0 -88
  107. package/es/components/authentication/admin/POSOperatorAuth/locales.d.ts +0 -78
  108. package/es/components/authentication/admin/SaaSAdminAuth/locales.d.ts +0 -88
  109. package/es/components/booking/components/actionButtons/index.d.ts +0 -31
  110. package/es/components/booking/components/voucher/utils.d.ts +0 -5
  111. package/es/components/booking/editBookingModal/locales.d.ts +0 -33
  112. package/es/components/booking/editBookingModal/mock.d.ts +0 -991
  113. package/es/components/booking/info2/cartClientCard/locales.d.ts +0 -33
  114. package/es/components/booking/info2/service/addService/mock.d.ts +0 -216
  115. package/es/components/booking/info2/service/editService/DiscountChangeModal/index.d.ts +0 -25
  116. package/es/components/booking/locales.d.ts +0 -1619
  117. package/es/components/checkout/PaymentModal.d.ts +0 -31
  118. package/es/components/checkout/components/AdditionalModule/locales.d.ts +0 -58
  119. package/es/components/checkout/locales.d.ts +0 -853
  120. package/es/components/eftpos/locales.d.ts +0 -163
  121. package/es/components/eftposPay/locales.d.ts +0 -608
  122. package/es/components/eventBooking/locales.d.ts +0 -408
  123. package/es/components/list/locales.d.ts +0 -108
  124. package/es/components/list/utils/getText.d.ts +0 -53
  125. package/es/components/login/locales.d.ts +0 -38
  126. package/es/components/pay/toB/locales.d.ts +0 -88
  127. package/es/components/pay/toC/locales.d.ts +0 -511
  128. package/es/components/pinModal/locales.d.ts +0 -43
  129. package/es/components/pinVerifyModal/locales.d.ts +0 -38
  130. package/es/components/pisellSelectCustomerModal/locales.d.ts +0 -133
  131. package/es/components/productExtension/locales.d.ts +0 -78
  132. package/es/components/productSelect/components/pisellPriceText/index.d.ts +0 -11
  133. package/es/components/productSelect/locales.d.ts +0 -38
  134. package/es/components/ruleSetting/locales.d.ts +0 -78
  135. package/es/components/schedules/locales.d.ts +0 -143
  136. package/es/components/shoppingCart/locales.d.ts +0 -58
  137. package/es/components/stepController/locales.d.ts +0 -43
  138. package/es/components/subTotal/locales.d.ts +0 -68
  139. package/es/components/systemSettings/registry/components/ItemModal.d.ts +0 -4
  140. package/es/components/systemSettings/registry/locales.d.ts +0 -456
  141. package/es/components/systemSettings/registry/types.d.ts +0 -128
  142. package/es/components/taxSelect/locales.d.ts +0 -38
  143. package/es/components/ticketBooking/locales.d.ts +0 -328
  144. package/es/components/ticketBooking/utils/formatTime.d.ts +0 -33
  145. package/es/components/wallet/utils.d.ts +0 -48
  146. package/es/components/walletList/index.d.ts +0 -4
  147. package/es/components/walletList/locales.d.ts +0 -43
  148. package/es/components/walletList/types/index.d.ts +0 -196
  149. package/es/plus/clientCard/index.d.ts +0 -7
  150. package/es/plus/clientCard/locales.d.ts +0 -28
  151. package/es/plus/clientCard/types.d.ts +0 -135
  152. package/es/plus/clinetSearch/locales.d.ts +0 -178
  153. package/es/plus/contactInfo/locales.d.ts +0 -23
  154. package/es/plus/contactInfoModal/locales.d.ts +0 -108
  155. package/es/plus/noteModal/locales.d.ts +0 -53
  156. package/es/plus/productSelect/ProductCard/SkuCard/locales.d.ts +0 -68
  157. package/es/plus/productSelect/ProductCard/SkuCard/status.d.ts +0 -164
  158. package/es/plus/productSelect/components/pisellPriceText/index.d.ts +0 -14
  159. package/es/plus/productSelect/locales.d.ts +0 -38
  160. package/es/plus/saasAttendance/index.d.ts +0 -6
  161. package/es/plus/saasAttendance/locales.d.ts +0 -528
  162. package/es/plus/saasAttendance/settings/BasicInfoTab.d.ts +0 -5
  163. package/es/plus/saasAttendance/settings/ClockInMethodTab.d.ts +0 -8
  164. package/es/plus/saasAttendance/settings/CorrectionPolicyTab.d.ts +0 -8
  165. package/es/plus/saasAttendance/settings/ShiftScheduleTab.d.ts +0 -5
  166. package/es/plus/saasAttendance/settings/components/MapField.d.ts +0 -78
  167. package/es/plus/saasAttendance/settings/components/index.d.ts +0 -3
  168. package/es/plus/saasAttendance/settings/components/membersField/index.d.ts +0 -8
  169. package/es/plus/saasAttendance/settings/components/shiftModal/index.d.ts +0 -18
  170. package/es/plus/saasAttendance/settings/index.d.ts +0 -18
  171. package/es/plus/saasAttendance/settings/serve.d.ts +0 -27
  172. package/es/plus/saasAttendance/settings/types.d.ts +0 -130
  173. package/es/plus/saasCreateOrganization/locales.d.ts +0 -23
  174. package/es/plus/saasLogin/locales.d.ts +0 -83
  175. package/es/plus/saasRegister/locales.d.ts +0 -193
  176. package/es/plus/saasRole/components/PermissionManager/index.d.ts +0 -19
  177. package/es/plus/saasRole/index.d.ts +0 -14
  178. package/es/plus/saasRole/locales.d.ts +0 -319
  179. package/es/plus/saasRole/serve.d.ts +0 -72
  180. package/es/plus/saasRole/types.d.ts +0 -177
  181. package/es/plus/saasRole/utils.d.ts +0 -0
  182. package/es/plus/saasTeamMembers/components/MemberDrawer/ExtensionFormTabContent.d.ts +0 -31
  183. package/es/plus/saasTeamMembers/components/MemberDrawer/index.d.ts +0 -23
  184. package/es/plus/saasTeamMembers/index.d.ts +0 -5
  185. package/es/plus/saasTeamMembers/locales.d.ts +0 -546
  186. package/es/plus/saasTeamMembers/serve.d.ts +0 -95
  187. package/es/plus/saasTeamMembers/type.d.ts +0 -158
  188. package/es/plus/selectHolder/locales.d.ts +0 -38
  189. package/es/plus/walletEditor/components/sortableWalletPassTypes/index.d.ts +0 -39
  190. package/es/plus/walletEditor/locales.d.ts +0 -223
  191. package/es/plus/walletEditor/types.d.ts +0 -54
  192. package/es/plus/walletPassGallery/components/passDetail/index.d.ts +0 -11
  193. package/es/plus/walletPassGallery/components/passList/index.d.ts +0 -13
  194. package/es/plus/walletPassGallery/components/timelineSection/index.d.ts +0 -12
  195. package/es/plus/walletPassGallery/index.d.ts +0 -11
  196. package/es/plus/walletPassGallery/locales.d.ts +0 -473
  197. package/es/plus/walletPassGallery/serve.d.ts +0 -245
  198. package/es/plus/walletPassGallery/utils.d.ts +0 -48
  199. package/es/pro/Login2.0/locales.d.ts +0 -903
  200. package/es/pro/Login2.0/shared/types.d.ts +0 -234
  201. package/es/pro/comprehensiveSearch/components/searchSection/locales.d.ts +0 -23
  202. package/es/pro/comprehensiveSearch/locales.d.ts +0 -23
  203. package/es/pro/numberKeyboard/locales.d.ts +0 -18
  204. package/es/pro/pisellPhoneKeyboard/locales.d.ts +0 -18
  205. package/es/pro/priceKeyboard/components/cashKeyboard/locales.d.ts +0 -63
  206. package/es/pro/priceKeyboard/components/discountKeyboard/locales.d.ts +0 -68
  207. package/es/pro/priceKeyboard/components/paymentKeyboard/locales.d.ts +0 -73
  208. package/es/pro/skuDetailModal/locales.d.ts +0 -78
  209. package/es/pro/skuDetailModal/types.d.ts +0 -352
  210. package/lib/components/appointmentBooking/components/Date/state.d.ts +0 -63
  211. package/lib/components/appointmentBooking/locales.d.ts +0 -603
  212. package/lib/components/authentication/admin/AuthMethods/locales.d.ts +0 -413
  213. package/lib/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/index.d.ts +0 -6
  214. package/lib/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/locales.d.ts +0 -138
  215. package/lib/components/authentication/admin/ChannelAuthSetting/AuthenticationMethods/types.d.ts +0 -43
  216. package/lib/components/authentication/admin/ChannelAuthSetting/CollectInfo/index.d.ts +0 -6
  217. package/lib/components/authentication/admin/ChannelAuthSetting/CollectInfo/locales.d.ts +0 -118
  218. package/lib/components/authentication/admin/ChannelAuthSetting/CollectInfo/types.d.ts +0 -35
  219. package/lib/components/authentication/admin/ChannelAuthSetting/OnlineShopAuth/index.d.ts +0 -6
  220. package/lib/components/authentication/admin/ChannelAuthSetting/PageSetting/locales.d.ts +0 -43
  221. package/lib/components/authentication/admin/ChannelAuthSetting/PageSettingItem/index.d.ts +0 -8
  222. package/lib/components/authentication/admin/ChannelAuthSetting/PageSettingItem/locales.d.ts +0 -108
  223. package/lib/components/authentication/admin/ChannelAuthSetting/PageSettingItem/types.d.ts +0 -28
  224. package/lib/components/authentication/admin/ChannelAuthSetting/SaaSManagermentAuth/index.d.ts +0 -6
  225. package/lib/components/authentication/admin/ChannelAuthSetting/locales.d.ts +0 -63
  226. package/lib/components/authentication/admin/CustomerAuth/locales.d.ts +0 -108
  227. package/lib/components/authentication/admin/CustomerOAuthConfig/locales.d.ts +0 -178
  228. package/lib/components/authentication/admin/DeviceAuth/locales.d.ts +0 -93
  229. package/lib/components/authentication/admin/OAuthConfig/locales.d.ts +0 -148
  230. package/lib/components/authentication/admin/OrgAdminAuth/locales.d.ts +0 -88
  231. package/lib/components/authentication/admin/POSOperatorAuth/locales.d.ts +0 -78
  232. package/lib/components/authentication/admin/SaaSAdminAuth/locales.d.ts +0 -88
  233. package/lib/components/booking/components/actionButtons/index.d.ts +0 -31
  234. package/lib/components/booking/components/voucher/utils.d.ts +0 -5
  235. package/lib/components/booking/editBookingModal/locales.d.ts +0 -33
  236. package/lib/components/booking/editBookingModal/mock.d.ts +0 -991
  237. package/lib/components/booking/info2/cartClientCard/locales.d.ts +0 -33
  238. package/lib/components/booking/info2/service/addService/mock.d.ts +0 -216
  239. package/lib/components/booking/info2/service/editService/DiscountChangeModal/index.d.ts +0 -25
  240. package/lib/components/booking/locales.d.ts +0 -1619
  241. package/lib/components/checkout/PaymentModal.d.ts +0 -31
  242. package/lib/components/checkout/components/AdditionalModule/locales.d.ts +0 -58
  243. package/lib/components/checkout/locales.d.ts +0 -853
  244. package/lib/components/eftpos/locales.d.ts +0 -163
  245. package/lib/components/eftposPay/locales.d.ts +0 -608
  246. package/lib/components/eventBooking/locales.d.ts +0 -408
  247. package/lib/components/list/locales.d.ts +0 -108
  248. package/lib/components/list/utils/getText.d.ts +0 -53
  249. package/lib/components/login/locales.d.ts +0 -38
  250. package/lib/components/pay/toB/locales.d.ts +0 -88
  251. package/lib/components/pay/toC/locales.d.ts +0 -511
  252. package/lib/components/pinModal/locales.d.ts +0 -43
  253. package/lib/components/pinVerifyModal/locales.d.ts +0 -38
  254. package/lib/components/pisellSelectCustomerModal/locales.d.ts +0 -133
  255. package/lib/components/productExtension/locales.d.ts +0 -78
  256. package/lib/components/productSelect/components/pisellPriceText/index.d.ts +0 -11
  257. package/lib/components/productSelect/locales.d.ts +0 -38
  258. package/lib/components/ruleSetting/locales.d.ts +0 -78
  259. package/lib/components/schedules/locales.d.ts +0 -143
  260. package/lib/components/shoppingCart/locales.d.ts +0 -58
  261. package/lib/components/stepController/locales.d.ts +0 -43
  262. package/lib/components/subTotal/locales.d.ts +0 -68
  263. package/lib/components/systemSettings/registry/components/ItemModal.d.ts +0 -4
  264. package/lib/components/systemSettings/registry/locales.d.ts +0 -456
  265. package/lib/components/systemSettings/registry/types.d.ts +0 -128
  266. package/lib/components/taxSelect/locales.d.ts +0 -38
  267. package/lib/components/ticketBooking/locales.d.ts +0 -328
  268. package/lib/components/ticketBooking/utils/formatTime.d.ts +0 -33
  269. package/lib/components/wallet/utils.d.ts +0 -48
  270. package/lib/components/walletList/index.d.ts +0 -4
  271. package/lib/components/walletList/locales.d.ts +0 -43
  272. package/lib/components/walletList/types/index.d.ts +0 -196
  273. package/lib/plus/clientCard/index.d.ts +0 -7
  274. package/lib/plus/clientCard/locales.d.ts +0 -28
  275. package/lib/plus/clientCard/types.d.ts +0 -135
  276. package/lib/plus/clinetSearch/locales.d.ts +0 -178
  277. package/lib/plus/contactInfo/locales.d.ts +0 -23
  278. package/lib/plus/contactInfoModal/locales.d.ts +0 -108
  279. package/lib/plus/noteModal/locales.d.ts +0 -53
  280. package/lib/plus/productSelect/ProductCard/SkuCard/locales.d.ts +0 -68
  281. package/lib/plus/productSelect/ProductCard/SkuCard/status.d.ts +0 -164
  282. package/lib/plus/productSelect/components/pisellPriceText/index.d.ts +0 -14
  283. package/lib/plus/productSelect/locales.d.ts +0 -38
  284. package/lib/plus/saasAttendance/index.d.ts +0 -6
  285. package/lib/plus/saasAttendance/locales.d.ts +0 -528
  286. package/lib/plus/saasAttendance/settings/BasicInfoTab.d.ts +0 -5
  287. package/lib/plus/saasAttendance/settings/ClockInMethodTab.d.ts +0 -8
  288. package/lib/plus/saasAttendance/settings/CorrectionPolicyTab.d.ts +0 -8
  289. package/lib/plus/saasAttendance/settings/ShiftScheduleTab.d.ts +0 -5
  290. package/lib/plus/saasAttendance/settings/components/MapField.d.ts +0 -78
  291. package/lib/plus/saasAttendance/settings/components/index.d.ts +0 -3
  292. package/lib/plus/saasAttendance/settings/components/membersField/index.d.ts +0 -8
  293. package/lib/plus/saasAttendance/settings/components/shiftModal/index.d.ts +0 -18
  294. package/lib/plus/saasAttendance/settings/index.d.ts +0 -18
  295. package/lib/plus/saasAttendance/settings/serve.d.ts +0 -27
  296. package/lib/plus/saasAttendance/settings/types.d.ts +0 -130
  297. package/lib/plus/saasCreateOrganization/locales.d.ts +0 -23
  298. package/lib/plus/saasLogin/locales.d.ts +0 -83
  299. package/lib/plus/saasRegister/locales.d.ts +0 -193
  300. package/lib/plus/saasRole/components/PermissionManager/index.d.ts +0 -19
  301. package/lib/plus/saasRole/index.d.ts +0 -14
  302. package/lib/plus/saasRole/locales.d.ts +0 -319
  303. package/lib/plus/saasRole/serve.d.ts +0 -72
  304. package/lib/plus/saasRole/types.d.ts +0 -177
  305. package/lib/plus/saasRole/utils.d.ts +0 -0
  306. package/lib/plus/saasTeamMembers/components/MemberDrawer/ExtensionFormTabContent.d.ts +0 -31
  307. package/lib/plus/saasTeamMembers/components/MemberDrawer/index.d.ts +0 -23
  308. package/lib/plus/saasTeamMembers/index.d.ts +0 -5
  309. package/lib/plus/saasTeamMembers/locales.d.ts +0 -546
  310. package/lib/plus/saasTeamMembers/serve.d.ts +0 -95
  311. package/lib/plus/saasTeamMembers/type.d.ts +0 -158
  312. package/lib/plus/selectHolder/locales.d.ts +0 -38
  313. package/lib/plus/walletEditor/components/sortableWalletPassTypes/index.d.ts +0 -39
  314. package/lib/plus/walletEditor/locales.d.ts +0 -223
  315. package/lib/plus/walletEditor/types.d.ts +0 -54
  316. package/lib/plus/walletPassGallery/components/passDetail/index.d.ts +0 -11
  317. package/lib/plus/walletPassGallery/components/passList/index.d.ts +0 -13
  318. package/lib/plus/walletPassGallery/components/timelineSection/index.d.ts +0 -12
  319. package/lib/plus/walletPassGallery/index.d.ts +0 -11
  320. package/lib/plus/walletPassGallery/locales.d.ts +0 -473
  321. package/lib/plus/walletPassGallery/serve.d.ts +0 -245
  322. package/lib/plus/walletPassGallery/utils.d.ts +0 -48
  323. package/lib/pro/Login2.0/locales.d.ts +0 -903
  324. package/lib/pro/Login2.0/shared/types.d.ts +0 -234
  325. package/lib/pro/comprehensiveSearch/components/searchSection/locales.d.ts +0 -23
  326. package/lib/pro/comprehensiveSearch/locales.d.ts +0 -23
  327. package/lib/pro/numberKeyboard/locales.d.ts +0 -18
  328. package/lib/pro/pisellPhoneKeyboard/locales.d.ts +0 -18
  329. package/lib/pro/priceKeyboard/components/cashKeyboard/locales.d.ts +0 -63
  330. package/lib/pro/priceKeyboard/components/discountKeyboard/locales.d.ts +0 -68
  331. package/lib/pro/priceKeyboard/components/paymentKeyboard/locales.d.ts +0 -73
  332. package/lib/pro/skuDetailModal/locales.d.ts +0 -78
  333. package/lib/pro/skuDetailModal/types.d.ts +0 -352
@@ -1,608 +0,0 @@
1
- declare const _default: {
2
- en: {
3
- 'page.eftpos-pay.text.loading': (mode: string) => string;
4
- 'page.eftpos-pay.text.wait': (val: string, mode: string) => string;
5
- 'page.eftpos-pay.text.surcharge': string;
6
- 'page.eftpos-pay.text.card': string;
7
- 'page.eftpos-pay.text.account': string;
8
- 'page.eftpos-pay.text.pin': string;
9
- 'page.eftpos-pay.text.receipt': string;
10
- 'page.eftpos-pay.text.receipt.again.title': string;
11
- 'page.eftpos-pay.text.receipt.again.text': string;
12
- 'page.eftpos-pay.text.signature.title': string;
13
- 'page.eftpos-pay.text.signature.text': (mode: string) => "Decline will cause payment failure, need to pay again." | "Decline will cause refund failure; a refund needs to be processed again.";
14
- 'page.eftpos-pay.text.timedout.title': string;
15
- 'page.eftpos-pay.text.timedout.text': (mode: string) => "Please manually mark the payment result based on the payment status displayed on the card reader, to ensure the accuracy of the transaction." | "Please manually verify the refund result based on the refund status displayed on the card reader to ensure the transaction's accuracy.";
16
- 'page.eftpos-pay.text.request.title': (mode: string) => string;
17
- 'page.eftpos-pay.text.request.text': (mode: string) => "Please manually mark the payment result based on the payment status displayed on the card reader, to ensure the accuracy of the transaction." | "Please manually verify the refund result based on the refund status displayed on the card reader to ensure the transaction's accuracy.";
18
- 'page.eftpos-pay.text.request.unknown.title': (mode: string) => string;
19
- 'page.eftpos-pay.text.request.unknown.text': (mode: string) => "Please manually mark the payment result based on the payment status displayed on the card reader, to ensure the accuracy of the transaction." | "Please manually mark the refund result based on the refund status displayed on the card reader, to ensure the accuracy of the transaction.";
20
- 'page.eftpos-pay.text.interrupted': string;
21
- 'page.eftpos-pay.text.reconnect': string;
22
- 'page.eftpos-pay.text.waiting.pay': (mode: string) => "If you have confirmed the payment status from the EFTPOS, you can press Manual marking buttonto skip." | "If you have confirmed the refund status on the EFTPOS, you can press the Manual Marking button to skip.";
23
- 'page.eftpos-pay.text.restored': string;
24
- 'page.eftpos-pay.text.disconnected': string;
25
- 'page.eftpos-pay.text.waiting.network': string;
26
- 'page.eftpos-pay.text.waiting.wifi.title': string;
27
- 'page.eftpos-pay.text.waiting.wifi.connection': string;
28
- 'page.eftpos-pay.text.waiting.wifi.router': string;
29
- 'page.eftpos-pay.text.waiting.wifi.forget.reconnect': string;
30
- 'page.eftpos-pay.text.accept': string;
31
- 'page.eftpos-pay.text.decline': string;
32
- 'page.eftpos-pay.text.manual.marking': string;
33
- 'page.eftpos-pay.text.manual.title': string;
34
- 'page.eftpos-pay.text.manual.subtitle': (money: string) => string;
35
- 'page.eftpos-pay.text.manual.confirm': string;
36
- 'page.eftpos-pay.text.manual.btn.confirm': (money: string) => string;
37
- 'page.eftpos-pay.text.manual.diff': string;
38
- 'page.eftpos-pay.text.manual.tip': string;
39
- 'page.eftpos-pay.text.manual.cancel': string;
40
- 'page.eftpos-pay.text.manual.print_receipt': string;
41
- 'page.eftpos-pay.text.modify.payment.info': (mode: string) => "Modify payment info" | "Modify refund information";
42
- 'page.eftpos-pay.text.successful': (mode: string) => string;
43
- 'page.eftpos-pay.text.failed': (mode: string) => string;
44
- 'page.eftpos-pay.text.confirm': string;
45
- 'page.eftpos-pay.text.confirm.decline': string;
46
- 'page.eftpos-pay.text.back': string;
47
- 'page.eftpos-pay.text.cancel': string;
48
- 'page.eftpos-pay.text.waiting.processing': string;
49
- 'page.eftpos-pay.text.waiting.signature': string;
50
- 'page.eftpos-pay.text.waiting.decline': string;
51
- 'page.eftpos-pay.text.processing': string;
52
- 'page.eftpos-pay.text.transaction.processing': string;
53
- 'page.eftpos-pay.text.retry': string;
54
- 'page.eftpos-pay.text.sure': string;
55
- 'page.eftpos-pay.text.device': string;
56
- 'page.eftpos-pay.text.leave': string;
57
- 'page.eftpos-pay.text.latest.success': string;
58
- 'page.eftpos-pay.text.latest.amount': string;
59
- 'page.eftpos-pay.text.latest.surcharge': string;
60
- 'page.eftpos-pay.text.latest.time': string;
61
- 'page.eftpos-pay.text.latest.confirm': string;
62
- 'page.eftpos-pay.text.amount.to.pay': string;
63
- 'page.eftpos-pay.text.surcharge.percentage': string;
64
- 'page.eftpos-pay.text.surcharge.fixed': string;
65
- 'page.eftpos-pay.text.surcharge.percentage-fixed': string;
66
- 'page.eftpos-pay.text.surcharge.edit.title': string;
67
- 'page.eftpos-pay.text.input.title': (name: string) => string;
68
- 'page.eftpos-pay.text.amount.cash.left.pay.paid': (money: string) => string;
69
- 'page.eftpos-pay.text.surcharge.edit.actual.pay': string;
70
- 'page.eftpos-pay.text.surcharge.edit.inc.surcharge': string;
71
- 'page.eftpos-pay.text.surcharge.edit.rate': string;
72
- 'page.eftpos-pay.text.surcharge.edit.surcharge': string;
73
- 'page.eftpos-pay.text.transaction.end': string;
74
- 'page.eftpos-pay.text.transaction.user.declined.title': string;
75
- 'page.eftpos-pay.text.transaction.user.declined.text': string;
76
- 'page.eftpos-pay.text.transaction.user.config.title': string;
77
- 'page.eftpos-pay.text.transaction.user.config.text': string;
78
- 'page.eftpos-pay.text.transaction.back.declined.title': string;
79
- 'page.eftpos-pay.text.transaction.back.declined.text': string;
80
- 'page.eftpos-pay.text.transaction.fail': string;
81
- 'page.eftpos-pay.text.transaction.fail.timeout': string;
82
- 'page.eftpos-pay.text.transaction.pay.fail.timeout': string;
83
- 'page.eftpos-pay.text.transaction.fail.terminal.title': string;
84
- 'page.eftpos-pay.text.transaction.fail.terminal': string;
85
- 'page.eftpos-pay.text.transaction.fail.cancel.title': string;
86
- 'page.eftpos-pay.text.transaction.fail.cancel': string;
87
- 'page.eftpos-pay.text.transaction.fail.socket': string;
88
- 'page.eftpos-pay.text.transaction.eftpos.fail': string;
89
- 'page.eftpos-pay.text.transaction.eftpos.fail.title': string;
90
- 'page.eftpos-pay.text.transaction.eftpos.fail.power': string;
91
- 'page.eftpos-pay.text.transaction.eftpos.fail.device': string;
92
- 'page.eftpos-pay.text.transaction.eftpos.fail.network': string;
93
- 'page.eftpos-pay.text.transaction.eftpos.fail.if': (mode: string) => "If you have confirmed the payment status of this order, please click on Manual marking." | "If you have confirmed the refund status of this order, please click on Manual Marking.";
94
- 'page.eftpos-pay.text.transaction.eftpos.fail.other': string;
95
- 'page.eftpos-pay.text.application': string;
96
- 'page.eftpos-pay.text.approved': string;
97
- 'page.eftpos-pay.text.device.no.title': string;
98
- 'page.eftpos-pay.text.device.no.add': string;
99
- 'page.eftpos-pay.text.device.no.web': string;
100
- 'page.eftpos-pay.text.device.no.terminal': string;
101
- 'page.eftpos-pay.text.waiting.decline.signature': string;
102
- 'page.eftpos-pay.text.unknown.title': (mode: string) => string;
103
- 'page.eftpos-pay.text.unknown.text': (mode: string) => string;
104
- 'page.eftpos-pay.text.reconnecting': string;
105
- 'page.eftpos-pay.text.reconnect.network': string;
106
- 'page.eftpos-pay.text.network.disconnected': string;
107
- 'page.eftpos-pay.text.not.connected': string;
108
- 'page.eftpos-pay.text.tyro-btn': (key: string) => string;
109
- 'page.eftpos-pay.text.tyro': (key: string) => string;
110
- 'page.eftpos-pay.text.huifu.scan.title': string;
111
- 'page.eftpos-pay.text.huifu.scan.gun.connected': string;
112
- 'page.eftpos-pay.text.huifu.scan.gun.connected-desc': string;
113
- 'page.eftpos-pay.text.huifu.scan.gun.not-connected': string;
114
- 'page.eftpos-pay.text.huifu.scan.gun.not-connected-desc': string;
115
- 'page.eftpos-pay.text.huifu.scan.camera-title': string;
116
- 'page.eftpos-pay.text.huifu.scan.camera-desc': string;
117
- 'page.eftpos-pay.text.huifu.scan.input-title': string;
118
- 'page.eftpos-pay.text.huifu.scan.input-placeholder': string;
119
- 'page.eftpos-pay.text.huifu.scan.input-tip': string;
120
- 'page.eftpos-pay.text.huifu.scan.cancel': string;
121
- 'page.eftpos-pay.text.huifu.scan.confirm': string;
122
- };
123
- 'zh-CN': {
124
- 'page.eftpos-pay.text.loading': (mode: string) => string;
125
- 'page.eftpos-pay.text.wait': (val: string, mode: string) => string;
126
- 'page.eftpos-pay.text.surcharge': string;
127
- 'page.eftpos-pay.text.card': string;
128
- 'page.eftpos-pay.text.account': string;
129
- 'page.eftpos-pay.text.pin': string;
130
- 'page.eftpos-pay.text.receipt': string;
131
- 'page.eftpos-pay.text.receipt.again.title': string;
132
- 'page.eftpos-pay.text.receipt.again.text': string;
133
- 'page.eftpos-pay.text.signature.title': string;
134
- 'page.eftpos-pay.text.signature.text': (mode: string) => "拒绝将导致支付失败,需重新支付。" | "拒绝将导致退款失败;需要重新退款";
135
- 'page.eftpos-pay.text.timedout.title': string;
136
- 'page.eftpos-pay.text.timedout.text': (mode: string) => "请您根据刷卡机上的支付状态,手动标记支付结果,以确保交易的准确性。" | "请根据显示在刷卡机上的退款状态,手动标记退款结果,以确保交易准确性。";
137
- 'page.eftpos-pay.text.request.title': (mode: string) => string;
138
- 'page.eftpos-pay.text.request.text': (mode: string) => "请您根据刷卡机上的支付状态,手动标记支付结果,以确保交易的准确性。" | "请根据显示在刷卡机上的退款状态,手动标记退款结果,以确保交易准确性。";
139
- 'page.eftpos-pay.text.request.unknown.title': (mode: string) => string;
140
- 'page.eftpos-pay.text.request.unknown.text': (mode: string) => "请您根据刷卡机上的支付状态,手动标记支付结果,以确保交易的准确性。" | "请您根据刷卡机上的退款状态,手动标记退款结果,以确保交易的准确性。";
141
- 'page.eftpos-pay.text.interrupted': string;
142
- 'page.eftpos-pay.text.reconnect': string;
143
- 'page.eftpos-pay.text.waiting.pay': (mode: string) => "如果您已经从EFTPOS确认了付款状态,您可以按手动标记按钮跳过。" | "如果您已确认了EFTPOS上的退款状态,您可以按下手动标记按钮跳过。";
144
- 'page.eftpos-pay.text.restored': string;
145
- 'page.eftpos-pay.text.disconnected': string;
146
- 'page.eftpos-pay.text.waiting.network': string;
147
- 'page.eftpos-pay.text.waiting.wifi.title': string;
148
- 'page.eftpos-pay.text.waiting.wifi.connection': string;
149
- 'page.eftpos-pay.text.waiting.wifi.router': string;
150
- 'page.eftpos-pay.text.waiting.wifi.forget.reconnect': string;
151
- 'page.eftpos-pay.text.accept': string;
152
- 'page.eftpos-pay.text.decline': string;
153
- 'page.eftpos-pay.text.manual.marking': string;
154
- 'page.eftpos-pay.text.manual.title': string;
155
- 'page.eftpos-pay.text.manual.subtitle': (money: string) => string;
156
- 'page.eftpos-pay.text.manual.confirm': string;
157
- 'page.eftpos-pay.text.manual.btn.confirm': (money: string) => string;
158
- 'page.eftpos-pay.text.manual.diff': string;
159
- 'page.eftpos-pay.text.manual.tip': string;
160
- 'page.eftpos-pay.text.manual.cancel': string;
161
- 'page.eftpos-pay.text.manual.print_receipt': string;
162
- 'page.eftpos-pay.text.modify.payment.info': (mode: string) => "修改支付信息" | "修改退款信息";
163
- 'page.eftpos-pay.text.successful': (mode: string) => string;
164
- 'page.eftpos-pay.text.failed': (mode: string) => string;
165
- 'page.eftpos-pay.text.confirm': string;
166
- 'page.eftpos-pay.text.confirm.decline': string;
167
- 'page.eftpos-pay.text.back': string;
168
- 'page.eftpos-pay.text.cancel': string;
169
- 'page.eftpos-pay.text.waiting.processing': string;
170
- 'page.eftpos-pay.text.waiting.signature': string;
171
- 'page.eftpos-pay.text.waiting.decline': string;
172
- 'page.eftpos-pay.text.processing': string;
173
- 'page.eftpos-pay.text.transaction.processing': string;
174
- 'page.eftpos-pay.text.retry': string;
175
- 'page.eftpos-pay.text.sure': string;
176
- 'page.eftpos-pay.text.device': string;
177
- 'page.eftpos-pay.text.leave': string;
178
- 'page.eftpos-pay.text.latest.success': string;
179
- 'page.eftpos-pay.text.latest.amount': string;
180
- 'page.eftpos-pay.text.latest.surcharge': string;
181
- 'page.eftpos-pay.text.latest.time': string;
182
- 'page.eftpos-pay.text.latest.confirm': string;
183
- 'page.eftpos-pay.text.amount.to.pay': string;
184
- 'page.eftpos-pay.text.surcharge.percentage': string;
185
- 'page.eftpos-pay.text.surcharge.fixed': string;
186
- 'page.eftpos-pay.text.surcharge.percentage-fixed': string;
187
- 'page.eftpos-pay.text.surcharge.edit.title': string;
188
- 'page.eftpos-pay.text.input.title': (name: string) => string;
189
- 'page.eftpos-pay.text.amount.cash.left.pay.paid': (money: string) => string;
190
- 'page.eftpos-pay.text.surcharge.edit.actual.pay': string;
191
- 'page.eftpos-pay.text.surcharge.edit.inc.surcharge': string;
192
- 'page.eftpos-pay.text.surcharge.edit.rate': string;
193
- 'page.eftpos-pay.text.surcharge.edit.surcharge': string;
194
- 'page.eftpos-pay.text.transaction.end': string;
195
- 'page.eftpos-pay.text.transaction.user.declined.title': string;
196
- 'page.eftpos-pay.text.transaction.user.declined.text': string;
197
- 'page.eftpos-pay.text.transaction.user.config.title': string;
198
- 'page.eftpos-pay.text.transaction.user.config.text': string;
199
- 'page.eftpos-pay.text.transaction.back.declined.title': string;
200
- 'page.eftpos-pay.text.transaction.back.declined.text': string;
201
- 'page.eftpos-pay.text.transaction.fail': string;
202
- 'page.eftpos-pay.text.transaction.fail.timeout': string;
203
- 'page.eftpos-pay.text.transaction.pay.fail.timeout': string;
204
- 'page.eftpos-pay.text.transaction.fail.terminal.title': string;
205
- 'page.eftpos-pay.text.transaction.fail.terminal': string;
206
- 'page.eftpos-pay.text.transaction.fail.cancel.title': string;
207
- 'page.eftpos-pay.text.transaction.fail.cancel': string;
208
- 'page.eftpos-pay.text.transaction.fail.socket': string;
209
- 'page.eftpos-pay.text.transaction.eftpos.fail': string;
210
- 'page.eftpos-pay.text.transaction.eftpos.fail.title': string;
211
- 'page.eftpos-pay.text.transaction.eftpos.fail.power': string;
212
- 'page.eftpos-pay.text.transaction.eftpos.fail.device': string;
213
- 'page.eftpos-pay.text.transaction.eftpos.fail.network': string;
214
- 'page.eftpos-pay.text.transaction.eftpos.fail.if': (mode: string) => "如果您已确认此交易的付款状态,请点击手动标记" | "如果您已确认此订单的退款状态,请点击手动标记。";
215
- 'page.eftpos-pay.text.transaction.eftpos.fail.other': string;
216
- 'page.eftpos-pay.text.application': string;
217
- 'page.eftpos-pay.text.approved': string;
218
- 'page.eftpos-pay.text.device.no.title': string;
219
- 'page.eftpos-pay.text.device.no.add': string;
220
- 'page.eftpos-pay.text.device.no.web': string;
221
- 'page.eftpos-pay.text.device.no.terminal': string;
222
- 'page.eftpos-pay.text.waiting.decline.signature': string;
223
- 'page.eftpos-pay.text.unknown.title': (mode: string) => string;
224
- 'page.eftpos-pay.text.unknown.text': (mode: string) => string;
225
- 'page.eftpos-pay.text.reconnecting': string;
226
- 'page.eftpos-pay.text.reconnect.network': string;
227
- 'page.eftpos-pay.text.network.disconnected': string;
228
- 'page.eftpos-pay.text.not.connected': string;
229
- 'page.eftpos-pay.text.tyro-btn': (key: string) => string;
230
- 'page.eftpos-pay.text.tyro': (key: string) => string | string[];
231
- 'page.eftpos-pay.text.huifu.scan.title': string;
232
- 'page.eftpos-pay.text.huifu.scan.gun.connected': string;
233
- 'page.eftpos-pay.text.huifu.scan.gun.connected-desc': string;
234
- 'page.eftpos-pay.text.huifu.scan.gun.not-connected': string;
235
- 'page.eftpos-pay.text.huifu.scan.gun.not-connected-desc': string;
236
- 'page.eftpos-pay.text.huifu.scan.camera-title': string;
237
- 'page.eftpos-pay.text.huifu.scan.camera-desc': string;
238
- 'page.eftpos-pay.text.huifu.scan.input-title': string;
239
- 'page.eftpos-pay.text.huifu.scan.input-placeholder': string;
240
- 'page.eftpos-pay.text.huifu.scan.input-tip': string;
241
- 'page.eftpos-pay.text.huifu.scan.cancel': string;
242
- 'page.eftpos-pay.text.huifu.scan.confirm': string;
243
- };
244
- 'zh-HK': {
245
- 'page.eftpos-pay.text.loading': (mode: string) => string;
246
- 'page.eftpos-pay.text.wait': (val: string, mode: string) => string;
247
- 'page.eftpos-pay.text.surcharge': string;
248
- 'page.eftpos-pay.text.card': string;
249
- 'page.eftpos-pay.text.account': string;
250
- 'page.eftpos-pay.text.pin': string;
251
- 'page.eftpos-pay.text.receipt': string;
252
- 'page.eftpos-pay.text.receipt.again.title': string;
253
- 'page.eftpos-pay.text.receipt.again.text': string;
254
- 'page.eftpos-pay.text.signature.title': string;
255
- 'page.eftpos-pay.text.signature.text': (mode: string) => "拒絕將導致支付失敗,需重新支付。" | "拒絕將導致退款失敗;需要重新退款";
256
- 'page.eftpos-pay.text.timedout.title': string;
257
- 'page.eftpos-pay.text.timedout.text': (mode: string) => "請您根據刷卡機上的支付狀態,手動標記支付結果,以確保交易的準確性。" | "請根據顯示在刷卡機上的退款狀態,手動標記退款結果,以確保交易準確性。";
258
- 'page.eftpos-pay.text.request.title': (mode: string) => string;
259
- 'page.eftpos-pay.text.request.text': (mode: string) => "請您根據刷卡機上的支付狀態,手動標記支付結果,以確保交易的準確性。" | "請根據顯示在刷卡機上的退款狀態,手動標記退款結果,以確保交易準確性。";
260
- 'page.eftpos-pay.text.request.unknown.title': (mode: string) => string;
261
- 'page.eftpos-pay.text.request.unknown.text': (mode: string) => "請您根據刷卡機上的支付狀態,手動標記支付結果,以確保交易的準確性。" | "請您根據刷卡機上的退款狀態,手動標記退款結果,以確保交易的準確性。";
262
- 'page.eftpos-pay.text.interrupted': string;
263
- 'page.eftpos-pay.text.reconnect': string;
264
- 'page.eftpos-pay.text.waiting.pay': (mode: string) => "如果您已經從EFTPOS確認了付款狀態,您可以按手動標記按鈕跳過。" | "如果您已確認了EFTPOS上的退款狀態,您可以按下手動標記按鈕跳過。";
265
- 'page.eftpos-pay.text.restored': string;
266
- 'page.eftpos-pay.text.disconnected': string;
267
- 'page.eftpos-pay.text.waiting.network': string;
268
- 'page.eftpos-pay.text.waiting.wifi.title': string;
269
- 'page.eftpos-pay.text.waiting.wifi.connection': string;
270
- 'page.eftpos-pay.text.waiting.wifi.router': string;
271
- 'page.eftpos-pay.text.waiting.wifi.forget.reconnect': string;
272
- 'page.eftpos-pay.text.accept': string;
273
- 'page.eftpos-pay.text.decline': string;
274
- 'page.eftpos-pay.text.manual.marking': string;
275
- 'page.eftpos-pay.text.manual.title': string;
276
- 'page.eftpos-pay.text.manual.subtitle': (money: string) => string;
277
- 'page.eftpos-pay.text.manual.confirm': string;
278
- 'page.eftpos-pay.text.manual.btn.confirm': (money: string) => string;
279
- 'page.eftpos-pay.text.manual.diff': string;
280
- 'page.eftpos-pay.text.manual.tip': string;
281
- 'page.eftpos-pay.text.manual.cancel': string;
282
- 'page.eftpos-pay.text.manual.print_receipt': string;
283
- 'page.eftpos-pay.text.modify.payment.info': (mode: string) => "修改支付信息" | "修改退款信息";
284
- 'page.eftpos-pay.text.successful': (mode: string) => string;
285
- 'page.eftpos-pay.text.failed': (mode: string) => string;
286
- 'page.eftpos-pay.text.confirm': string;
287
- 'page.eftpos-pay.text.confirm.decline': string;
288
- 'page.eftpos-pay.text.back': string;
289
- 'page.eftpos-pay.text.cancel': string;
290
- 'page.eftpos-pay.text.waiting.processing': string;
291
- 'page.eftpos-pay.text.waiting.signature': string;
292
- 'page.eftpos-pay.text.waiting.decline': string;
293
- 'page.eftpos-pay.text.processing': string;
294
- 'page.eftpos-pay.text.transaction.processing': string;
295
- 'page.eftpos-pay.text.retry': string;
296
- 'page.eftpos-pay.text.sure': string;
297
- 'page.eftpos-pay.text.device': string;
298
- 'page.eftpos-pay.text.leave': string;
299
- 'page.eftpos-pay.text.latest.success': string;
300
- 'page.eftpos-pay.text.latest.amount': string;
301
- 'page.eftpos-pay.text.latest.surcharge': string;
302
- 'page.eftpos-pay.text.latest.time': string;
303
- 'page.eftpos-pay.text.latest.confirm': string;
304
- 'page.eftpos-pay.text.amount.to.pay': string;
305
- 'page.eftpos-pay.text.surcharge.percentage': string;
306
- 'page.eftpos-pay.text.surcharge.fixed': string;
307
- 'page.eftpos-pay.text.surcharge.percentage-fixed': string;
308
- 'page.eftpos-pay.text.surcharge.edit.title': string;
309
- 'page.eftpos-pay.text.input.title': (name: string) => string;
310
- 'page.eftpos-pay.text.amount.cash.left.pay.paid': (money: string) => string;
311
- 'page.eftpos-pay.text.surcharge.edit.actual.pay': string;
312
- 'page.eftpos-pay.text.surcharge.edit.inc.surcharge': string;
313
- 'page.eftpos-pay.text.surcharge.edit.rate': string;
314
- 'page.eftpos-pay.text.surcharge.edit.surcharge': string;
315
- 'page.eftpos-pay.text.transaction.end': string;
316
- 'page.eftpos-pay.text.transaction.user.declined.title': string;
317
- 'page.eftpos-pay.text.transaction.user.declined.text': string;
318
- 'page.eftpos-pay.text.transaction.user.config.title': string;
319
- 'page.eftpos-pay.text.transaction.user.config.text': string;
320
- 'page.eftpos-pay.text.transaction.back.declined.title': string;
321
- 'page.eftpos-pay.text.transaction.back.declined.text': string;
322
- 'page.eftpos-pay.text.transaction.fail': string;
323
- 'page.eftpos-pay.text.transaction.fail.timeout': string;
324
- 'page.eftpos-pay.text.transaction.pay.fail.timeout': string;
325
- 'page.eftpos-pay.text.transaction.fail.terminal.title': string;
326
- 'page.eftpos-pay.text.transaction.fail.terminal': string;
327
- 'page.eftpos-pay.text.transaction.fail.cancel.title': string;
328
- 'page.eftpos-pay.text.transaction.fail.cancel': string;
329
- 'page.eftpos-pay.text.transaction.fail.socket': string;
330
- 'page.eftpos-pay.text.transaction.eftpos.fail': string;
331
- 'page.eftpos-pay.text.transaction.eftpos.fail.title': string;
332
- 'page.eftpos-pay.text.transaction.eftpos.fail.power': string;
333
- 'page.eftpos-pay.text.transaction.eftpos.fail.device': string;
334
- 'page.eftpos-pay.text.transaction.eftpos.fail.network': string;
335
- 'page.eftpos-pay.text.transaction.eftpos.fail.if': (mode: string) => "如果您已確認此交易的付款狀態,請點擊手動標記" | "如果您已確認此訂單的退款狀態,請點擊手動標記。";
336
- 'page.eftpos-pay.text.transaction.eftpos.fail.other': string;
337
- 'page.eftpos-pay.text.application': string;
338
- 'page.eftpos-pay.text.approved': string;
339
- 'page.eftpos-pay.text.device.no.title': string;
340
- 'page.eftpos-pay.text.device.no.add': string;
341
- 'page.eftpos-pay.text.device.no.web': string;
342
- 'page.eftpos-pay.text.device.no.terminal': string;
343
- 'page.eftpos-pay.text.waiting.decline.signature': string;
344
- 'page.eftpos-pay.text.unknown.title': (mode: string) => string;
345
- 'page.eftpos-pay.text.unknown.text': (mode: string) => string;
346
- 'page.eftpos-pay.text.reconnecting': string;
347
- 'page.eftpos-pay.text.reconnect.network': string;
348
- 'page.eftpos-pay.text.network.disconnected': string;
349
- 'page.eftpos-pay.text.not.connected': string;
350
- 'page.eftpos-pay.text.tyro-btn': (key: string) => string;
351
- 'page.eftpos-pay.text.tyro': (key: string) => string | string[];
352
- 'page.eftpos-pay.text.huifu.scan.title': string;
353
- 'page.eftpos-pay.text.huifu.scan.gun.connected': string;
354
- 'page.eftpos-pay.text.huifu.scan.gun.connected-desc': string;
355
- 'page.eftpos-pay.text.huifu.scan.gun.not-connected': string;
356
- 'page.eftpos-pay.text.huifu.scan.gun.not-connected-desc': string;
357
- 'page.eftpos-pay.text.huifu.scan.camera-title': string;
358
- 'page.eftpos-pay.text.huifu.scan.camera-desc': string;
359
- 'page.eftpos-pay.text.huifu.scan.input-title': string;
360
- 'page.eftpos-pay.text.huifu.scan.input-placeholder': string;
361
- 'page.eftpos-pay.text.huifu.scan.input-tip': string;
362
- 'page.eftpos-pay.text.huifu.scan.cancel': string;
363
- 'page.eftpos-pay.text.huifu.scan.confirm': string;
364
- };
365
- ja: {
366
- 'page.eftpos-pay.text.loading': (mode: string) => string;
367
- 'page.eftpos-pay.text.wait': (val: string, mode: string) => string;
368
- 'page.eftpos-pay.text.surcharge': string;
369
- 'page.eftpos-pay.text.card': string;
370
- 'page.eftpos-pay.text.account': string;
371
- 'page.eftpos-pay.text.pin': string;
372
- 'page.eftpos-pay.text.receipt': string;
373
- 'page.eftpos-pay.text.receipt.again.title': string;
374
- 'page.eftpos-pay.text.receipt.again.text': string;
375
- 'page.eftpos-pay.text.signature.title': string;
376
- 'page.eftpos-pay.text.signature.text': (mode: string) => "拒否すると支払いが失敗し、再度支払う必要があります。" | "拒否すると返金が失敗し、返金を再度処理する必要があります。";
377
- 'page.eftpos-pay.text.timedout.title': string;
378
- 'page.eftpos-pay.text.timedout.text': (mode: string) => "カードリーダーに表示されている支払いステータスに基づいて、手動で支払い結果をマークしてください。取引の正確性を確保するためです。" | "カードリーダーに表示されている返金ステータスに基づいて、手動で返金結果を確認してください。取引の正確性を確保するためです。";
379
- 'page.eftpos-pay.text.request.title': (mode: string) => string;
380
- 'page.eftpos-pay.text.request.text': (mode: string) => "カードリーダーに表示されている支払いステータスに基づいて、手動で支払い結果をマークしてください。取引の正確性を確保するためです。" | "カードリーダーに表示されている返金ステータスに基づいて、手動で返金結果を確認してください。取引の正確性を確保するためです。";
381
- 'page.eftpos-pay.text.request.unknown.title': (mode: string) => string;
382
- 'page.eftpos-pay.text.request.unknown.text': (mode: string) => "カードリーダーに表示されている支払いステータスに基づいて、手動で支払い結果をマークしてください。取引の正確性を確保するためです。" | "カードリーダーに表示されている返金ステータスに基づいて、手動で返金結果をマークしてください。取引の正確性を確保するためです。";
383
- 'page.eftpos-pay.text.interrupted': string;
384
- 'page.eftpos-pay.text.reconnect': string;
385
- 'page.eftpos-pay.text.waiting.pay': (mode: string) => "EFTPOSで支払いステータスを確認した場合は、手動マークボタンを押してスキップできます。" | "EFTPOSで返金ステータスを確認した場合は、手動マークボタンを押してスキップできます。";
386
- 'page.eftpos-pay.text.restored': string;
387
- 'page.eftpos-pay.text.disconnected': string;
388
- 'page.eftpos-pay.text.waiting.network': string;
389
- 'page.eftpos-pay.text.waiting.wifi.title': string;
390
- 'page.eftpos-pay.text.waiting.wifi.connection': string;
391
- 'page.eftpos-pay.text.waiting.wifi.router': string;
392
- 'page.eftpos-pay.text.waiting.wifi.forget.reconnect': string;
393
- 'page.eftpos-pay.text.accept': string;
394
- 'page.eftpos-pay.text.decline': string;
395
- 'page.eftpos-pay.text.manual.marking': string;
396
- 'page.eftpos-pay.text.manual.title': string;
397
- 'page.eftpos-pay.text.manual.subtitle': (money: string) => string;
398
- 'page.eftpos-pay.text.manual.confirm': string;
399
- 'page.eftpos-pay.text.manual.btn.confirm': (money: string) => string;
400
- 'page.eftpos-pay.text.manual.diff': string;
401
- 'page.eftpos-pay.text.manual.tip': string;
402
- 'page.eftpos-pay.text.manual.cancel': string;
403
- 'page.eftpos-pay.text.manual.print_receipt': string;
404
- 'page.eftpos-pay.text.modify.payment.info': (mode: string) => "支払い情報を変更" | "返金情報を変更";
405
- 'page.eftpos-pay.text.successful': (mode: string) => string;
406
- 'page.eftpos-pay.text.failed': (mode: string) => string;
407
- 'page.eftpos-pay.text.confirm': string;
408
- 'page.eftpos-pay.text.confirm.decline': string;
409
- 'page.eftpos-pay.text.back': string;
410
- 'page.eftpos-pay.text.cancel': string;
411
- 'page.eftpos-pay.text.waiting.processing': string;
412
- 'page.eftpos-pay.text.waiting.signature': string;
413
- 'page.eftpos-pay.text.waiting.decline': string;
414
- 'page.eftpos-pay.text.processing': string;
415
- 'page.eftpos-pay.text.transaction.processing': string;
416
- 'page.eftpos-pay.text.retry': string;
417
- 'page.eftpos-pay.text.sure': string;
418
- 'page.eftpos-pay.text.device': string;
419
- 'page.eftpos-pay.text.leave': string;
420
- 'page.eftpos-pay.text.latest.success': string;
421
- 'page.eftpos-pay.text.latest.amount': string;
422
- 'page.eftpos-pay.text.latest.surcharge': string;
423
- 'page.eftpos-pay.text.latest.time': string;
424
- 'page.eftpos-pay.text.latest.confirm': string;
425
- 'page.eftpos-pay.text.amount.to.pay': string;
426
- 'page.eftpos-pay.text.surcharge.percentage': string;
427
- 'page.eftpos-pay.text.surcharge.fixed': string;
428
- 'page.eftpos-pay.text.surcharge.percentage-fixed': string;
429
- 'page.eftpos-pay.text.surcharge.edit.title': string;
430
- 'page.eftpos-pay.text.input.title': (name: string) => string;
431
- 'page.eftpos-pay.text.amount.cash.left.pay.paid': (money: string) => string;
432
- 'page.eftpos-pay.text.surcharge.edit.actual.pay': string;
433
- 'page.eftpos-pay.text.surcharge.edit.inc.surcharge': string;
434
- 'page.eftpos-pay.text.surcharge.edit.rate': string;
435
- 'page.eftpos-pay.text.surcharge.edit.surcharge': string;
436
- 'page.eftpos-pay.text.transaction.end': string;
437
- 'page.eftpos-pay.text.transaction.user.declined.title': string;
438
- 'page.eftpos-pay.text.transaction.user.declined.text': string;
439
- 'page.eftpos-pay.text.transaction.user.config.title': string;
440
- 'page.eftpos-pay.text.transaction.user.config.text': string;
441
- 'page.eftpos-pay.text.transaction.back.declined.title': string;
442
- 'page.eftpos-pay.text.transaction.back.declined.text': string;
443
- 'page.eftpos-pay.text.transaction.fail': string;
444
- 'page.eftpos-pay.text.transaction.fail.timeout': string;
445
- 'page.eftpos-pay.text.transaction.pay.fail.timeout': string;
446
- 'page.eftpos-pay.text.transaction.fail.terminal.title': string;
447
- 'page.eftpos-pay.text.transaction.fail.terminal': string;
448
- 'page.eftpos-pay.text.transaction.fail.cancel.title': string;
449
- 'page.eftpos-pay.text.transaction.fail.cancel': string;
450
- 'page.eftpos-pay.text.transaction.fail.socket': string;
451
- 'page.eftpos-pay.text.transaction.eftpos.fail': string;
452
- 'page.eftpos-pay.text.transaction.eftpos.fail.title': string;
453
- 'page.eftpos-pay.text.transaction.eftpos.fail.power': string;
454
- 'page.eftpos-pay.text.transaction.eftpos.fail.device': string;
455
- 'page.eftpos-pay.text.transaction.eftpos.fail.network': string;
456
- 'page.eftpos-pay.text.transaction.eftpos.fail.if': (mode: string) => "この注文の支払いステータスを確認した場合は、手動マークをクリックしてください。" | "この注文の返金ステータスを確認した場合は、手動マークをクリックしてください。";
457
- 'page.eftpos-pay.text.transaction.eftpos.fail.other': string;
458
- 'page.eftpos-pay.text.application': string;
459
- 'page.eftpos-pay.text.approved': string;
460
- 'page.eftpos-pay.text.device.no.title': string;
461
- 'page.eftpos-pay.text.device.no.add': string;
462
- 'page.eftpos-pay.text.device.no.web': string;
463
- 'page.eftpos-pay.text.device.no.terminal': string;
464
- 'page.eftpos-pay.text.waiting.decline.signature': string;
465
- 'page.eftpos-pay.text.unknown.title': (mode: string) => string;
466
- 'page.eftpos-pay.text.unknown.text': (mode: string) => string;
467
- 'page.eftpos-pay.text.reconnecting': string;
468
- 'page.eftpos-pay.text.reconnect.network': string;
469
- 'page.eftpos-pay.text.network.disconnected': string;
470
- 'page.eftpos-pay.text.not.connected': string;
471
- 'page.eftpos-pay.text.tyro-btn': (key: string) => string;
472
- 'page.eftpos-pay.text.tyro': (key: string) => string;
473
- 'page.eftpos-pay.text.huifu.scan.title': string;
474
- 'page.eftpos-pay.text.huifu.scan.gun.connected': string;
475
- 'page.eftpos-pay.text.huifu.scan.gun.connected-desc': string;
476
- 'page.eftpos-pay.text.huifu.scan.gun.not-connected': string;
477
- 'page.eftpos-pay.text.huifu.scan.gun.not-connected-desc': string;
478
- 'page.eftpos-pay.text.huifu.scan.camera-title': string;
479
- 'page.eftpos-pay.text.huifu.scan.camera-desc': string;
480
- 'page.eftpos-pay.text.huifu.scan.input-title': string;
481
- 'page.eftpos-pay.text.huifu.scan.input-placeholder': string;
482
- 'page.eftpos-pay.text.huifu.scan.input-tip': string;
483
- 'page.eftpos-pay.text.huifu.scan.cancel': string;
484
- 'page.eftpos-pay.text.huifu.scan.confirm': string;
485
- };
486
- pt: {
487
- 'page.eftpos-pay.text.loading': (mode: string) => string;
488
- 'page.eftpos-pay.text.wait': (val: string, mode: string) => string;
489
- 'page.eftpos-pay.text.surcharge': string;
490
- 'page.eftpos-pay.text.card': string;
491
- 'page.eftpos-pay.text.account': string;
492
- 'page.eftpos-pay.text.pin': string;
493
- 'page.eftpos-pay.text.receipt': string;
494
- 'page.eftpos-pay.text.receipt.again.title': string;
495
- 'page.eftpos-pay.text.receipt.again.text': string;
496
- 'page.eftpos-pay.text.signature.title': string;
497
- 'page.eftpos-pay.text.signature.text': (mode: string) => "Recusar causará falha no pagamento, é necessário pagar novamente." | "Recusar causará falha no reembolso; um reembolso precisa ser processado novamente.";
498
- 'page.eftpos-pay.text.timedout.title': string;
499
- 'page.eftpos-pay.text.timedout.text': (mode: string) => "Por favor, marque manualmente o resultado do pagamento com base no status do pagamento exibido no leitor de cartão, para garantir a precisão da transação." | "Por favor, verifique manualmente o resultado do reembolso com base no status do reembolso exibido no leitor de cartão para garantir a precisão da transação.";
500
- 'page.eftpos-pay.text.request.title': (mode: string) => string;
501
- 'page.eftpos-pay.text.request.text': (mode: string) => "Por favor, marque manualmente o resultado do pagamento com base no status do pagamento exibido no leitor de cartão, para garantir a precisão da transação." | "Por favor, verifique manualmente o resultado do reembolso com base no status do reembolso exibido no leitor de cartão para garantir a precisão da transação.";
502
- 'page.eftpos-pay.text.request.unknown.title': (mode: string) => string;
503
- 'page.eftpos-pay.text.request.unknown.text': (mode: string) => "Por favor, marque manualmente o resultado do pagamento com base no status do pagamento exibido no leitor de cartão, para garantir a precisão da transação." | "Por favor, marque manualmente o resultado do reembolso com base no status do reembolso exibido no leitor de cartão, para garantir a precisão da transação.";
504
- 'page.eftpos-pay.text.interrupted': string;
505
- 'page.eftpos-pay.text.reconnect': string;
506
- 'page.eftpos-pay.text.waiting.pay': (mode: string) => "Se você já confirmou o status do pagamento no EFTPOS, pode pressionar o botão Marcação manual para pular." | "Se você já confirmou o status do reembolso no EFTPOS, pode pressionar o botão Marcação Manual para pular.";
507
- 'page.eftpos-pay.text.restored': string;
508
- 'page.eftpos-pay.text.disconnected': string;
509
- 'page.eftpos-pay.text.waiting.network': string;
510
- 'page.eftpos-pay.text.waiting.wifi.title': string;
511
- 'page.eftpos-pay.text.waiting.wifi.connection': string;
512
- 'page.eftpos-pay.text.waiting.wifi.router': string;
513
- 'page.eftpos-pay.text.waiting.wifi.forget.reconnect': string;
514
- 'page.eftpos-pay.text.accept': string;
515
- 'page.eftpos-pay.text.decline': string;
516
- 'page.eftpos-pay.text.manual.marking': string;
517
- 'page.eftpos-pay.text.manual.title': string;
518
- 'page.eftpos-pay.text.manual.subtitle': (money: string) => string;
519
- 'page.eftpos-pay.text.manual.confirm': string;
520
- 'page.eftpos-pay.text.manual.btn.confirm': (money: string) => string;
521
- 'page.eftpos-pay.text.manual.diff': string;
522
- 'page.eftpos-pay.text.manual.tip': string;
523
- 'page.eftpos-pay.text.manual.cancel': string;
524
- 'page.eftpos-pay.text.manual.print_receipt': string;
525
- 'page.eftpos-pay.text.modify.payment.info': (mode: string) => "Modificar informações de pagamento" | "Modificar informações de reembolso";
526
- 'page.eftpos-pay.text.successful': (mode: string) => string;
527
- 'page.eftpos-pay.text.failed': (mode: string) => string;
528
- 'page.eftpos-pay.text.confirm': string;
529
- 'page.eftpos-pay.text.confirm.decline': string;
530
- 'page.eftpos-pay.text.back': string;
531
- 'page.eftpos-pay.text.cancel': string;
532
- 'page.eftpos-pay.text.waiting.processing': string;
533
- 'page.eftpos-pay.text.waiting.signature': string;
534
- 'page.eftpos-pay.text.waiting.decline': string;
535
- 'page.eftpos-pay.text.processing': string;
536
- 'page.eftpos-pay.text.transaction.processing': string;
537
- 'page.eftpos-pay.text.retry': string;
538
- 'page.eftpos-pay.text.sure': string;
539
- 'page.eftpos-pay.text.device': string;
540
- 'page.eftpos-pay.text.leave': string;
541
- 'page.eftpos-pay.text.latest.success': string;
542
- 'page.eftpos-pay.text.latest.amount': string;
543
- 'page.eftpos-pay.text.latest.surcharge': string;
544
- 'page.eftpos-pay.text.latest.time': string;
545
- 'page.eftpos-pay.text.latest.confirm': string;
546
- 'page.eftpos-pay.text.amount.to.pay': string;
547
- 'page.eftpos-pay.text.surcharge.percentage': string;
548
- 'page.eftpos-pay.text.surcharge.fixed': string;
549
- 'page.eftpos-pay.text.surcharge.percentage-fixed': string;
550
- 'page.eftpos-pay.text.surcharge.edit.title': string;
551
- 'page.eftpos-pay.text.input.title': (name: string) => string;
552
- 'page.eftpos-pay.text.amount.cash.left.pay.paid': (money: string) => string;
553
- 'page.eftpos-pay.text.surcharge.edit.actual.pay': string;
554
- 'page.eftpos-pay.text.surcharge.edit.inc.surcharge': string;
555
- 'page.eftpos-pay.text.surcharge.edit.rate': string;
556
- 'page.eftpos-pay.text.surcharge.edit.surcharge': string;
557
- 'page.eftpos-pay.text.transaction.end': string;
558
- 'page.eftpos-pay.text.transaction.user.declined.title': string;
559
- 'page.eftpos-pay.text.transaction.user.declined.text': string;
560
- 'page.eftpos-pay.text.transaction.user.config.title': string;
561
- 'page.eftpos-pay.text.transaction.user.config.text': string;
562
- 'page.eftpos-pay.text.transaction.back.declined.title': string;
563
- 'page.eftpos-pay.text.transaction.back.declined.text': string;
564
- 'page.eftpos-pay.text.transaction.fail': string;
565
- 'page.eftpos-pay.text.transaction.fail.timeout': string;
566
- 'page.eftpos-pay.text.transaction.pay.fail.timeout': string;
567
- 'page.eftpos-pay.text.transaction.fail.terminal.title': string;
568
- 'page.eftpos-pay.text.transaction.fail.terminal': string;
569
- 'page.eftpos-pay.text.transaction.fail.cancel.title': string;
570
- 'page.eftpos-pay.text.transaction.fail.cancel': string;
571
- 'page.eftpos-pay.text.transaction.fail.socket': string;
572
- 'page.eftpos-pay.text.transaction.eftpos.fail': string;
573
- 'page.eftpos-pay.text.transaction.eftpos.fail.title': string;
574
- 'page.eftpos-pay.text.transaction.eftpos.fail.power': string;
575
- 'page.eftpos-pay.text.transaction.eftpos.fail.device': string;
576
- 'page.eftpos-pay.text.transaction.eftpos.fail.network': string;
577
- 'page.eftpos-pay.text.transaction.eftpos.fail.if': (mode: string) => "Se você já confirmou o status do pagamento deste pedido, por favor clique em Marcação manual." | "Se você já confirmou o status do reembolso deste pedido, por favor clique em Marcação Manual.";
578
- 'page.eftpos-pay.text.transaction.eftpos.fail.other': string;
579
- 'page.eftpos-pay.text.application': string;
580
- 'page.eftpos-pay.text.approved': string;
581
- 'page.eftpos-pay.text.device.no.title': string;
582
- 'page.eftpos-pay.text.device.no.add': string;
583
- 'page.eftpos-pay.text.device.no.web': string;
584
- 'page.eftpos-pay.text.device.no.terminal': string;
585
- 'page.eftpos-pay.text.waiting.decline.signature': string;
586
- 'page.eftpos-pay.text.unknown.title': (mode: string) => string;
587
- 'page.eftpos-pay.text.unknown.text': (mode: string) => string;
588
- 'page.eftpos-pay.text.reconnecting': string;
589
- 'page.eftpos-pay.text.reconnect.network': string;
590
- 'page.eftpos-pay.text.network.disconnected': string;
591
- 'page.eftpos-pay.text.not.connected': string;
592
- 'page.eftpos-pay.text.tyro-btn': (key: string) => string;
593
- 'page.eftpos-pay.text.tyro': (key: string) => string;
594
- 'page.eftpos-pay.text.huifu.scan.title': string;
595
- 'page.eftpos-pay.text.huifu.scan.gun.connected': string;
596
- 'page.eftpos-pay.text.huifu.scan.gun.connected-desc': string;
597
- 'page.eftpos-pay.text.huifu.scan.gun.not-connected': string;
598
- 'page.eftpos-pay.text.huifu.scan.gun.not-connected-desc': string;
599
- 'page.eftpos-pay.text.huifu.scan.camera-title': string;
600
- 'page.eftpos-pay.text.huifu.scan.camera-desc': string;
601
- 'page.eftpos-pay.text.huifu.scan.input-title': string;
602
- 'page.eftpos-pay.text.huifu.scan.input-placeholder': string;
603
- 'page.eftpos-pay.text.huifu.scan.input-tip': string;
604
- 'page.eftpos-pay.text.huifu.scan.cancel': string;
605
- 'page.eftpos-pay.text.huifu.scan.confirm': string;
606
- };
607
- };
608
- export default _default;