en-US.umd.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. (function (global, factory) {
  2. if (typeof define === "function" && define.amd) {
  3. define("vxe-table-lang.en-US", ["exports"], factory);
  4. } else if (typeof exports !== "undefined") {
  5. factory(exports);
  6. } else {
  7. var mod = {
  8. exports: {}
  9. };
  10. factory(mod.exports);
  11. global.vxeTableLangEnUS = mod.exports;
  12. }
  13. })(typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : this, function (_exports) {
  14. "use strict";
  15. Object.defineProperty(_exports, "__esModule", {
  16. value: true
  17. });
  18. _exports.default = void 0;
  19. var _default = {
  20. vxe: {
  21. error: {
  22. groupFixed: 'If you use group headers, the fixed columns must be set by group.',
  23. groupMouseRange: 'Grouping headers and "{0}" cannot be used at the same time, which may cause errors.',
  24. groupTag: 'Grouping column header should use "{0}" instead of "{1}", which may cause errors.',
  25. scrollErrProp: 'The parameter "{0}" is not supported when virtual scrolling is enabled.',
  26. scrollXNotGroup: 'Horizontal virtual scrolling does not support grouping headers. You need to set the parameter "scroll-x.enabled=false", otherwise, errors may occur.',
  27. errConflicts: 'Argument "{0}" conflicts with "{1}"',
  28. unableInsert: 'Unable to insert to the specified location.',
  29. useErr: 'Error installing "{0}" module, possibly in the wrong order, dependent modules need to be installed before Table.',
  30. barUnableLink: 'Toolbar cannot associate table.',
  31. expandContent: 'Expand row slot should be "content", please check if it is correct.',
  32. reqModule: 'require "{0}" module.',
  33. reqProp: 'Missing the necessary "{0}" parameter, which can cause error.',
  34. emptyProp: 'The property "{0}" is not allowed to be empty.',
  35. errProp: 'Unsupported parameter "{0}", possibly "{1}".',
  36. colRepet: 'column.{0}="{0}" is duplicated, which may make some features unusable',
  37. notFunc: 'method "{0}" not exist.',
  38. notSlot: 'slot "{0}" does not exist',
  39. noTree: 'The tree structure does not support "{0}".',
  40. notProp: 'Unsupported parameters "{0}"',
  41. coverProp: 'The parameter "{1}" to "{0}" is overwritten. This may cause an error',
  42. delFunc: 'The function "{0}" is deprecated, please use "{1}".',
  43. delProp: 'The property "{0}" is deprecated, please use "{1}".',
  44. delEvent: 'The event "{0}" is deprecated, please use "{1}"',
  45. removeProp: 'The property "{0}" is deprecated and is not recommended, which may cause error.',
  46. errFormat: 'The global formatted content should be defined with "VXETable.formats". Mounting "formatter={0}" is not recommended.',
  47. notType: 'Unsupported file types "{0}"',
  48. notExp: 'The browser does not support import / export.',
  49. impFields: 'Import failed, please check that the field name and data format are correct.',
  50. treeNotImp: 'Tree table does not support import.'
  51. },
  52. renderer: {
  53. search: 'Search',
  54. cases: {
  55. equal: 'Equal',
  56. unequal: 'Not equal',
  57. gt: 'Greater than',
  58. ge: 'Greater than or equal',
  59. lt: 'Less than',
  60. le: 'Less than or equal',
  61. begin: 'Beginning is',
  62. notbegin: 'Beginning is not',
  63. endin: 'End is',
  64. notendin: 'End is not',
  65. include: 'Include',
  66. exclude: 'Exclusive',
  67. between: 'Betweenness',
  68. custom: 'Custom filter',
  69. insensitive: 'Case insensitive',
  70. isSensitive: 'Case sensitive'
  71. },
  72. combination: {
  73. menus: {
  74. sortAsc: 'Ascending order',
  75. sortDesc: 'Descending order',
  76. fixedColumn: 'Fixed column',
  77. fixedGroup: 'Fixed group',
  78. cancelFixed: 'Clear fixed',
  79. fixedLeft: 'Fixed the left',
  80. fixedRight: 'Fixed the right',
  81. clearFilter: 'Clear filter',
  82. textOption: 'Text filter',
  83. numberOption: 'Number filter'
  84. },
  85. popup: {
  86. title: 'Custom filtering',
  87. currColumnTitle: 'Current column:',
  88. and: 'And',
  89. or: 'Or',
  90. describeHtml: 'Use ? To represent a single character <br/> use * to represent any number of characters'
  91. },
  92. empty: '(Empty)',
  93. notData: 'No data'
  94. }
  95. },
  96. pro: {
  97. area: {
  98. mergeErr: 'The operation cannot be performed on merged cells',
  99. multiErr: 'The operation cannot be performed on multiple selection areas',
  100. extendErr: 'If the extended area contains merged cells, all merged cells need to be the same size'
  101. },
  102. fnr: {
  103. title: 'Find and replace',
  104. findLabel: 'Find',
  105. replaceLabel: 'Replace',
  106. findTitle: 'What to find:',
  107. replaceTitle: 'Replace with:',
  108. tabs: {
  109. find: 'Find',
  110. replace: 'Replace'
  111. },
  112. filter: {
  113. re: 'Regular Expression',
  114. whole: 'Whole word',
  115. sensitive: 'Case sensitive'
  116. },
  117. btns: {
  118. findNext: 'Find next',
  119. findAll: 'Find all',
  120. replace: 'Replace',
  121. replaceAll: 'Replace all',
  122. cancel: 'Cancel'
  123. },
  124. header: {
  125. seq: '#',
  126. cell: 'Cell',
  127. value: 'Value'
  128. },
  129. empty: '(Empty)',
  130. reError: 'Invalid regular expression',
  131. recordCount: 'Found {0} cells',
  132. notCell: 'No matching cells were found',
  133. replaceSuccess: 'Successfully replaced {0} cells'
  134. }
  135. },
  136. table: {
  137. emptyText: 'No Data',
  138. allTitle: 'Select all / cancel',
  139. seqTitle: '#',
  140. confirmFilter: 'Confirm',
  141. resetFilter: 'Reset',
  142. allFilter: 'All',
  143. sortAsc: 'Ascending: lowest to highest',
  144. sortDesc: 'Descending: highest to lowest',
  145. filter: 'Enable filtering on selected columns',
  146. impSuccess: 'Successfully imported {0} records',
  147. expLoading: 'Exporting',
  148. expSuccess: 'Export success',
  149. expFilename: 'Export_{0}',
  150. expOriginFilename: 'Export_original_{0}',
  151. customTitle: 'Column settings',
  152. customAll: 'All',
  153. customConfirm: 'Confirm',
  154. customRestore: 'Restore'
  155. },
  156. grid: {
  157. selectOneRecord: 'Please choose at least one piece of record!',
  158. deleteSelectRecord: 'Are you sure you want to delete the selected record?',
  159. removeSelectRecord: 'Are you sure you want to remove the selected record?',
  160. dataUnchanged: 'Data unchanged! ',
  161. delSuccess: 'Successfully deleted the selected record!',
  162. saveSuccess: 'Saved successfully!',
  163. operError: 'Error occurred, operation failed!'
  164. },
  165. select: {
  166. emptyText: 'No Data'
  167. },
  168. pager: {
  169. goto: 'Go to',
  170. pagesize: '{0}/page',
  171. total: 'Total {0} record',
  172. pageClassifier: '',
  173. prevPage: 'Previous page',
  174. nextPage: 'next page',
  175. prevJump: 'Jump previous page',
  176. nextJump: 'Jump next page'
  177. },
  178. alert: {
  179. title: 'Message notification'
  180. },
  181. button: {
  182. confirm: 'Confirm',
  183. cancel: 'Cancel'
  184. },
  185. import: {
  186. modes: {
  187. covering: 'Covering',
  188. insert: 'Insert'
  189. },
  190. impTitle: 'Import data',
  191. impFile: 'Filename',
  192. impSelect: 'Select file',
  193. impType: 'File type',
  194. impOpts: 'Settings',
  195. impConfirm: 'Import',
  196. impCancel: 'Cancel'
  197. },
  198. export: {
  199. types: {
  200. csv: 'CSV (Comma separated) (*.csv)',
  201. html: 'Web Page (*.html)',
  202. xml: 'XML Data(*.xml)',
  203. txt: 'Text (Tab delimited) (*.txt)',
  204. xls: 'Excel 97-2003 Workbook(*.xls)',
  205. xlsx: 'Excel Workbook (*.xlsx)',
  206. pdf: 'PDF (*.pdf)'
  207. },
  208. modes: {
  209. current: 'Current data (data of current page)',
  210. selected: 'Selected data (data selected on the current page)',
  211. all: 'Full data (including all paging data)'
  212. },
  213. printTitle: 'Print data',
  214. expTitle: 'Export data',
  215. expName: 'Filename',
  216. expNamePlaceholder: 'Please enter filename',
  217. expSheetName: 'Title',
  218. expSheetNamePlaceholder: 'Please enter a title',
  219. expType: 'Save the type',
  220. expMode: 'Select data',
  221. expCurrentColumn: 'All the field',
  222. expColumn: 'Select field',
  223. expOpts: 'Settings',
  224. expOptHeader: 'Header',
  225. expHeaderTitle: 'Do I need a header',
  226. expOptFooter: 'Footer',
  227. expFooterTitle: 'Do you need the footer table',
  228. expOptColgroup: 'Group header',
  229. expColgroupTitle: 'If it exists, headers with grouping structure are supported',
  230. expOptMerge: 'Merge',
  231. expMergeTitle: 'If it exists, cells with merged structures are supported',
  232. expOptAllExpand: 'Expand nodes',
  233. expAllExpandTitle: 'If it exists, all data with tree structure can be expanded',
  234. expOptUseStyle: 'Styles',
  235. expUseStyleTitle: 'If it exists, cells with styles are supported',
  236. expOptOriginal: 'Source data',
  237. expOriginalTitle: 'If it is source data, import into the table is supported',
  238. expPrint: 'Print',
  239. expConfirm: 'Export',
  240. expCancel: 'Cancel'
  241. },
  242. modal: {
  243. zoomIn: 'Maximization',
  244. zoomOut: 'Reduction',
  245. close: 'Close'
  246. },
  247. form: {
  248. folding: 'Folding',
  249. unfolding: 'Unfolding'
  250. },
  251. toolbar: {
  252. import: 'Import',
  253. export: 'Export',
  254. print: 'Printing',
  255. refresh: 'Refresh',
  256. zoomIn: 'Full screen',
  257. zoomOut: 'Reduction',
  258. custom: 'Column settings',
  259. customAll: 'All',
  260. customConfirm: 'Confirm',
  261. customRestore: 'Restore'
  262. },
  263. input: {
  264. date: {
  265. m1: 'January',
  266. m2: 'February',
  267. m3: 'March',
  268. m4: 'April',
  269. m5: 'May',
  270. m6: 'June',
  271. m7: 'July',
  272. m8: 'August',
  273. m9: 'September',
  274. m10: 'October',
  275. m11: 'November',
  276. m12: 'December',
  277. monthLabel: '{0}',
  278. dayLabel: '{1} {0}',
  279. labelFormat: {
  280. date: 'dd/MM/yyyy',
  281. time: 'HH:mm:ss',
  282. datetime: 'yyyy-MM-dd HH:mm:ss',
  283. week: '[Week] WW, yyyy',
  284. month: 'MM/yyyy',
  285. year: 'yyyy'
  286. },
  287. weeks: {
  288. w: 'Week',
  289. w0: 'Sun',
  290. w1: 'Mon',
  291. w2: 'Tue',
  292. w3: 'Wed',
  293. w4: 'Thu',
  294. w5: 'Fri',
  295. w6: 'Sat'
  296. },
  297. months: {
  298. m0: 'Jan',
  299. m1: 'Feb',
  300. m2: 'Mar',
  301. m3: 'Apr',
  302. m4: 'May',
  303. m5: 'Jun',
  304. m6: 'Jul',
  305. m7: 'Aug',
  306. m8: 'Sep',
  307. m9: 'Oct',
  308. m10: 'Nov',
  309. m11: 'Dec'
  310. }
  311. }
  312. }
  313. }
  314. };
  315. _exports.default = _default;
  316. });