dtable-ui-component 5.3.6 → 5.3.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 (256) hide show
  1. package/lib/ButtonFormatter/index.js +8 -2
  2. package/lib/CheckboxEditor/index.css +8 -20
  3. package/lib/CheckboxEditor/index.js +98 -35
  4. package/lib/CheckboxFormatter/index.css +5 -0
  5. package/lib/CheckboxFormatter/index.js +9 -15
  6. package/lib/CollaboratorEditor/index.css +12 -35
  7. package/lib/CollaboratorEditor/index.js +18 -212
  8. package/lib/CollaboratorEditor/{mb-collaborator-editor-popover → mb-collaborator-editor}/index.js +27 -30
  9. package/lib/CollaboratorEditor/pc-collaborator-editor/index.js +257 -0
  10. package/lib/CollaboratorItem/index.css +5 -1
  11. package/lib/CollaboratorItem/index.js +6 -2
  12. package/lib/Comment/body/comment.js +190 -0
  13. package/lib/Comment/body/index.css +95 -0
  14. package/lib/Comment/body/index.js +32 -0
  15. package/lib/Comment/footer/btns/index.css +40 -0
  16. package/lib/Comment/footer/btns/index.js +113 -0
  17. package/lib/Comment/footer/index.css +157 -0
  18. package/lib/Comment/footer/index.js +169 -0
  19. package/lib/Comment/footer/input/index.css +52 -0
  20. package/lib/Comment/footer/input/index.js +448 -0
  21. package/lib/Comment/footer/input/participant/index.css +0 -0
  22. package/lib/Comment/footer/input/participant/index.js +53 -0
  23. package/lib/Comment/footer/participants/index.css +22 -0
  24. package/lib/Comment/footer/participants/index.js +68 -0
  25. package/lib/Comment/footer/participants/participant/index.css +5 -0
  26. package/lib/Comment/footer/participants/participant/index.js +32 -0
  27. package/lib/Comment/footer/participants/participant-select/index.css +104 -0
  28. package/lib/Comment/footer/participants/participant-select/index.js +182 -0
  29. package/lib/Comment/index.css +19 -0
  30. package/lib/Comment/index.js +304 -0
  31. package/lib/Comment/model.js +25 -0
  32. package/lib/Comment/utils/common.js +62 -0
  33. package/lib/Comment/utils/index.js +27 -0
  34. package/lib/Comment/utils/utilities.js +176 -0
  35. package/lib/DTableCustomizeSelect/index.js +2 -2
  36. package/lib/DTableFiltersPopover/utils/index.js +1 -7
  37. package/lib/DTableFiltersPopover/widgets/filter-calendar.js +2 -2
  38. package/lib/DTableGroupSelect/index.js +3 -3
  39. package/lib/DTableSelect/index.js +3 -1
  40. package/lib/DateEditor/index.js +14 -51
  41. package/lib/DateEditor/pc-date-editor-popover.js +149 -12
  42. package/lib/{common/delete-tip.js → DeleteTip/index.js} +12 -16
  43. package/lib/Department-editor/department-single-select.js +1 -1
  44. package/lib/Department-editor/index.js +3 -4
  45. package/lib/DepartmentSingleSelectFormatter/index.js +3 -2
  46. package/lib/DigitalSignEditor/constants.js +7 -0
  47. package/lib/DigitalSignEditor/index.css +69 -0
  48. package/lib/DigitalSignEditor/index.js +182 -0
  49. package/lib/DigitalSignEditor/service.js +39 -0
  50. package/lib/DigitalSignEditor/signature-board/index.css +35 -0
  51. package/lib/DigitalSignEditor/signature-board/index.js +135 -0
  52. package/lib/DigitalSignEditor/signature-board/signature-tool.js +396 -0
  53. package/lib/DigitalSignEditor/utils.js +29 -0
  54. package/lib/DurationEditor/index.js +110 -0
  55. package/lib/EmailEditor/index.js +58 -0
  56. package/lib/FileEditor/addition-previewer/index.css +1 -0
  57. package/lib/FileEditor/addition-previewer/index.js +52 -0
  58. package/lib/FileEditor/addition-previewer/local-file-addition/index.css +1 -0
  59. package/lib/FileEditor/addition-previewer/local-file-addition/index.js +252 -0
  60. package/lib/FileEditor/constants.js +7 -0
  61. package/lib/FileEditor/files-previewer/file-previewer/dropdown-menu.js +74 -0
  62. package/lib/FileEditor/files-previewer/file-previewer/file-name-editor/index.css +5 -0
  63. package/lib/FileEditor/files-previewer/file-previewer/file-name-editor/index.js +77 -0
  64. package/lib/FileEditor/files-previewer/file-previewer/index.css +88 -0
  65. package/lib/FileEditor/files-previewer/file-previewer/index.js +167 -0
  66. package/lib/FileEditor/files-previewer/index.css +56 -0
  67. package/lib/FileEditor/files-previewer/index.js +277 -0
  68. package/lib/FileEditor/index.css +6 -0
  69. package/lib/FileEditor/index.js +258 -11
  70. package/lib/FileEditor/utils.js +22 -0
  71. package/lib/FileItemFormatter/index.js +19 -20
  72. package/lib/FileUploader/index.css +9 -0
  73. package/lib/FileUploader/index.js +268 -14
  74. package/lib/FormulaFormatter/cell-value-validator.js +17 -17
  75. package/lib/FormulaFormatter/index.js +2 -1
  76. package/lib/FormulaFormatter/utils.js +0 -31
  77. package/lib/GeolocationEditor/country-editor.js +319 -0
  78. package/lib/GeolocationEditor/index.css +641 -0
  79. package/lib/GeolocationEditor/index.js +240 -0
  80. package/lib/GeolocationEditor/location-editor.js +368 -0
  81. package/lib/GeolocationEditor/map-editor/index.js +456 -0
  82. package/lib/GeolocationEditor/map-editor/large-editor/index.css +137 -0
  83. package/lib/GeolocationEditor/map-editor/large-editor/index.js +461 -0
  84. package/lib/GeolocationEditor/map-editor-utils.js +153 -0
  85. package/lib/GeolocationEditor/map-selection-editor/index.js +455 -0
  86. package/lib/GeolocationEditor/map-selection-editor/large-editor/index.css +1 -0
  87. package/lib/GeolocationEditor/map-selection-editor/large-editor/index.js +447 -0
  88. package/lib/GeolocationEditor/parse-geolocation.js +282 -0
  89. package/lib/GeolocationEditor/province-city-editor.js +292 -0
  90. package/lib/GeolocationEditor/province-editor.js +226 -0
  91. package/lib/GeolocationEditor/selector-header-item.js +28 -0
  92. package/lib/GeolocationEditor/selector-list.js +33 -0
  93. package/lib/ImageEditor/addition-previewer/image-link/index.css +45 -0
  94. package/lib/ImageEditor/addition-previewer/image-link/index.js +73 -0
  95. package/lib/ImageEditor/addition-previewer/index.css +106 -0
  96. package/lib/ImageEditor/addition-previewer/index.js +63 -0
  97. package/lib/ImageEditor/addition-previewer/local-image-addition/index.css +125 -0
  98. package/lib/ImageEditor/addition-previewer/local-image-addition/index.js +254 -0
  99. package/lib/ImageEditor/constants.js +7 -0
  100. package/lib/ImageEditor/images-previewer/image-preview/index.css +59 -0
  101. package/lib/ImageEditor/images-previewer/image-preview/index.js +155 -0
  102. package/lib/ImageEditor/images-previewer/index.css +18 -0
  103. package/lib/ImageEditor/images-previewer/index.js +140 -0
  104. package/lib/ImageEditor/index.css +24 -0
  105. package/lib/ImageEditor/index.js +194 -0
  106. package/lib/ImageThumbnail/index.css +20 -0
  107. package/lib/ImageThumbnail/index.js +136 -0
  108. package/lib/LinkEditor/index.js +2 -3
  109. package/lib/LinkEditor/pc-link-editor-popover/index.js +1 -1
  110. package/lib/MultipleSelectEditor/index.js +16 -177
  111. package/lib/NumberEditor/index.js +63 -77
  112. package/lib/RowExpandDialog/body/index.css +21 -0
  113. package/lib/RowExpandDialog/body/index.js +262 -0
  114. package/lib/RowExpandDialog/column-content/index.css +48 -0
  115. package/lib/RowExpandDialog/column-content/index.js +50 -0
  116. package/lib/RowExpandDialog/header/index.css +31 -0
  117. package/lib/RowExpandDialog/header/index.js +55 -0
  118. package/lib/RowExpandDialog/index.css +28 -0
  119. package/lib/RowExpandDialog/index.js +237 -0
  120. package/lib/RowExpandEditor/RowExpandAddBtn/index.css +22 -0
  121. package/lib/RowExpandEditor/RowExpandAddBtn/index.js +24 -0
  122. package/lib/RowExpandEditor/RowExpandCheckboxEditor/index.css +18 -0
  123. package/lib/RowExpandEditor/RowExpandCheckboxEditor/index.js +43 -0
  124. package/lib/RowExpandEditor/RowExpandCollaboratorEditor/index.css +5 -0
  125. package/lib/RowExpandEditor/RowExpandCollaboratorEditor/index.js +232 -0
  126. package/lib/RowExpandEditor/RowExpandDateEditor/index.js +130 -0
  127. package/lib/RowExpandEditor/RowExpandDepartmentEditor/index.js +106 -0
  128. package/lib/RowExpandEditor/RowExpandDigitalSignEditor/index.css +13 -0
  129. package/lib/RowExpandEditor/RowExpandDigitalSignEditor/index.js +208 -0
  130. package/lib/RowExpandEditor/RowExpandDurationEditor/index.js +105 -0
  131. package/lib/RowExpandEditor/RowExpandEmailEditor/index.css +2 -0
  132. package/lib/RowExpandEditor/RowExpandEmailEditor/index.js +125 -0
  133. package/lib/RowExpandEditor/RowExpandFileEditor/index.css +1 -0
  134. package/lib/RowExpandEditor/RowExpandFileEditor/index.js +147 -0
  135. package/lib/RowExpandEditor/RowExpandGeolocationEditor/index.css +17 -0
  136. package/lib/RowExpandEditor/RowExpandGeolocationEditor/index.js +165 -0
  137. package/lib/RowExpandEditor/RowExpandImageEditor/index.css +6 -0
  138. package/lib/RowExpandEditor/RowExpandImageEditor/index.js +170 -0
  139. package/lib/RowExpandEditor/RowExpandLongTextEditor/index.css +6 -0
  140. package/lib/RowExpandEditor/RowExpandLongTextEditor/index.js +123 -0
  141. package/lib/RowExpandEditor/RowExpandMultipleSelectEditor/index.css +44 -0
  142. package/lib/RowExpandEditor/RowExpandMultipleSelectEditor/index.js +224 -0
  143. package/lib/RowExpandEditor/RowExpandNumberEditor/index.js +105 -0
  144. package/lib/RowExpandEditor/RowExpandRateEditor/index.css +13 -0
  145. package/lib/RowExpandEditor/RowExpandRateEditor/index.js +152 -0
  146. package/lib/RowExpandEditor/RowExpandSingleSelectorEditor/index.css +58 -0
  147. package/lib/RowExpandEditor/RowExpandSingleSelectorEditor/index.js +193 -0
  148. package/lib/RowExpandEditor/RowExpandTextEditor/index.css +4 -0
  149. package/lib/RowExpandEditor/RowExpandTextEditor/index.js +127 -0
  150. package/lib/RowExpandEditor/RowExpandUrlEditor/index.css +31 -0
  151. package/lib/RowExpandEditor/RowExpandUrlEditor/index.js +130 -0
  152. package/lib/RowExpandEditor/constants.js +44 -0
  153. package/lib/RowExpandEditor/index.css +0 -0
  154. package/lib/RowExpandEditor/index.js +32 -0
  155. package/lib/RowExpandFormatter/RowExpandDepartmentFormatter/index.js +27 -0
  156. package/lib/{RowExpandEmailFormatter → RowExpandFormatter/RowExpandEmailFormatter}/index.css +1 -1
  157. package/lib/{RowExpandEmailFormatter → RowExpandFormatter/RowExpandEmailFormatter}/index.js +1 -1
  158. package/lib/{RowExpandFileFormatter → RowExpandFormatter/RowExpandFileFormatter}/index.css +6 -6
  159. package/lib/{RowExpandFileFormatter → RowExpandFormatter/RowExpandFileFormatter}/index.js +3 -1
  160. package/lib/{RowExpandFileFormatter → RowExpandFormatter/RowExpandFileFormatter}/row-expand-file-item-formatter.js +12 -13
  161. package/lib/{RowExpandFormulaFormatter → RowExpandFormatter/RowExpandFormulaFormatter}/index.js +11 -10
  162. package/lib/{RowExpandImageFormatter → RowExpandFormatter/RowExpandImageFormatter}/index.css +6 -6
  163. package/lib/{RowExpandImageFormatter → RowExpandFormatter/RowExpandImageFormatter}/index.js +1 -1
  164. package/lib/{RowExpandImageFormatter → RowExpandFormatter/RowExpandImageFormatter}/row-expand-image-item-formatter.js +5 -5
  165. package/lib/{RowExpandLinkFormatter → RowExpandFormatter/RowExpandLinkFormatter}/collaborator-item-formatter.js +1 -1
  166. package/lib/{RowExpandLinkFormatter → RowExpandFormatter/RowExpandLinkFormatter}/index.css +2 -2
  167. package/lib/{RowExpandLinkFormatter → RowExpandFormatter/RowExpandLinkFormatter}/index.js +20 -20
  168. package/lib/{RowExpandRateFormatter → RowExpandFormatter/RowExpandRateFormatter}/index.css +1 -1
  169. package/lib/RowExpandFormatter/RowExpandUrlFormatter/index.css +1 -0
  170. package/lib/{RowExpandUrlFormatter → RowExpandFormatter/RowExpandUrlFormatter}/index.js +4 -3
  171. package/lib/RowExpandFormatter/constants.js +61 -0
  172. package/lib/RowExpandFormatter/index.css +28 -3
  173. package/lib/RowExpandFormatter/index.js +111 -130
  174. package/lib/SingleSelectEditor/index.js +16 -156
  175. package/lib/SvgIcon/index.css +11 -0
  176. package/lib/SvgIcon/index.js +29 -0
  177. package/lib/TextEditor/index.js +112 -42
  178. package/lib/UploadProgress/index.js +38 -0
  179. package/lib/UrlEditor/index.js +61 -0
  180. package/lib/common/editor-base.js +52 -0
  181. package/lib/constants/file.js +96 -0
  182. package/lib/constants/index.js +27 -15
  183. package/lib/constants/key-codes.js +109 -0
  184. package/lib/css/cell-editor.css +18 -2
  185. package/lib/formatterConfig/base-formatter-config.js +23 -23
  186. package/lib/formatterConfig/index.js +3 -3
  187. package/lib/hooks/index.js +16 -0
  188. package/lib/index.js +81 -46
  189. package/lib/lang/index.js +19 -16
  190. package/lib/locales/de.json +167 -0
  191. package/lib/locales/en.json +167 -0
  192. package/lib/locales/es.json +167 -0
  193. package/lib/locales/fr.json +167 -0
  194. package/lib/locales/pt.json +167 -0
  195. package/lib/locales/ru.json +167 -0
  196. package/lib/locales/zh-CN.json +167 -0
  197. package/lib/select-editor/index.js +6 -6
  198. package/lib/select-editor/{mb-select-editor-popover → mb-select-editor}/index.js +3 -3
  199. package/lib/select-editor/pc-select-editor/index.css +85 -0
  200. package/lib/select-editor/pc-select-editor/index.js +290 -0
  201. package/lib/utils/cell-comparer.js +35 -0
  202. package/lib/utils/cell.js +55 -0
  203. package/lib/utils/column-utils.js +25 -0
  204. package/lib/utils/editor-utils.js +1 -6
  205. package/lib/utils/get-event-transfer.js +75 -0
  206. package/lib/utils/hotkey.js +37 -0
  207. package/lib/utils/object-utils.js +61 -0
  208. package/lib/utils/url.js +121 -8
  209. package/lib/utils/utils.js +119 -2
  210. package/package.json +3 -2
  211. package/lib/CollaboratorEditor/pc-collaborator-editor-popover/index.js +0 -97
  212. package/lib/FileEditor/pc-files-addition/index.js +0 -1
  213. package/lib/FileEditor/pc-files-addition/pc-file-uploaded-item.js +0 -1
  214. package/lib/FileEditor/pc-files-preview/index.js +0 -1
  215. package/lib/FileEditor/pc-files-preview/pc-file-item-preview.js +0 -1
  216. package/lib/FileItemFormatter/assets/file/192/excel.png +0 -0
  217. package/lib/FileItemFormatter/assets/file/192/file.png +0 -0
  218. package/lib/FileItemFormatter/assets/file/192/music.png +0 -0
  219. package/lib/FileItemFormatter/assets/file/192/pdf.png +0 -0
  220. package/lib/FileItemFormatter/assets/file/192/pic.png +0 -0
  221. package/lib/FileItemFormatter/assets/file/192/ppt.png +0 -0
  222. package/lib/FileItemFormatter/assets/file/192/txt.png +0 -0
  223. package/lib/FileItemFormatter/assets/file/192/video.png +0 -0
  224. package/lib/FileItemFormatter/assets/file/192/word.png +0 -0
  225. package/lib/FileItemFormatter/assets/file/24/excel.png +0 -0
  226. package/lib/FileItemFormatter/assets/file/24/file.png +0 -0
  227. package/lib/FileItemFormatter/assets/file/24/music.png +0 -0
  228. package/lib/FileItemFormatter/assets/file/24/pdf.png +0 -0
  229. package/lib/FileItemFormatter/assets/file/24/pic.png +0 -0
  230. package/lib/FileItemFormatter/assets/file/24/ppt.png +0 -0
  231. package/lib/FileItemFormatter/assets/file/24/txt.png +0 -0
  232. package/lib/FileItemFormatter/assets/file/24/video.png +0 -0
  233. package/lib/FileItemFormatter/assets/file/24/word.png +0 -0
  234. package/lib/FileItemFormatter/assets/folder/folder-192.png +0 -0
  235. package/lib/FileItemFormatter/assets/folder/folder-24.png +0 -0
  236. package/lib/FileItemFormatter/utils.js +0 -99
  237. package/lib/MultipleSelectEditor/index.css +0 -9
  238. package/lib/RowExpandLinkFormatter/utils.js +0 -71
  239. package/lib/RowExpandUrlFormatter/index.css +0 -1
  240. package/lib/SingleSelectEditor/index.css +0 -14
  241. package/lib/common/modal-portal.js +0 -26
  242. package/lib/locals/de.js +0 -103
  243. package/lib/locals/en.js +0 -104
  244. package/lib/locals/es.js +0 -103
  245. package/lib/locals/fr.js +0 -103
  246. package/lib/locals/pt.js +0 -103
  247. package/lib/locals/ru.js +0 -103
  248. package/lib/locals/zh-CN.js +0 -104
  249. package/lib/select-editor/pc-select-editor-popover/index.css +0 -71
  250. package/lib/select-editor/pc-select-editor-popover/index.js +0 -122
  251. /package/lib/CollaboratorEditor/{mb-collaborator-editor-popover → mb-collaborator-editor}/index.css +0 -0
  252. /package/lib/CollaboratorEditor/{pc-collaborator-editor-popover → pc-collaborator-editor}/index.css +0 -0
  253. /package/lib/{common/delete-tip.css → DeleteTip/index.css} +0 -0
  254. /package/lib/{RowExpandLinkFormatter → RowExpandFormatter/RowExpandLinkFormatter}/value-display-utils.js +0 -0
  255. /package/lib/{RowExpandRateFormatter → RowExpandFormatter/RowExpandRateFormatter}/index.js +0 -0
  256. /package/lib/select-editor/{mb-select-editor-popover → mb-select-editor}/index.css +0 -0
