en-US.umd.js 11 KB

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