@etsoo/appscript 1.5.63 → 1.5.65

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 (196) hide show
  1. package/.github/workflows/main.yml +6 -5
  2. package/README.md +97 -71
  3. package/__tests__/app/CoreApp.ts +141 -143
  4. package/__tests__/app/Culture.ts +23 -23
  5. package/__tests__/app/TestApp.ts +107 -105
  6. package/__tests__/business/BusinessUtils.ts +37 -37
  7. package/__tests__/result/ActionResult.ts +14 -14
  8. package/__tests__/tsconfig.json +16 -16
  9. package/babel.config.json +8 -8
  10. package/lib/cjs/address/AddressAutocomplete.d.ts +1 -1
  11. package/lib/cjs/address/AddressPlace.d.ts +3 -3
  12. package/lib/cjs/address/AddressPlaceBase.d.ts +1 -1
  13. package/lib/cjs/address/AddressRegion.d.ts +2 -2
  14. package/lib/cjs/address/AddressRegion.js +12 -12
  15. package/lib/cjs/address/AddressUtils.d.ts +1 -1
  16. package/lib/cjs/api/AuthApi.d.ts +14 -14
  17. package/lib/cjs/api/AuthApi.js +17 -17
  18. package/lib/cjs/api/BaseApi.d.ts +1 -1
  19. package/lib/cjs/api/EntityApi.d.ts +8 -8
  20. package/lib/cjs/api/EntityApi.js +4 -4
  21. package/lib/cjs/api/dto/AuditLineDto.d.ts +24 -0
  22. package/lib/cjs/api/dto/AuditLineDto.js +2 -0
  23. package/lib/cjs/api/dto/IdLabelDto.d.ts +1 -1
  24. package/lib/cjs/api/dto/IdLabelPrimaryDto.d.ts +1 -1
  25. package/lib/cjs/api/dto/PinDto.d.ts +61 -0
  26. package/lib/cjs/api/dto/PinDto.js +2 -0
  27. package/lib/cjs/api/dto/ResultPayload.d.ts +2 -2
  28. package/lib/cjs/api/rq/AuthRequest.d.ts +1 -1
  29. package/lib/cjs/api/rq/LoginRQ.d.ts +2 -2
  30. package/lib/cjs/api/rq/MergeRQ.d.ts +1 -1
  31. package/lib/cjs/api/rq/QueryRQ.d.ts +2 -2
  32. package/lib/cjs/api/rq/StatusQueryRQ.d.ts +3 -3
  33. package/lib/cjs/api/rq/UpdateModel.d.ts +2 -2
  34. package/lib/cjs/api/rq/UpdateStatusRQ.d.ts +2 -2
  35. package/lib/cjs/app/AppSettings.d.ts +3 -3
  36. package/lib/cjs/bridges/FlutterHost.d.ts +2 -2
  37. package/lib/cjs/bridges/FlutterHost.js +11 -11
  38. package/lib/cjs/business/BusinessTax.js +6 -6
  39. package/lib/cjs/business/BusinessUtils.d.ts +2 -2
  40. package/lib/cjs/business/BusinessUtils.js +5 -5
  41. package/lib/cjs/business/Currency.d.ts +1 -1
  42. package/lib/cjs/business/Currency.js +10 -10
  43. package/lib/cjs/business/ProductUnit.d.ts +1 -1
  44. package/lib/cjs/business/ShoppingCart.d.ts +9 -9
  45. package/lib/cjs/business/ShoppingCart.js +11 -11
  46. package/lib/cjs/custom/CustomField.d.ts +1 -1
  47. package/lib/cjs/custom/CustomFieldData.d.ts +2 -2
  48. package/lib/cjs/i18n/Culture.d.ts +31 -0
  49. package/lib/cjs/i18n/Culture.js +51 -0
  50. package/lib/cjs/index.d.ts +3 -4
  51. package/lib/cjs/index.js +3 -4
  52. package/lib/cjs/result/ActionResult.d.ts +1 -1
  53. package/lib/cjs/result/ActionResultError.d.ts +1 -1
  54. package/lib/cjs/result/ActionResultError.js +3 -3
  55. package/lib/cjs/result/InitCallResult.d.ts +1 -1
  56. package/lib/cjs/state/Culture.d.ts +2 -2
  57. package/lib/cjs/state/User.d.ts +1 -1
  58. package/lib/mjs/address/AddressAutocomplete.d.ts +1 -1
  59. package/lib/mjs/address/AddressPlace.d.ts +3 -3
  60. package/lib/mjs/address/AddressPlaceBase.d.ts +1 -1
  61. package/lib/mjs/address/AddressRegion.d.ts +2 -2
  62. package/lib/mjs/address/AddressRegion.js +13 -13
  63. package/lib/mjs/address/AddressUtils.d.ts +1 -1
  64. package/lib/mjs/address/AddressUtils.js +1 -1
  65. package/lib/mjs/api/AuthApi.d.ts +14 -14
  66. package/lib/mjs/api/AuthApi.js +19 -19
  67. package/lib/mjs/api/BaseApi.d.ts +1 -1
  68. package/lib/mjs/api/EntityApi.d.ts +8 -8
  69. package/lib/mjs/api/EntityApi.js +5 -5
  70. package/lib/mjs/api/dto/AuditLineDto.d.ts +24 -0
  71. package/lib/mjs/api/dto/AuditLineDto.js +1 -0
  72. package/lib/mjs/api/dto/IdLabelDto.d.ts +1 -1
  73. package/lib/mjs/api/dto/IdLabelPrimaryDto.d.ts +1 -1
  74. package/lib/mjs/api/dto/PinDto.d.ts +61 -0
  75. package/lib/mjs/api/dto/PinDto.js +1 -0
  76. package/lib/mjs/api/dto/ResultPayload.d.ts +2 -2
  77. package/lib/mjs/api/rq/AuthRequest.d.ts +1 -1
  78. package/lib/mjs/api/rq/LoginRQ.d.ts +2 -2
  79. package/lib/mjs/api/rq/MergeRQ.d.ts +1 -1
  80. package/lib/mjs/api/rq/QueryRQ.d.ts +2 -2
  81. package/lib/mjs/api/rq/StatusQueryRQ.d.ts +3 -3
  82. package/lib/mjs/api/rq/UpdateModel.d.ts +2 -2
  83. package/lib/mjs/api/rq/UpdateStatusRQ.d.ts +2 -2
  84. package/lib/mjs/app/AppSettings.d.ts +3 -3
  85. package/lib/mjs/bridges/FlutterHost.d.ts +2 -2
  86. package/lib/mjs/bridges/FlutterHost.js +13 -13
  87. package/lib/mjs/business/BusinessTax.js +6 -6
  88. package/lib/mjs/business/BusinessUtils.d.ts +2 -2
  89. package/lib/mjs/business/BusinessUtils.js +5 -5
  90. package/lib/mjs/business/Currency.d.ts +1 -1
  91. package/lib/mjs/business/Currency.js +10 -10
  92. package/lib/mjs/business/ProductUnit.d.ts +1 -1
  93. package/lib/mjs/business/ProductUnit.js +1 -1
  94. package/lib/mjs/business/ShoppingCart.d.ts +9 -9
  95. package/lib/mjs/business/ShoppingCart.js +12 -12
  96. package/lib/mjs/custom/CustomField.d.ts +1 -1
  97. package/lib/mjs/custom/CustomFieldData.d.ts +2 -2
  98. package/lib/mjs/i18n/Culture.d.ts +31 -0
  99. package/lib/mjs/i18n/Culture.js +48 -0
  100. package/lib/mjs/index.d.ts +3 -4
  101. package/lib/mjs/index.js +3 -4
  102. package/lib/mjs/result/ActionResult.d.ts +1 -1
  103. package/lib/mjs/result/ActionResult.js +1 -1
  104. package/lib/mjs/result/ActionResultError.d.ts +1 -1
  105. package/lib/mjs/result/ActionResultError.js +3 -3
  106. package/lib/mjs/result/InitCallResult.d.ts +1 -1
  107. package/lib/mjs/state/Culture.d.ts +2 -2
  108. package/lib/mjs/state/User.d.ts +1 -1
  109. package/package.json +1 -1
  110. package/src/address/AddressAutocomplete.ts +16 -16
  111. package/src/address/AddressCity.ts +12 -12
  112. package/src/address/AddressContinent.ts +35 -35
  113. package/src/address/AddressDistrict.ts +12 -12
  114. package/src/address/AddressLocation.ts +8 -8
  115. package/src/address/AddressPlace.ts +23 -23
  116. package/src/address/AddressPlaceBase.ts +31 -31
  117. package/src/address/AddressRegion.ts +286 -286
  118. package/src/address/AddressState.ts +12 -12
  119. package/src/address/AddressUtils.ts +27 -27
  120. package/src/api/AuthApi.ts +194 -194
  121. package/src/api/BaseApi.ts +13 -13
  122. package/src/api/EntityApi.ts +181 -194
  123. package/src/api/dto/AntiforgeryRequestToken.ts +15 -15
  124. package/src/api/dto/ApiRefreshTokenDto.ts +16 -16
  125. package/src/api/dto/AuditLineDto.ts +27 -0
  126. package/src/api/dto/IdLabelDto.ts +3 -3
  127. package/src/api/dto/IdLabelPrimaryDto.ts +7 -7
  128. package/src/api/dto/InitCallDto.ts +12 -12
  129. package/src/api/dto/PinDto.ts +71 -0
  130. package/src/api/dto/ResultPayload.ts +6 -6
  131. package/src/api/rq/ApiRefreshTokenRQ.ts +8 -8
  132. package/src/api/rq/AuthRequest.ts +40 -40
  133. package/src/api/rq/GetLogInUrlRQ.ts +8 -8
  134. package/src/api/rq/LoginIdRQ.ts +12 -12
  135. package/src/api/rq/LoginRQ.ts +18 -18
  136. package/src/api/rq/MergeRQ.ts +13 -13
  137. package/src/api/rq/QueryPagingData.ts +16 -16
  138. package/src/api/rq/QueryRQ.ts +22 -22
  139. package/src/api/rq/RefreshTokenRQ.ts +4 -4
  140. package/src/api/rq/ResetPasswordRQ.ts +20 -20
  141. package/src/api/rq/SignoutRQ.ts +8 -8
  142. package/src/api/rq/StatusQueryRQ.ts +11 -11
  143. package/src/api/rq/SwitchOrgRQ.ts +8 -8
  144. package/src/api/rq/TokenRQ.ts +4 -4
  145. package/src/api/rq/UpdateModel.ts +12 -12
  146. package/src/api/rq/UpdateStatusRQ.ts +10 -10
  147. package/src/app/AppSettings.ts +27 -27
  148. package/src/app/UserRole.ts +44 -44
  149. package/src/bridges/FlutterHost.ts +92 -97
  150. package/src/bridges/IBridgeHost.ts +49 -51
  151. package/src/business/ApiService.ts +25 -25
  152. package/src/business/BusinessTax.ts +63 -63
  153. package/src/business/BusinessUtils.ts +75 -75
  154. package/src/business/CultureItem.ts +43 -43
  155. package/src/business/Currency.ts +11 -11
  156. package/src/business/DataPrivacy.ts +35 -35
  157. package/src/business/EntityStatus.ts +44 -44
  158. package/src/business/ProductUnit.ts +58 -58
  159. package/src/business/RepeatOption.ts +50 -50
  160. package/src/business/ShoppingCart.ts +696 -706
  161. package/src/custom/CustomField.ts +20 -20
  162. package/src/custom/CustomFieldData.ts +43 -43
  163. package/src/def/ListItem.ts +12 -12
  164. package/src/i18n/Culture.ts +60 -0
  165. package/src/i18n/en.json +244 -244
  166. package/src/i18n/zh-Hans.json +244 -244
  167. package/src/i18n/zh-Hant.json +244 -244
  168. package/src/index.ts +3 -4
  169. package/src/result/ActionResult.ts +19 -19
  170. package/src/result/ActionResultError.ts +30 -30
  171. package/src/result/InitCallResult.ts +21 -21
  172. package/src/state/Culture.ts +3 -3
  173. package/src/state/State.ts +5 -5
  174. package/src/state/User.ts +92 -92
  175. package/tsconfig.cjs.json +17 -17
  176. package/tsconfig.json +17 -17
  177. package/lib/cjs/i18n/CultureUtils.d.ts +0 -13
  178. package/lib/cjs/i18n/CultureUtils.js +0 -32
  179. package/lib/cjs/i18n/en.d.ts +0 -6
  180. package/lib/cjs/i18n/en.js +0 -12
  181. package/lib/cjs/i18n/zhHans.d.ts +0 -6
  182. package/lib/cjs/i18n/zhHans.js +0 -12
  183. package/lib/cjs/i18n/zhHant.d.ts +0 -6
  184. package/lib/cjs/i18n/zhHant.js +0 -12
  185. package/lib/mjs/i18n/CultureUtils.d.ts +0 -13
  186. package/lib/mjs/i18n/CultureUtils.js +0 -29
  187. package/lib/mjs/i18n/en.d.ts +0 -6
  188. package/lib/mjs/i18n/en.js +0 -8
  189. package/lib/mjs/i18n/zhHans.d.ts +0 -6
  190. package/lib/mjs/i18n/zhHans.js +0 -8
  191. package/lib/mjs/i18n/zhHant.d.ts +0 -6
  192. package/lib/mjs/i18n/zhHant.js +0 -8
  193. package/src/i18n/CultureUtils.ts +0 -36
  194. package/src/i18n/en.ts +0 -10
  195. package/src/i18n/zhHans.ts +0 -10
  196. package/src/i18n/zhHant.ts +0 -10