package/lib/index.js CHANGED
@@ -172,6 +172,12 @@ Object.defineProperty(exports, "DateFormatter", {
172
172
  return _DateFormatter.default;
173
173
  }
174
174
  });
175
+ Object.defineProperty(exports, "DepartmentEditor", {
176
+ enumerable: true,
177
+ get: function () {
178
+ return _DepartmentEditor.default;
179
+ }
180
+ });
175
181
  Object.defineProperty(exports, "DepartmentSelectFilter", {
176
182
  enumerable: true,
177
183
  get: function () {
@@ -184,18 +190,36 @@ Object.defineProperty(exports, "DepartmentSingleSelectFormatter", {
184
190
  return _DepartmentSingleSelectFormatter.default;
185
191
  }
186
192
  });
193
+ Object.defineProperty(exports, "DigitalSignEditor", {
194
+ enumerable: true,
195
+ get: function () {
196
+ return _DigitalSignEditor.default;
197
+ }
198
+ });
187
199
  Object.defineProperty(exports, "DigitalSignFormatter", {
188
200
  enumerable: true,
189
201
  get: function () {
190
202
  return _DigitalSignFormatter.default;
191
203
  }
192
204
  });
205
+ Object.defineProperty(exports, "DurationEditor", {
206
+ enumerable: true,
207
+ get: function () {
208
+ return _DurationEditor.default;
209
+ }
210
+ });
193
211
  Object.defineProperty(exports, "DurationFormatter", {
194
212
  enumerable: true,
195
213
  get: function () {
196
214
  return _DurationFormatter.default;
197
215
  }
198
216
  });
217
+ Object.defineProperty(exports, "EmailEditor", {
218
+ enumerable: true,
219
+ get: function () {
220
+ return _EmailEditor.default;
221
+ }
222
+ });
199
223
  Object.defineProperty(exports, "EmailFormatter", {
200
224
  enumerable: true,
201
225
  get: function () {
@@ -208,6 +232,12 @@ Object.defineProperty(exports, "FieldDisplaySetting", {
208
232
  return _FieldDisplaySetting.default;
209
233
  }
210
234
  });
235
+ Object.defineProperty(exports, "FileEditor", {
236
+ enumerable: true,
237
+ get: function () {
238
+ return _FileEditor.default;
239
+ }
240
+ });
211
241
  Object.defineProperty(exports, "FileFormatter", {
212
242
  enumerable: true,
213
243
  get: function () {
@@ -226,6 +256,12 @@ Object.defineProperty(exports, "FormulaFormatter", {
226
256
  return _FormulaFormatter.default;
227
257
  }
228
258
  });
259
+ Object.defineProperty(exports, "GeolocationEditor", {
260
+ enumerable: true,
261
+ get: function () {
262
+ return _GeolocationEditor.default;
263
+ }
264
+ });
229
265
  Object.defineProperty(exports, "GeolocationFormatter", {
230
266
  enumerable: true,
231
267
  get: function () {
@@ -238,6 +274,12 @@ Object.defineProperty(exports, "IconButton", {
238
274
  return _IconButton.default;
239
275
  }
240
276
  });
277
+ Object.defineProperty(exports, "ImageEditor", {
278
+ enumerable: true,
279
+ get: function () {
280
+ return _ImageEditor.default;
281
+ }
282
+ });
241
283
  Object.defineProperty(exports, "ImageFormatter", {
242
284
  enumerable: true,
243
285
  get: function () {
@@ -334,16 +376,16 @@ Object.defineProperty(exports, "RoleStatusEditor", {
334
376
  return _RoleStatusEditor.default;
335
377
  }
336
378
  });
337
- Object.defineProperty(exports, "RowExpandEmailFormatter", {
379
+ Object.defineProperty(exports, "RowExpandDialog", {
338
380
  enumerable: true,
339
381
  get: function () {
340
- return _RowExpandEmailFormatter.default;
382
+ return _RowExpandDialog.default;
341
383
  }
342
384
  });
343
- Object.defineProperty(exports, "RowExpandFileFormatter", {
385
+ Object.defineProperty(exports, "RowExpandEditor", {
344
386
  enumerable: true,
345
387
  get: function () {
346
- return _RowExpandFileFormatter.default;
388
+ return _RowExpandEditor.default;
347
389
  }
348
390
  });
349
391
  Object.defineProperty(exports, "RowExpandFormatter", {
@@ -352,36 +394,6 @@ Object.defineProperty(exports, "RowExpandFormatter", {
352
394
  return _RowExpandFormatter.default;
353
395
  }
354
396
  });
355
- Object.defineProperty(exports, "RowExpandFormulaFormatter", {
356
- enumerable: true,
357
- get: function () {
358
- return _RowExpandFormulaFormatter.default;
359
- }
360
- });
361
- Object.defineProperty(exports, "RowExpandImageFormatter", {
362
- enumerable: true,
363
- get: function () {
364
- return _RowExpandImageFormatter.default;
365
- }
366
- });
367
- Object.defineProperty(exports, "RowExpandLinkFormatter", {
368
- enumerable: true,
369
- get: function () {
370
- return _RowExpandLinkFormatter.default;
371
- }
372
- });
373
- Object.defineProperty(exports, "RowExpandRateFormatter", {
374
- enumerable: true,
375
- get: function () {
376
- return _RowExpandRateFormatter.default;
377
- }
378
- });
379
- Object.defineProperty(exports, "RowExpandUrlFormatter", {
380
- enumerable: true,
381
- get: function () {
382
- return _RowExpandUrlFormatter.default;
383
- }
384
- });
385
397
  Object.defineProperty(exports, "SelectItem", {
386
398
  enumerable: true,
387
399
  get: function () {
@@ -406,6 +418,12 @@ Object.defineProperty(exports, "SingleSelectFormatter", {
406
418
  return _SingleSelectFormatter.default;
407
419
  }
408
420
  });
421
+ Object.defineProperty(exports, "SvgIcon", {
422
+ enumerable: true,
423
+ get: function () {
424
+ return _SvgIcon.default;
425
+ }
426
+ });
409
427
  Object.defineProperty(exports, "TextEditor", {
410
428
  enumerable: true,
411
429
  get: function () {
@@ -418,6 +436,18 @@ Object.defineProperty(exports, "TextFormatter", {
418
436
  return _TextFormatter.default;
419
437
  }
420
438
  });
439
+ Object.defineProperty(exports, "UploadProgress", {
440
+ enumerable: true,
441
+ get: function () {
442
+ return _UploadProgress.default;
443
+ }
444
+ });
445
+ Object.defineProperty(exports, "UrlEditor", {
446
+ enumerable: true,
447
+ get: function () {
448
+ return _UrlEditor.default;
449
+ }
450
+ });
421
451
  Object.defineProperty(exports, "UrlFormatter", {
422
452
  enumerable: true,
423
453
  get: function () {
@@ -469,22 +499,25 @@ var _FileItemFormatter = _interopRequireDefault(require("./FileItemFormatter"));
469
499
  var _DigitalSignFormatter = _interopRequireDefault(require("./DigitalSignFormatter"));
470
500
  var _DepartmentSingleSelectFormatter = _interopRequireDefault(require("./DepartmentSingleSelectFormatter"));
471
501
  var _SimpleLongTextFormatter = _interopRequireDefault(require("./SimpleLongTextFormatter"));
472
- var _RowExpandFileFormatter = _interopRequireDefault(require("./RowExpandFileFormatter"));
473
- var _RowExpandImageFormatter = _interopRequireDefault(require("./RowExpandImageFormatter"));
474
- var _RowExpandLinkFormatter = _interopRequireDefault(require("./RowExpandLinkFormatter"));
475
- var _RowExpandRateFormatter = _interopRequireDefault(require("./RowExpandRateFormatter"));
476
- var _RowExpandEmailFormatter = _interopRequireDefault(require("./RowExpandEmailFormatter"));
477
- var _RowExpandUrlFormatter = _interopRequireDefault(require("./RowExpandUrlFormatter"));
478
- var _RowExpandFormulaFormatter = _interopRequireDefault(require("./RowExpandFormulaFormatter"));
479
502
  var _RowExpandFormatter = _interopRequireDefault(require("./RowExpandFormatter"));
480
- var _TextEditor = _interopRequireDefault(require("./TextEditor"));
481
- var _NumberEditor = _interopRequireDefault(require("./NumberEditor"));
503
+ var _RowExpandEditor = _interopRequireDefault(require("./RowExpandEditor"));
504
+ var _RowExpandDialog = _interopRequireDefault(require("./RowExpandDialog"));
482
505
  var _CheckboxEditor = _interopRequireDefault(require("./CheckboxEditor"));
483
- var _SingleSelectEditor = _interopRequireDefault(require("./SingleSelectEditor"));
484
- var _MultipleSelectEditor = _interopRequireDefault(require("./MultipleSelectEditor"));
485
506
  var _CollaboratorEditor = _interopRequireDefault(require("./CollaboratorEditor"));
486
507
  var _DateEditor = _interopRequireDefault(require("./DateEditor"));
508
+ var _DepartmentEditor = _interopRequireDefault(require("./Department-editor"));
509
+ var _DigitalSignEditor = _interopRequireDefault(require("./DigitalSignEditor"));
510
+ var _DurationEditor = _interopRequireDefault(require("./DurationEditor"));
511
+ var _EmailEditor = _interopRequireDefault(require("./EmailEditor"));
512
+ var _FileEditor = _interopRequireDefault(require("./FileEditor"));
513
+ var _GeolocationEditor = _interopRequireDefault(require("./GeolocationEditor"));
514
+ var _ImageEditor = _interopRequireDefault(require("./ImageEditor"));
487
515
  var _LinkEditor = _interopRequireDefault(require("./LinkEditor"));
516
+ var _MultipleSelectEditor = _interopRequireDefault(require("./MultipleSelectEditor"));
517
+ var _NumberEditor = _interopRequireDefault(require("./NumberEditor"));
518
+ var _SingleSelectEditor = _interopRequireDefault(require("./SingleSelectEditor"));
519
+ var _TextEditor = _interopRequireDefault(require("./TextEditor"));
520
+ var _UrlEditor = _interopRequireDefault(require("./UrlEditor"));
488
521
  var _DTablePopover = _interopRequireDefault(require("./DTablePopover"));
489
522
  var _DTableRadio = _interopRequireDefault(require("./DTableRadio"));
490
523
  var _DTableCommonAddTool = _interopRequireDefault(require("./DTableCommonAddTool"));
@@ -507,4 +540,6 @@ var _ClickOutside = _interopRequireDefault(require("./ClickOutside"));
507
540
  var _CollapsibleSettingLayout = _interopRequireDefault(require("./CollapsibleSettingLayout"));
508
541
  var _DTableRadioGroup = _interopRequireDefault(require("./DTableRadioGroup"));
509
542
  var _DTableEmptyTip = _interopRequireDefault(require("./DTableEmptyTip"));
510
- var _IconButton = _interopRequireDefault(require("./IconButton"));
543
+ var _IconButton = _interopRequireDefault(require("./IconButton"));
544
+ var _UploadProgress = _interopRequireDefault(require("./UploadProgress"));
545
+ var _SvgIcon = _interopRequireDefault(require("./SvgIcon"));
package/lib/lang/index.js CHANGED
@@ -4,18 +4,19 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
4
4
  Object.defineProperty(exports, "__esModule", {
5
5
  value: true
6
6
  });
7
+ exports.LANGUAGE = void 0;
7
8
  exports.getLocale = getLocale;
8
9
  exports.getMobileDatePickerLocale = getMobileDatePickerLocale;
9
10
  exports.setLocale = setLocale;
10
11
  exports.substitute = substitute;
11
12
  exports.translateCalendar = translateCalendar;
12
- var _de = _interopRequireDefault(require("../locals/de"));
13
- var _en = _interopRequireDefault(require("../locals/en"));
14
- var _fr = _interopRequireDefault(require("../locals/fr"));
15
- var _pt = _interopRequireDefault(require("../locals/pt"));
16
- var _ru = _interopRequireDefault(require("../locals/ru"));
17
- var _es = _interopRequireDefault(require("../locals/es"));
18
- var _zhCN = _interopRequireDefault(require("../locals/zh-CN"));
13
+ var _de = _interopRequireDefault(require("../locales/de.json"));
14
+ var _en = _interopRequireDefault(require("../locales/en.json"));
15
+ var _fr = _interopRequireDefault(require("../locales/fr.json"));
16
+ var _pt = _interopRequireDefault(require("../locales/pt.json"));
17
+ var _ru = _interopRequireDefault(require("../locales/ru.json"));
18
+ var _es = _interopRequireDefault(require("../locales/es.json"));
19
+ var _zhCN = _interopRequireDefault(require("../locales/zh-CN.json"));
19
20
  const zhCN = require('@seafile/seafile-calendar/lib/locale/zh_CN');
20
21
  const zhTW = require('@seafile/seafile-calendar/lib/locale/zh_TW');
21
22
  const enUS = require('@seafile/seafile-calendar/lib/locale/en_US');
@@ -34,19 +35,12 @@ let langData = {
34
35
  'es': _es.default,
35
36
  'zh-cn': _zhCN.default
36
37
  };
37
- let LANGUAGE = 'en';
38
+ let LANGUAGE = exports.LANGUAGE = 'en';
38
39
  let LANGUAGE_MAP = langData[LANGUAGE];
39
40
  function setLocale(args) {
40
- LANGUAGE = typeof args === 'string' ? args : LANGUAGE;
41
+ exports.LANGUAGE = LANGUAGE = typeof args === 'string' ? args : LANGUAGE;
41
42
  LANGUAGE_MAP = langData[LANGUAGE];
42
43
  }
43
- function getLocale(key, def) {
44
- if (!key) return def;
45
- if (!LANGUAGE_MAP[key]) {
46
- return def || key;
47
- }
48
- return LANGUAGE_MAP[key];
49
- }
50
44
  function substitute(str, obj) {
51
45
  if (typeof str === 'string') {
52
46
  if (str.indexOf('{') < 0) {
@@ -67,6 +61,15 @@ function substitute(str, obj) {
67
61
  }
68
62
  return '';
69
63
  }
64
+ function getLocale(key) {
65
+ let obj = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
66
+ if (!key) return '';
67
+ let str = LANGUAGE_MAP[key];
68
+ if (!str) return key;
69
+ const paramKeys = Object.keys(obj);
70
+ if (paramKeys.length === 0) return str;
71
+ return substitute(str, obj);
72
+ }
70
73
  function translateCalendar() {
71
74
  const locale = LANGUAGE ? LANGUAGE : 'en';
72
75
  let language;
@@ -0,0 +1,167 @@
1
+ {
2
+ "Add_an_option": "Fügen Sie eine Option hinzu",
3
+ "Search_option": "Option suchen",
4
+ "No_options_available": "Es sind keine Optionen verfügbar.",
5
+ "Current_option": "Aktuelle Option",
6
+ "No_option": "Keine Option",
7
+ "Choose_an_option": "Wähle eine Option",
8
+ "Add_a_collaborator": "Fügen Sie einen Mitarbeiter hinzu",
9
+ "Search_collaborator": "Mitarbeiter suchen",
10
+ "No_collaborators_available": "Es sind keine Mitarbeiter verfügbar.",
11
+ "Done": "Erledigt",
12
+ "Choose_a_collaborator": "Wählen Sie einen Mitarbeiter",
13
+ "Please_input": "Bitte eingeben",
14
+ "Please_select": "Auswählen",
15
+ "Clear": "Leeren",
16
+ "Are_you_sure_you_want_to_delete_this_file": "Möchten Sie diese Datei wirklich löschen?",
17
+ "Are_you_sure_you_want_to_delete_this_image": "Möchten Sie diese Bild wirklich löschen?",
18
+ "Cancel": "Abbrechen",
19
+ "Delete": "Löschen",
20
+ "Search_department": "Bereich suchen",
21
+ "No_departments_available": "Es sind keine Bereiche verfügbar.",
22
+ "Current_user_department": "Bereich des angemeldeten Benutzers",
23
+ "Current_user_department_and_sub": "Bereich und Unterbereiche des angemeldeten Benutzers",
24
+ "Specific_departments": "Bestimmte Bereiche",
25
+ "Deleted_department": "Gelöschter Bereich",
26
+ "View_original_image": "View original image",
27
+ "Add_filter": "Filter hinzufügen",
28
+ "Submit": "Abschicken",
29
+ "No_filters": "Es sind keine Filter definiert.",
30
+ "Select_an_option": "Option wählen",
31
+ "Add_collaborator": "Mitarbeiter hinzufügen",
32
+ "Add_a_creator": "Ersteller hinzufügen",
33
+ "Add_a_last_modifier": "Letzten Bearbeiter hinzufügen",
34
+ "Invalid_filter": "Ungültiger Filter",
35
+ "Search_column": "Spalte suchen",
36
+ "No_results": "Keine Ergebnisse",
37
+ "Select_option(s)": "Option(en) wählen",
38
+ "contains": "enthält",
39
+ "does_not_contain": "enthält nicht",
40
+ "is": "ist gleich",
41
+ "is_not": "ist ungleich",
42
+ "equal": "=",
43
+ "not_equal": "≠",
44
+ "less": "<",
45
+ "greater": ">",
46
+ "less_or_equal": "≤",
47
+ "greater_or_equal": "≥",
48
+ "is_empty": "ist leer",
49
+ "is_not_empty": "ist nicht leer",
50
+ "is_within": "ist innerhalb",
51
+ "is_before": "ist vor",
52
+ "is_after": "ist nach",
53
+ "is_on_or_before": "ist am oder vor",
54
+ "is_on_or_after": "ist am oder nach",
55
+ "has_any_of": "enthält einen von",
56
+ "has_all_of": "enthält alle",
57
+ "has_none_of": "enthält nicht",
58
+ "is_exactly": "ist genau",
59
+ "is_current_user_ID": "ist ID des angemeldeten Benutzers",
60
+ "Current_date": "Aktuelles Datum",
61
+ "Specific_date": "Bestimmtes Datum",
62
+ "x_days_before_current_date": "Tage vor dem aktuellen Datum",
63
+ "x_days_after_current_date": "Tage nach dem aktuellen Datum",
64
+ "is_any_of": "ist eine von",
65
+ "is_none_of": "ist nicht",
66
+ "include_me": "ist der aktuelle Benutzer",
67
+ "today": "Heute",
68
+ "tomorrow": "Morgen",
69
+ "yesterday": "Gestern",
70
+ "one_week_ago": "Vor einer Woche",
71
+ "one_week_from_now": "In einer Woche",
72
+ "one_month_ago": "Vor einem Monat",
73
+ "one_month_from_now": "In einem Monat",
74
+ "number_of_days_ago": "Tage vor Heute",
75
+ "number_of_days_from_now": "Tage von Heute",
76
+ "exact_date": "Exaktes Datum",
77
+ "the_past_week": "letzte Woche",
78
+ "the_past_month": "letzten Monat",
79
+ "the_past_year": "letztes Jahr",
80
+ "the_next_week": "In nächster Woche",
81
+ "the_next_month": "Im nächsten Monat",
82
+ "the_next_year": "Im nächsten Jahr",
83
+ "the_next_numbers_of_days": "Innerhalb der nächsten x Tage",
84
+ "the_past_numbers_of_days": "Innerhalb der letzten x Tage",
85
+ "this_week": "Diese Woche",
86
+ "this_month": "Diesen Monat",
87
+ "this_year": "Dieses Jahr",
88
+ "last_week": "letzte Woche",
89
+ "last_month": "letzten Monat",
90
+ "last_year": "letztes Jahr",
91
+ "URL_is_invalid": "Die URL ist ungültig.",
92
+ "Select_department": "Bereich auswählen",
93
+ "Default": "Einfach",
94
+ "Custom": "Benutzerdefiniert",
95
+ "Recently_used": "Recently used",
96
+ "Digital_signature": "Digitale Signatur",
97
+ "Please_sign_on_this_panel": "Auf dieser Fläche unterschreiben",
98
+ "Re-sign": "Erneut unterschreiben",
99
+ "Saving": "Speicherung ist im Gange ...",
100
+ "Save": "Speichern",
101
+ "All_files": "Alle Dateien",
102
+ "Add_files": "Dateien hinzufügen",
103
+ "Local_Files": "Lokale Dateien",
104
+ "Indexing": "Die Indexierung ist im Gang.",
105
+ "Network_Error": "Netzwerkfehler",
106
+ "Re_upload": "Erneuter Upload",
107
+ "Drag_and_drop_to_add_a_file": "Datei mit Drag & Drop einfügen",
108
+ "Drag_and_drop_files_or_click_here_to_add": "Dateien mit Drag & Drop einfügen oder hier klicken",
109
+ "Upload": "Hochladen",
110
+ "Select": "Auswählen",
111
+ "Download": "Download",
112
+ "Select_all": "Alle auswählen",
113
+ "1_file_selected": "1 ausgewählte Datei",
114
+ "Selected_xxx_files": "{{ count }} ausgewählte Dateien",
115
+ "xxx_existing_file": "{{ count }} Datei",
116
+ "xxx_existing_files": "{{ count }} Dateien",
117
+ "More_operations": "Weitere Aktionen",
118
+ "Rename": "Umbenennen",
119
+ "No_options": "Keine Optionen",
120
+ "Search_country": "Land suchen",
121
+ "Province/City/District_must_be_filled_in": "Bundesland/Stadt/Bezirk muss ausgefüllt werden.",
122
+ "Address_information": "Adresse",
123
+ "Select_province_city_district": "Bundesland, Stadt und Bezirk auswählen ",
124
+ "Detailed_address": "Adressdetails",
125
+ "Detailed_address_placeholder": "Geben Sie Ihre Adressdetails wie Straße, Hausnummer und Stadt ein.",
126
+ "Auto_recognition": "Autoerkennung",
127
+ "Try_pasting_addresses_such_as_provinces/cities/districts_roads_neighborhoods_etc_to_quickly_identify_the_address_information": "Fügen Sie Adressen wie Bundesländer/Städte/Bezirke, Straßen, Stadtteile, usw. ein, um die Adressinformationen schnell zu identifizieren ",
128
+ "Loading_geolocation_data": "Die Positionsdaten werden geladen.",
129
+ "Province/City_must_be_filled_in": "Bundesland/Stadt muss ausgefüllt werden.",
130
+ "Select_province_city": "Bundesland/Stadt auswählen ",
131
+ "Try_pasting_addresses_such_as_provinces/cities_information_to_quickly_identify_the_address_information": "Fügen Sie Adressen wie Bundesländer/Städte ein, um die Adressinformationen schnell zu identifizieren ",
132
+ "Search_province": "Provinz suchen",
133
+ "Select_location": "Auswählen",
134
+ "Positioning_failed": "Die Positionierung ist gescheitert.",
135
+ "Address": "Adresse",
136
+ "Enter_longitude_and_latitude": "Längengrad und Breitengrad eingeben",
137
+ "Enter_latitude_and_longitude": "Längen- und Breitengrad eingeben",
138
+ "The_map_plugin_is_not_properly_configured_contact_the_administrator": "Das Karten-Plugin ist nicht richtig konfiguriert. Kontaktieren Sie den Administrator.",
139
+ "Fill_in": "Ausfüllen",
140
+ "Search_failed_please_enter_detailed_address": "Die Suche ist fehlgeschlagen. Geben Sie die Adresse mit mehr Details ein.",
141
+ "This_map_type_currently_does_not_support_map_point_selection": "Dieser Kartentyp unterstützt derzeit nicht die Auswahl von Kartenpunkten.",
142
+ "Please_enter_the_address": "Adresse eingeben",
143
+ "Add_images": "Bilder hinzufügen",
144
+ "All_images": "Alle Bilder",
145
+ "Local_Images": "Lokale Bilder",
146
+ "Image_Link": "Bild-Link",
147
+ "Enter_a_URL": "URL eingeben",
148
+ "Please_enter_the_correct_image_address": "Geben Sie die korrekte Adresse des Bildes ein.",
149
+ "Drag_and_drop_to_add_an_image": "Bild mit Drag & Drop einfügen",
150
+ "Drag_and_drop_images_or_click_or_paste_here_to_add": "Bilder mit Drag & Drop einfügen oder hier klicken",
151
+ "Save_failed": "Die Speicherung ist fehlgeschlagen.",
152
+ "Permission_denied": "Sie haben keine ausreichende Berechtigung.",
153
+ "Error": "Fehler.",
154
+ "Please_check_the_network": "Überprüfen Sie die Netzwerkverbindung.",
155
+ "Close_expanded_record": "Erweiterten Eintrag schliessen",
156
+ "Unknown": "Unbekannt",
157
+ "Edit_signature": "Signatur bearbeiten",
158
+ "Edit_Location": "Ort bearbeiten",
159
+ "Long_text_exceed_limit_message": "Das Dokument hat eine Länge von mehr als 100.000 Zeichen und kann daher nicht gespeichert werden.",
160
+ "Long_text_exceed_limit_suggest": "Die Länge dieses Dokuments überschreitet das Maximum von 100.000 Zeichen. Nur 100.000 Zeichen werden gespeichert.",
161
+ "Deleted_option": "Die Option wurde gelöscht.",
162
+ "Input_does_not_meet_specifications": "Die Eingabe entspricht nicht der Vorgabe.",
163
+ "Mark_as_resolved": "Als erledigt markieren",
164
+ "No_comment_yet": "Es sind keine Kommentare vorhanden.",
165
+ "Add_comment": "Kommentar hinzufügen",
166
+ "Add_participants": "Teilnehmer hinzufügen"
167
+ }
@@ -0,0 +1,167 @@
1
+ {
2
+ "Add_an_option": "Add an option",
3
+ "Search_option": "Search option",
4
+ "No_options_available": "No options available",
5
+ "Current_option": "Current option",
6
+ "No_option": "No option",
7
+ "Choose_an_option": "Choose an option",
8
+ "Add_a_collaborator": "Add a collaborator",
9
+ "Search_collaborator": "Search collaborator",
10
+ "No_collaborators_available": "No collaborators available.",
11
+ "Done": "Done",
12
+ "Choose_a_collaborator": "Choose a collaborator",
13
+ "Please_input": "Please input",
14
+ "Please_select": "Please select",
15
+ "Clear": "Clear",
16
+ "Are_you_sure_you_want_to_delete_this_file": "Are you sure you want to delete this file?",
17
+ "Are_you_sure_you_want_to_delete_this_image": "Are you sure you want to delete this image?",
18
+ "Cancel": "Cancel",
19
+ "Delete": "Delete",
20
+ "Search_department": "Search department",
21
+ "No_departments_available": "No departments available",
22
+ "Current_user_department": "Current user's department",
23
+ "Current_user_department_and_sub": "Current user's department and sub-departments",
24
+ "Specific_departments": "Specific departments",
25
+ "Deleted_department": "Deleted department",
26
+ "View_original_image": "View original image",
27
+ "Add_filter": "Add filter",
28
+ "Submit": "Submit",
29
+ "No_filters": "No filters",
30
+ "Select_an_option": "Select an option",
31
+ "Add_collaborator": "Add collaborator",
32
+ "Add_a_creator": "Add a creator",
33
+ "Add_a_last_modifier": "Add a last modifier",
34
+ "Invalid_filter": "Invalid filter",
35
+ "Search_column": "Search column",
36
+ "No_results": "No results.",
37
+ "Select_option(s)": "Select option(s)",
38
+ "contains": "contains",
39
+ "does_not_contain": "does not contain",
40
+ "is": "is",
41
+ "is_not": "is not",
42
+ "equal": "=",
43
+ "not_equal": "≠",
44
+ "less": "<",
45
+ "greater": ">",
46
+ "less_or_equal": "≤",
47
+ "greater_or_equal": "≥",
48
+ "is_empty": "is empty",
49
+ "is_not_empty": "is not empty",
50
+ "is_within": "is within...",
51
+ "is_before": "is before...",
52
+ "is_after": "is after...",
53
+ "is_on_or_before": "is on or before...",
54
+ "is_on_or_after": "is on or after...",
55
+ "has_any_of": "has any of...",
56
+ "has_all_of": "has all of...",
57
+ "has_none_of": "has none of...",
58
+ "is_exactly": "is exactly...",
59
+ "is_current_user_ID": "is current user's ID",
60
+ "Current_date": "Current date",
61
+ "Specific_date": "Specific date",
62
+ "x_days_before_current_date": "X days before current date",
63
+ "x_days_after_current_date": "X days after current date",
64
+ "is_any_of": "is any of...",
65
+ "is_none_of": "is none of...",
66
+ "include_me": "include the current user",
67
+ "today": "today",
68
+ "tomorrow": "tomorrow",
69
+ "yesterday": "yesterday",
70
+ "one_week_ago": "one week ago",
71
+ "one_week_from_now": "one week from now",
72
+ "one_month_ago": "one month ago",
73
+ "one_month_from_now": "one month from now",
74
+ "number_of_days_ago": "number of days ago",
75
+ "number_of_days_from_now": "number of days from now",
76
+ "exact_date": "exact date",
77
+ "the_past_week": "last week",
78
+ "the_past_month": "last month",
79
+ "the_past_year": "last year",
80
+ "the_next_week": "the next week",
81
+ "the_next_month": "the next month",
82
+ "the_next_year": "the next year",
83
+ "the_next_numbers_of_days": "the next numbers of days...",
84
+ "the_past_numbers_of_days": "the past numbers of days...",
85
+ "this_week": "this week",
86
+ "this_month": "this month",
87
+ "this_year": "this year",
88
+ "last_week": "last week",
89
+ "last_month": "last month",
90
+ "last_year": "last year",
91
+ "URL_is_invalid": "URL is invalid",
92
+ "Select_department": "Select department",
93
+ "Default": "Default",
94
+ "Custom": "Custom",
95
+ "Recently_used": "Recently used",
96
+ "Digital_signature": "Digital signature",
97
+ "Please_sign_on_this_panel": "Please sign on this panel",
98
+ "Re-sign": "Re-sign",
99
+ "Saving": "Saving...",
100
+ "Save": "Save",
101
+ "All_files": "All files",
102
+ "Add_files": "Add files",
103
+ "Local_Files": "Local files",
104
+ "Indexing": "Indexing...",
105
+ "Network_Error": "Network error",
106
+ "Re_upload": "Re-upload",
107
+ "Drag_and_drop_to_add_a_file": "Drag and drop to add a file",
108
+ "Drag_and_drop_files_or_click_here_to_add": "Drag and drop files or click here to add",
109
+ "Upload": "Upload",
110
+ "Select": "Select",
111
+ "Download": "Download",
112
+ "Select_all": "Select all",
113
+ "1_file_selected": "1 file selected",
114
+ "Selected_xxx_files": "{{ count }} files selected",
115
+ "xxx_existing_file": "{{ count }} file",
116
+ "xxx_existing_files": "{{ count }} files",
117
+ "More_operations": "More operations",
118
+ "Rename": "Rename",
119
+ "No_options": "No options",
120
+ "Search_country": "Search country",
121
+ "Province/City/District_must_be_filled_in": "Province/City/District must be filled in.",
122
+ "Address_information": "Address information",
123
+ "Select_province_city_district": "Select province / city / district",
124
+ "Detailed_address": "Detailed address",
125
+ "Detailed_address_placeholder": "Enter the detailed address, such as road, house number, community",
126
+ "Auto_recognition": "Auto recognition",
127
+ "Try_pasting_addresses_such_as_provinces/cities/districts_roads_neighborhoods_etc_to_quickly_identify_the_address_information": "Try pasting addresses, such as provinces/cities/districts, roads, neighborhoods, etc., to quickly identify the address information ",
128
+ "Loading_geolocation_data": "Loading geolocation data",
129
+ "Province/City_must_be_filled_in": "Province/City must be filled in.",
130
+ "Select_province_city": "Select province / city",
131
+ "Try_pasting_addresses_such_as_provinces/cities_information_to_quickly_identify_the_address_information": "Try pasting addresses, such as provinces/cities information, to quickly identify the address information",
132
+ "Search_province": "Search province",
133
+ "Select_location": "Select",
134
+ "Positioning_failed": "Positioning failed",
135
+ "Address": "Address",
136
+ "Enter_longitude_and_latitude": "Enter longitude and latitude",
137
+ "Enter_latitude_and_longitude": "Enter latitude and longitude",
138
+ "The_map_plugin_is_not_properly_configured_contact_the_administrator": "The map plugin is not properly configured. Contact the administrator.",
139
+ "Fill_in": "Fill in",
140
+ "Search_failed_please_enter_detailed_address": "Search failed, please enter detailed address",
141
+ "This_map_type_currently_does_not_support_map_point_selection": "This map type currently does not support map point selection",
142
+ "Please_enter_the_address": "Please enter the address",
143
+ "Add_images": "Add images",
144
+ "All_images": "All images",
145
+ "Local_Images": "Local images",
146
+ "Image_Link": "Image link",
147
+ "Enter_a_URL": "Enter a URL",
148
+ "Please_enter_the_correct_image_address": "Please enter the correct image address.",
149
+ "Drag_and_drop_to_add_an_image": "Drag and drop to add an image",
150
+ "Drag_and_drop_images_or_click_or_paste_here_to_add": "Drag and drop images or click or paste here to add",
151
+ "Save_failed": "Save failed",
152
+ "Permission_denied": "Permission denied.",
153
+ "Error": "Error.",
154
+ "Please_check_the_network": "Please check the network.",
155
+ "Close_expanded_record": "Close expanded record",
156
+ "Unknown": "Unknown",
157
+ "Edit_signature": "Edit signature",
158
+ "Edit_Location": "Edit location",
159
+ "Long_text_exceed_limit_message": "The content of the document has exceeded the limit of 100000 characters, and the content cannot be saved",
160
+ "Long_text_exceed_limit_suggest": "The content of the document has exceeded the limit of 100000 characters, and only the first 100000 characters are saved",
161
+ "Deleted_option": "deleted option",
162
+ "Input_does_not_meet_specifications": "Input does not meet specifications",
163
+ "Mark_as_resolved": "Mark as resolved",
164
+ "No_comment_yet": "No comment yet",
165
+ "Add_comment": "Add comment",
166
+ "Add_participants": "Add participants"
167
+ }