package/src/i18n/en.json CHANGED
@@ -1,246 +1,246 @@
1
1
  {
2
- "accountant": "Accountant",
3
- "actions": "Actions",
4
- "add": "Add",
5
- "assignedId": "Assigned ID",
6
- "audits": "Audits",
7
- "authFailed": "Authentication failed",
8
- "author": "Author",
9
- "authorizer": "Authorizer",
10
- "applicant": "Applicant",
11
- "approve": "Approve it",
12
- "back": "Back",
13
- "cancel": "Cancel",
14
- "changePassword": "Change password",
15
- "changeReload": "{0} has just changed data, do you want to reload? Reloading will cause the current modification to be lost!",
16
- "clickForDetails": "Click for details",
17
- "city": "City",
18
- "clear": "Clear",
19
- "clearInput": "Clear input",
20
- "close": "Close",
21
- "confirm": "Confirm",
22
- "confirmAction": "Are you sure you want to {0}?",
23
- "completeTip": "{0} completed",
24
- "continentAF": "Africa",
25
- "continentAN": "Antarctica",
26
- "continentAS": "Asia",
27
- "continentEU": "Europe",
28
- "continentNA": "North America",
29
- "continentOC": "Oceania",
30
- "continentSA": "South America",
31
- "copy": "Copy",
32
- "creation": "Creation",
33
- "culture": "Culture",
34
- "currentPassword": "Current password",
35
- "currentPasswordRequired": "Please enter your current password",
36
- "currency": "Currency",
37
- "currencyAUD": "Australia Dollar",
38
- "currencyCAD": "Canada Dollar",
39
- "currencyCNY": "Renminbi(RMB)",
40
- "currencyEUR": "Euro",
41
- "currencyGBP": "British Pound",
42
- "currencyHKD": "Hong Kong Dollar",
43
- "currencyJPY": "Japan Yen",
44
- "currencyNZD": "New Zealand Dollar",
45
- "currencySGD": "Singapore Dollar",
46
- "currencyUSD": "U.S. Dollar",
47
- "customize": "Customize",
48
- "customName": "Custom name",
49
- "data": "Data",
50
- "dataComparison": "Data comparison",
51
- "dataPrivacy": "Data privacy",
52
- "dataPrivacyAdmin": "Admins",
53
- "dataPrivacyChannel": "Channels",
54
- "dataPrivacyCustomer": "Customers",
55
- "dataPrivacyDept": "Dept users",
56
- "dataPrivacyInternal": "All users",
57
- "dataPrivacyPrivate": "Creator only",
58
- "dataPrivacyPublic": "Full public",
59
- "defaultCulture": "Default culture",
60
- "defaultCurrency": "Default currency",
61
- "defaultItem": "Default",
62
- "delete": "Delete",
63
- "deleteConfirm": "Are you sure you want to permanently delete this {0}?",
64
- "description": "Description",
65
- "district": "District/County",
66
- "done": "Done",
67
- "download": "Download",
68
- "dragIndicator": "Drag indicator",
69
- "edit": "Edit",
70
- "email": "Email",
71
- "emailAddresses": "Email addresses",
72
- "enabled": "Enabled",
73
- "entityStatus": "Status",
74
- "environmentChanged": "The operating environment has changed, please log in again",
75
- "error": "Error",
76
- "etsoo": "ETSOO",
77
- "expiry": "Expiry",
78
- "exportToPdf": "Export to PDF",
79
- "failed": "Operation failed",
80
- "familyName": "Family name",
81
- "field": "Field",
82
- "fileDownloaded": "The file has been downloaded",
83
- "givenName": "Given name",
84
- "help": "Help",
85
- "hideIt": "Hide it",
86
- "id": "Number#",
87
- "info": "Info",
88
- "item": "Item",
89
- "itemExists": "'{0}' already exists",
90
- "jsonData": "Extended data",
91
- "keywords": "Keywords",
92
- "loading": "Loading...",
93
- "login": "Login",
94
- "logo": "Logo",
95
- "me": "ME",
96
- "menuHome": "Home",
97
- "message": "Message",
98
- "mobile": "Mobile number",
99
- "mobilePhones": "Mobile numbers",
100
- "monthLabel": "{0} month(s)",
101
- "months": [
102
- "Jan.",
103
- "Feb.",
104
- "Mar.",
105
- "Apr.",
106
- "May.",
107
- "Jun.",
108
- "Jul.",
109
- "Aug.",
110
- "Sep.",
111
- "Oct.",
112
- "Nov.",
113
- "Dec."
114
- ],
115
- "more": "More",
116
- "moreTag": "{0} more",
117
- "name": "Name",
118
- "nameB": "Name",
119
- "networkError": "The local network is faulty and cannot connect to the remote server",
120
- "newPassword": "New password",
121
- "newPasswordRequired": "Please enter your new password",
122
- "newPasswordTip": "New password should be different",
123
- "newValue": "New value",
124
- "nextStep": "Next",
125
- "no": "No",
126
- "noChanges": "No changes yet",
127
- "noData": "No valid data",
128
- "noDataReturned": "No data returned",
129
- "noMatches": "No matches",
130
- "none": "None yet",
131
- "noOptions": "No options",
132
- "noRows": "No data",
133
- "ok": "OK",
134
- "oldValue": "Old value",
135
- "open": "Open",
136
- "openMenu": "Open menu",
137
- "operationSucceeded": "Operation succeeded",
138
- "others": "Others",
139
- "pageNotFound": "Page Not Found",
140
- "passwordChangeSuccess": "Password changed successfully, please sign in again",
141
- "passwordRepeatError": "The two passwords entered are inconsistent",
142
- "passwordTip": "The password cannot be less than 6 characters and contains at least one letter and number",
143
- "pdf": "PDF",
144
- "pinYin": "Pinyin Initials",
145
- "previousStep": "Previous",
146
- "print": "Print",
147
- "prompt": "Input",
148
- "pullToRefresh": "Pull down to refresh",
149
- "quarters": ["Q1", "Q2", "Q3", "Q4"],
150
- "reactivateTip": "The operation timed out, please click the OK button to reactivate",
151
- "record": "Record",
152
- "refresh": "Refresh",
153
- "refreshing": "Refreshing",
154
- "releaseToRefresh": "Release to refresh",
155
- "region": "Country or region",
156
- "regionAU": "Australia",
157
- "regionCA": "Canada",
158
- "regionCN": "Mainland China",
159
- "regionDE": "Germany",
160
- "regionFR": "France",
161
- "regionGB": "United Kingdom",
162
- "regionHK": "Hong Kong, China",
163
- "regionIE": "Ireland",
164
- "regionJP": "Japan",
165
- "regionNZ": "New Zealand",
166
- "regionSG": "Singapore",
167
- "regionUS": "United States",
168
- "reloginTip": "Please enter your password, resubmit the data after successful login",
169
- "remove": "Remove",
170
- "renew": "Renew",
171
- "repeatPassword": "Repeat the password",
172
- "repeatPasswordRequired": "Please repeat the new password",
173
- "reports": "Reports",
174
- "requiredField": "{0} is a required field",
175
- "resending": "Resending",
176
- "reset": "Reset",
177
- "rotateLeft": "Rotate left 90°",
178
- "rotateRight": "Rotate right 90°",
179
- "save": "Save",
180
- "scrollToTop": "Scroll to top",
181
- "search": "Search",
182
- "send": "Send",
183
- "setAsDefault": "Set as default",
184
- "settings": "Settings",
185
- "serviceDisabled": "The service is not enabled or has been disabled",
186
- "showIt": "Show it",
187
- "signout": "Sign out",
188
- "smartERP": "SmartERP Cloud",
189
- "sortTip": "Drag and drop items to sort",
190
- "state": "Province/State",
191
- "status": "Status",
192
- "statusApproved": "Approved",
193
- "statusArchived": "Archived",
194
- "statusAudited": "Audited",
195
- "statusCompleted": "Completed",
196
- "statusDeleted": "Deleted",
197
- "statusDoing": "Doing",
198
- "statusFlaged": "Flaged",
199
- "statusNormal": "Normla",
200
- "statusInactivated": "Inactivated",
201
- "submit": "Submit",
202
- "success": "Success",
203
- "taxId": "Tax ID number",
204
- "taxIdHelp": "Used for real-name authentication and invoicing",
205
- "taxCABN": "Business number",
206
- "taxCNUSCC": "Unified social credit code",
207
- "taxHKBRN": "Business registration number",
208
- "taxNZIRD": "IRD",
209
- "taxUSEIN": "Employer identification number",
210
- "timeDifferenceInvalid": "The time difference between the device and the server is {0}, which exceeds the limit of {1} seconds. Please adjust the device time. If it is abnormal, please inform the administrator",
211
- "title": "Title",
212
- "tokenExpiry": "Your session is about to expire. Click the Cancel button to continue",
213
- "type": "Type",
214
- "yes": "Yes",
215
- "uid": "Universal ID",
216
- "unknownError": "Unknown Error",
217
- "unitJoin": "per {0}",
218
- "unitPC": "PC",
219
- "unitSET": "SET",
220
- "unitHOUR": "Hour",
221
- "unitDAY": "Day",
222
- "unitYEAR": "Year",
223
- "unitWEEK": "Week",
224
- "unitFORTNIGHT": "Fortnight",
225
- "unitFOURWEEK": "4-week",
226
- "unitMONEY": "Money",
227
- "unitMONTH": "Month",
228
- "unitBIMONTH": "2-month",
229
- "unitQUATER": "Quater",
230
- "unitHALFYEAR": "6-month",
231
- "unitGRAM": "g",
232
- "unitJIN": "½Kg",
233
- "unitKILOGRAM": "Kg",
234
- "unitTIME": "Time",
235
- "unitTON": "Ton",
236
- "unitM3": "m3",
237
- "update": "Update",
238
- "updateReady": "Update ready",
239
- "updateTime": "Update time",
240
- "updateTip": "Restart the application to use the latest features",
241
- "user": "User",
242
- "users": "Users",
243
- "view": "View",
244
- "warning": "Warning",
245
- "welcome": "{0}, welcome!"
2
+ "accountant": "Accountant",
3
+ "actions": "Actions",
4
+ "add": "Add",
5
+ "assignedId": "Assigned ID",
6
+ "audits": "Audits",
7
+ "authFailed": "Authentication failed",
8
+ "author": "Author",
9
+ "authorizer": "Authorizer",
10
+ "applicant": "Applicant",
11
+ "approve": "Approve it",
12
+ "back": "Back",
13
+ "cancel": "Cancel",
14
+ "changePassword": "Change password",
15
+ "changeReload": "{0} has just changed data, do you want to reload? Reloading will cause the current modification to be lost!",
16
+ "clickForDetails": "Click for details",
17
+ "city": "City",
18
+ "clear": "Clear",
19
+ "clearInput": "Clear input",
20
+ "close": "Close",
21
+ "confirm": "Confirm",
22
+ "confirmAction": "Are you sure you want to {0}?",
23
+ "completeTip": "{0} completed",
24
+ "continentAF": "Africa",
25
+ "continentAN": "Antarctica",
26
+ "continentAS": "Asia",
27
+ "continentEU": "Europe",
28
+ "continentNA": "North America",
29
+ "continentOC": "Oceania",
30
+ "continentSA": "South America",
31
+ "copy": "Copy",
32
+ "creation": "Creation",
33
+ "culture": "Culture",
34
+ "currentPassword": "Current password",
35
+ "currentPasswordRequired": "Please enter your current password",
36
+ "currency": "Currency",
37
+ "currencyAUD": "Australia Dollar",
38
+ "currencyCAD": "Canada Dollar",
39
+ "currencyCNY": "Renminbi(RMB)",
40
+ "currencyEUR": "Euro",
41
+ "currencyGBP": "British Pound",
42
+ "currencyHKD": "Hong Kong Dollar",
43
+ "currencyJPY": "Japan Yen",
44
+ "currencyNZD": "New Zealand Dollar",
45
+ "currencySGD": "Singapore Dollar",
46
+ "currencyUSD": "U.S. Dollar",
47
+ "customize": "Customize",
48
+ "customName": "Custom name",
49
+ "data": "Data",
50
+ "dataComparison": "Data comparison",
51
+ "dataPrivacy": "Data privacy",
52
+ "dataPrivacyAdmin": "Admins",
53
+ "dataPrivacyChannel": "Channels",
54
+ "dataPrivacyCustomer": "Customers",
55
+ "dataPrivacyDept": "Dept users",
56
+ "dataPrivacyInternal": "All users",
57
+ "dataPrivacyPrivate": "Creator only",
58
+ "dataPrivacyPublic": "Full public",
59
+ "defaultCulture": "Default culture",
60
+ "defaultCurrency": "Default currency",
61
+ "defaultItem": "Default",
62
+ "delete": "Delete",
63
+ "deleteConfirm": "Are you sure you want to permanently delete this {0}?",
64
+ "description": "Description",
65
+ "district": "District/County",
66
+ "done": "Done",
67
+ "download": "Download",
68
+ "dragIndicator": "Drag indicator",
69
+ "edit": "Edit",
70
+ "email": "Email",
71
+ "emailAddresses": "Email addresses",
72
+ "enabled": "Enabled",
73
+ "entityStatus": "Status",
74
+ "environmentChanged": "The operating environment has changed, please log in again",
75
+ "error": "Error",
76
+ "etsoo": "ETSOO",
77
+ "expiry": "Expiry",
78
+ "exportToPdf": "Export to PDF",
79
+ "failed": "Operation failed",
80
+ "familyName": "Family name",
81
+ "field": "Field",
82
+ "fileDownloaded": "The file has been downloaded",
83
+ "givenName": "Given name",
84
+ "help": "Help",
85
+ "hideIt": "Hide it",
86
+ "id": "Number#",
87
+ "info": "Info",
88
+ "item": "Item",
89
+ "itemExists": "'{0}' already exists",
90
+ "jsonData": "Extended data",
91
+ "keywords": "Keywords",
92
+ "loading": "Loading...",
93
+ "login": "Login",
94
+ "logo": "Logo",
95
+ "me": "ME",
96
+ "menuHome": "Home",
97
+ "message": "Message",
98
+ "mobile": "Mobile number",
99
+ "mobilePhones": "Mobile numbers",
100
+ "monthLabel": "{0} month(s)",
101
+ "months": [
102
+ "Jan.",
103
+ "Feb.",
104
+ "Mar.",
105
+ "Apr.",
106
+ "May.",
107
+ "Jun.",
108
+ "Jul.",
109
+ "Aug.",
110
+ "Sep.",
111
+ "Oct.",
112
+ "Nov.",
113
+ "Dec."
114
+ ],
115
+ "more": "More",
116
+ "moreTag": "{0} more",
117
+ "name": "Name",
118
+ "nameB": "Name",
119
+ "networkError": "The local network is faulty and cannot connect to the remote server",
120
+ "newPassword": "New password",
121
+ "newPasswordRequired": "Please enter your new password",
122
+ "newPasswordTip": "New password should be different",
123
+ "newValue": "New value",
124
+ "nextStep": "Next",
125
+ "no": "No",
126
+ "noChanges": "No changes yet",
127
+ "noData": "No valid data",
128
+ "noDataReturned": "No data returned",
129
+ "noMatches": "No matches",
130
+ "none": "None yet",
131
+ "noOptions": "No options",
132
+ "noRows": "No data",
133
+ "ok": "OK",
134
+ "oldValue": "Old value",
135
+ "open": "Open",
136
+ "openMenu": "Open menu",
137
+ "operationSucceeded": "Operation succeeded",
138
+ "others": "Others",
139
+ "pageNotFound": "Page Not Found",
140
+ "passwordChangeSuccess": "Password changed successfully, please sign in again",
141
+ "passwordRepeatError": "The two passwords entered are inconsistent",
142
+ "passwordTip": "The password cannot be less than 6 characters and contains at least one letter and number",
143
+ "pdf": "PDF",
144
+ "pinYin": "Pinyin Initials",
145
+ "previousStep": "Previous",
146
+ "print": "Print",
147
+ "prompt": "Input",
148
+ "pullToRefresh": "Pull down to refresh",
149
+ "quarters": ["Q1", "Q2", "Q3", "Q4"],
150
+ "reactivateTip": "The operation timed out, please click the OK button to reactivate",
151
+ "record": "Record",
152
+ "refresh": "Refresh",
153
+ "refreshing": "Refreshing",
154
+ "releaseToRefresh": "Release to refresh",
155
+ "region": "Country or region",
156
+ "regionAU": "Australia",
157
+ "regionCA": "Canada",
158
+ "regionCN": "Mainland China",
159
+ "regionDE": "Germany",
160
+ "regionFR": "France",
161
+ "regionGB": "United Kingdom",
162
+ "regionHK": "Hong Kong, China",
163
+ "regionIE": "Ireland",
164
+ "regionJP": "Japan",
165
+ "regionNZ": "New Zealand",
166
+ "regionSG": "Singapore",
167
+ "regionUS": "United States",
168
+ "reloginTip": "Please enter your password, resubmit the data after successful login",
169
+ "remove": "Remove",
170
+ "renew": "Renew",
171
+ "repeatPassword": "Repeat the password",
172
+ "repeatPasswordRequired": "Please repeat the new password",
173
+ "reports": "Reports",
174
+ "requiredField": "{0} is a required field",
175
+ "resending": "Resending",
176
+ "reset": "Reset",
177
+ "rotateLeft": "Rotate left 90°",
178
+ "rotateRight": "Rotate right 90°",
179
+ "save": "Save",
180
+ "scrollToTop": "Scroll to top",
181
+ "search": "Search",
182
+ "send": "Send",
183
+ "setAsDefault": "Set as default",
184
+ "settings": "Settings",
185
+ "serviceDisabled": "The service is not enabled or has been disabled",
186
+ "showIt": "Show it",
187
+ "signout": "Sign out",
188
+ "smartERP": "SmartERP Cloud",
189
+ "sortTip": "Drag and drop items to sort",
190
+ "state": "Province/State",
191
+ "status": "Status",
192
+ "statusApproved": "Approved",
193
+ "statusArchived": "Archived",
194
+ "statusAudited": "Audited",
195
+ "statusCompleted": "Completed",
196
+ "statusDeleted": "Deleted",
197
+ "statusDoing": "Doing",
198
+ "statusFlaged": "Flaged",
199
+ "statusNormal": "Normla",
200
+ "statusInactivated": "Inactivated",
201
+ "submit": "Submit",
202
+ "success": "Success",
203
+ "taxId": "Tax ID number",
204
+ "taxIdHelp": "Used for real-name authentication and invoicing",
205
+ "taxCABN": "Business number",
206
+ "taxCNUSCC": "Unified social credit code",
207
+ "taxHKBRN": "Business registration number",
208
+ "taxNZIRD": "IRD",
209
+ "taxUSEIN": "Employer identification number",
210
+ "timeDifferenceInvalid": "The time difference between the device and the server is {0}, which exceeds the limit of {1} seconds. Please adjust the device time. If it is abnormal, please inform the administrator",
211
+ "title": "Title",
212
+ "tokenExpiry": "Your session is about to expire. Click the Cancel button to continue",
213
+ "type": "Type",
214
+ "yes": "Yes",
215
+ "uid": "Universal ID",
216
+ "unknownError": "Unknown Error",
217
+ "unitJoin": "per {0}",
218
+ "unitPC": "PC",
219
+ "unitSET": "SET",
220
+ "unitHOUR": "Hour",
221
+ "unitDAY": "Day",
222
+ "unitYEAR": "Year",
223
+ "unitWEEK": "Week",
224
+ "unitFORTNIGHT": "Fortnight",
225
+ "unitFOURWEEK": "4-week",
226
+ "unitMONEY": "Money",
227
+ "unitMONTH": "Month",
228
+ "unitBIMONTH": "2-month",
229
+ "unitQUATER": "Quater",
230
+ "unitHALFYEAR": "6-month",
231
+ "unitGRAM": "g",
232
+ "unitJIN": "½Kg",
233
+ "unitKILOGRAM": "Kg",
234
+ "unitTIME": "Time",
235
+ "unitTON": "Ton",
236
+ "unitM3": "m3",
237
+ "update": "Update",
238
+ "updateReady": "Update ready",
239
+ "updateTime": "Update time",
240
+ "updateTip": "Restart the application to use the latest features",
241
+ "user": "User",
242
+ "users": "Users",
243
+ "view": "View",
244
+ "warning": "Warning",
245
+ "welcome": "{0}, welcome!"
246
246
  }