yh-i18n 2.2.7 → 2.2.8

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.
package/index.js CHANGED
@@ -11,8 +11,8 @@ import thBase from "./lang/baseTh.js";
11
11
  import viBase from "./lang/baseVi.js";
12
12
  import trBase from "./lang/baseTr.js";
13
13
  // vxe table
14
- import zhCNVXETable from "vxe-table/lib/locale/lang/zh-CN";
15
- import enUSVXETable from "vxe-table/lib/locale/lang/en-US";
14
+ import zhCNVXETable from "/lang/zh.js";
15
+ import enUSVXETable from "/lang/en.js";
16
16
  import thVXETable from "./lang/th.js";
17
17
  import viVXETable from "./lang/vi.js";
18
18
  import trVXETable from "./lang/tr.js";
package/lang/en.js ADDED
@@ -0,0 +1,310 @@
1
+ export default {
2
+ vxe: {
3
+ loading: {
4
+ text: "Loading...",
5
+ },
6
+ error: {
7
+ groupFixed: "If you use group headers, the fixed columns must be set by group.",
8
+ groupMouseRange: 'Grouping headers and "{0}" cannot be used at the same time, which may cause errors.',
9
+ groupTag: 'Grouping column header should use "{0}" instead of "{1}", which may cause errors.',
10
+ scrollErrProp: 'The parameter "{0}" is not supported when virtual scrolling is enabled.',
11
+ errConflicts: 'Argument "{0}" conflicts with "{1}"',
12
+ unableInsert: "Unable to insert to the specified location.",
13
+ useErr: 'Error installing "{0}" module, possibly in the wrong order, dependent modules need to be installed before Table.',
14
+ barUnableLink: "Toolbar cannot associate table.",
15
+ expandContent: 'Expand row slot should be "content", please check if it is correct.',
16
+ reqModule: 'require "{0}" module.',
17
+ reqProp: 'Missing the necessary "{0}" parameter, which can cause error.',
18
+ emptyProp: 'The property "{0}" is not allowed to be empty.',
19
+ errProp: 'Unsupported parameter "{0}", possibly "{1}".',
20
+ colRepet: 'column.{0}="{0}" is duplicated, which may make some features unusable',
21
+ notFunc: 'method "{0}" not exist.',
22
+ notSlot: 'slot "{0}" does not exist',
23
+ noTree: 'The tree structure does not support "{0}".',
24
+ notProp: 'Unsupported parameters "{0}"',
25
+ coverProp: 'The parameter "{1}" to "{0}" is overwritten. This may cause an error',
26
+ delFunc: 'The function "{0}" is deprecated, please use "{1}".',
27
+ delProp: 'The property "{0}" is deprecated, please use "{1}".',
28
+ delEvent: 'The event "{0}" is deprecated, please use "{1}"',
29
+ removeProp: 'The property "{0}" is deprecated and is not recommended, which may cause error.',
30
+ errFormat: 'The global formatted content should be defined with "VXETable.formats". Mounting "formatter={0}" is not recommended.',
31
+ notType: 'Unsupported file types "{0}"',
32
+ notExp: "The browser does not support import / export.",
33
+ impFields: "Import failed, please check that the field name and data format are correct.",
34
+ treeNotImp: "Tree table does not support import.",
35
+ },
36
+ renderer: {
37
+ search: "Search",
38
+ cases: {
39
+ equal: "Equal",
40
+ unequal: "Not equal",
41
+ gt: "Greater than",
42
+ ge: "Greater than or equal",
43
+ lt: "Less than",
44
+ le: "Less than or equal",
45
+ begin: "Beginning is",
46
+ notbegin: "Beginning is not",
47
+ endin: "End is",
48
+ notendin: "End is not",
49
+ include: "Include",
50
+ exclude: "Exclusive",
51
+ between: "Betweenness",
52
+ custom: "Custom filter",
53
+ insensitive: "Case insensitive",
54
+ isSensitive: "Case sensitive",
55
+ },
56
+ combination: {
57
+ menus: {
58
+ clearSort: "Clear sort",
59
+ sortAsc: "Ascending order",
60
+ sortDesc: "Descending order",
61
+ fixedColumn: "Fixed column",
62
+ fixedGroup: "Fixed group",
63
+ cancelFixed: "Clear fixed",
64
+ fixedLeft: "Fixed the left",
65
+ fixedRight: "Fixed the right",
66
+ clearFilter: "Clear filter",
67
+ textOption: "Text filter",
68
+ numberOption: "Number filter",
69
+ },
70
+ popup: {
71
+ title: "Custom filtering",
72
+ currColumnTitle: "Current column:",
73
+ and: "And",
74
+ or: "Or",
75
+ describeHtml: "Use ? To represent a single character <br/> use * to represent any number of characters",
76
+ },
77
+ empty: "(Empty)",
78
+ notData: "No data",
79
+ },
80
+ },
81
+ pro: {
82
+ area: {
83
+ mergeErr: "The operation cannot be performed on merged cells",
84
+ multiErr: "The operation cannot be performed on multiple selection areas",
85
+ extendErr: "If the extended area contains merged cells, all merged cells need to be the same size",
86
+ pasteMultiErr: "Cannot paste, copied area and pasted area of the same size are required to perform this operation",
87
+ },
88
+ fnr: {
89
+ title: "Find and replace",
90
+ findLabel: "Find",
91
+ replaceLabel: "Replace",
92
+ findTitle: "What to find:",
93
+ replaceTitle: "Replace with:",
94
+ tabs: {
95
+ find: "Find",
96
+ replace: "Replace",
97
+ },
98
+ filter: {
99
+ re: "Regular Expression",
100
+ whole: "Whole word",
101
+ sensitive: "Case sensitive",
102
+ },
103
+ btns: {
104
+ findNext: "Find next",
105
+ findAll: "Find all",
106
+ replace: "Replace",
107
+ replaceAll: "Replace all",
108
+ cancel: "Cancel",
109
+ },
110
+ header: {
111
+ seq: "#",
112
+ cell: "Cell",
113
+ value: "Value",
114
+ },
115
+ empty: "(Empty)",
116
+ reError: "Invalid regular expression",
117
+ recordCount: "Found {0} cells",
118
+ notCell: "No matching cells were found",
119
+ replaceSuccess: "Successfully replaced {0} cells",
120
+ },
121
+ },
122
+ table: {
123
+ emptyText: "No Data",
124
+ allTitle: "Select all / cancel",
125
+ seqTitle: "#",
126
+ confirmFilter: "Confirm",
127
+ resetFilter: "Reset",
128
+ allFilter: "All",
129
+ sortAsc: "Ascending: lowest to highest",
130
+ sortDesc: "Descending: highest to lowest",
131
+ filter: "Enable filtering on selected columns",
132
+ impSuccess: "Successfully imported {0} records",
133
+ expLoading: "Exporting",
134
+ expSuccess: "Export success",
135
+ expFilename: "Export_{0}",
136
+ expOriginFilename: "Export_original_{0}",
137
+ customTitle: "Column settings",
138
+ customAll: "All",
139
+ customConfirm: "Confirm",
140
+ customRestore: "Restore",
141
+ },
142
+ grid: {
143
+ selectOneRecord: "Please choose at least one piece of record!",
144
+ deleteSelectRecord: "Are you sure you want to delete the selected record?",
145
+ removeSelectRecord: "Are you sure you want to remove the selected record?",
146
+ dataUnchanged: "Data unchanged! ",
147
+ delSuccess: "Successfully deleted the selected record!",
148
+ saveSuccess: "Saved successfully!",
149
+ operError: "Error occurred, operation failed!",
150
+ },
151
+ select: {
152
+ search: "Search",
153
+ loadingText: "Loading",
154
+ emptyText: "No Data",
155
+ },
156
+ pager: {
157
+ goto: "Go to",
158
+ pagesize: "{0}/page",
159
+ total: "Total {0} record",
160
+ pageClassifier: "",
161
+ prevPage: "Previous page",
162
+ nextPage: "next page",
163
+ prevJump: "Jump previous page",
164
+ nextJump: "Jump next page",
165
+ },
166
+ alert: {
167
+ title: "Message notification",
168
+ },
169
+ button: {
170
+ confirm: "Confirm",
171
+ cancel: "Cancel",
172
+ },
173
+ import: {
174
+ modes: {
175
+ covering: "Covering",
176
+ insert: "Insert",
177
+ },
178
+ impTitle: "Import data",
179
+ impFile: "Filename",
180
+ impSelect: "Select file",
181
+ impType: "File type",
182
+ impOpts: "Settings",
183
+ impConfirm: "Import",
184
+ impCancel: "Cancel",
185
+ },
186
+ export: {
187
+ types: {
188
+ csv: "CSV (Comma separated) (*.csv)",
189
+ html: "Web Page (*.html)",
190
+ xml: "XML Data(*.xml)",
191
+ txt: "Text (Tab delimited) (*.txt)",
192
+ xls: "Excel 97-2003 Workbook(*.xls)",
193
+ xlsx: "Excel Workbook (*.xlsx)",
194
+ pdf: "PDF (*.pdf)",
195
+ },
196
+ modes: {
197
+ current: "Current data (data of current page)",
198
+ selected: "Selected data (data selected on the current page)",
199
+ all: "Full data (including all paging data)",
200
+ },
201
+ printTitle: "Print data",
202
+ expTitle: "Export data",
203
+ expName: "Filename",
204
+ expNamePlaceholder: "Please enter filename",
205
+ expSheetName: "Title",
206
+ expSheetNamePlaceholder: "Please enter a title",
207
+ expType: "Save the type",
208
+ expMode: "Select data",
209
+ expCurrentColumn: "All the field",
210
+ expColumn: "Select field",
211
+ expOpts: "Settings",
212
+ expOptHeader: "Header",
213
+ expHeaderTitle: "Do I need a header",
214
+ expOptFooter: "Footer",
215
+ expFooterTitle: "Do you need the footer table",
216
+ expOptColgroup: "Group header",
217
+ expColgroupTitle: "If it exists, headers with grouping structure are supported",
218
+ expOptMerge: "Merge",
219
+ expMergeTitle: "If it exists, cells with merged structures are supported",
220
+ expOptAllExpand: "Expand nodes",
221
+ expAllExpandTitle: "If it exists, all data with tree structure can be expanded",
222
+ expOptUseStyle: "Styles",
223
+ expUseStyleTitle: "If it exists, cells with styles are supported",
224
+ expOptOriginal: "Source data",
225
+ expOriginalTitle: "If it is source data, import into the table is supported",
226
+ expPrint: "Print",
227
+ expConfirm: "Export",
228
+ expCancel: "Cancel",
229
+ },
230
+ modal: {
231
+ zoomIn: "Maximization",
232
+ zoomOut: "Reduction",
233
+ close: "Close",
234
+ },
235
+ form: {
236
+ folding: "Folding",
237
+ unfolding: "Unfolding",
238
+ },
239
+ toolbar: {
240
+ import: "Import",
241
+ export: "Export",
242
+ print: "Printing",
243
+ refresh: "Refresh",
244
+ zoomIn: "Full screen",
245
+ zoomOut: "Reduction",
246
+ custom: "Column settings",
247
+ customAll: "All",
248
+ customConfirm: "Confirm",
249
+ customRestore: "Restore",
250
+ },
251
+ input: {
252
+ date: {
253
+ m1: "January",
254
+ m2: "February",
255
+ m3: "March",
256
+ m4: "April",
257
+ m5: "May",
258
+ m6: "June",
259
+ m7: "July",
260
+ m8: "August",
261
+ m9: "September",
262
+ m10: "October",
263
+ m11: "November",
264
+ m12: "December",
265
+ quarterLabel: "{0}",
266
+ monthLabel: "{0}",
267
+ dayLabel: "{1} {0}",
268
+ labelFormat: {
269
+ date: "dd/MM/yyyy",
270
+ time: "HH:mm:ss",
271
+ datetime: "yyyy-MM-dd HH:mm:ss",
272
+ week: "[Week] WW, yyyy",
273
+ month: "MM/yyyy",
274
+ quarter: "[Quarter] q, yyyy",
275
+ year: "yyyy",
276
+ },
277
+ weeks: {
278
+ w: "Week",
279
+ w0: "Sun",
280
+ w1: "Mon",
281
+ w2: "Tue",
282
+ w3: "Wed",
283
+ w4: "Thu",
284
+ w5: "Fri",
285
+ w6: "Sat",
286
+ },
287
+ months: {
288
+ m0: "Jan",
289
+ m1: "Feb",
290
+ m2: "Mar",
291
+ m3: "Apr",
292
+ m4: "May",
293
+ m5: "Jun",
294
+ m6: "Jul",
295
+ m7: "Aug",
296
+ m8: "Sep",
297
+ m9: "Oct",
298
+ m10: "Nov",
299
+ m11: "Dec",
300
+ },
301
+ quarters: {
302
+ q1: "First quarter",
303
+ q2: "Second quarter",
304
+ q3: "Third quarter",
305
+ q4: "Fourth quarter",
306
+ },
307
+ },
308
+ },
309
+ },
310
+ };
package/lang/zh.js ADDED
@@ -0,0 +1,310 @@
1
+ export default {
2
+ vxe: {
3
+ loading: {
4
+ text: "加载中...",
5
+ },
6
+ error: {
7
+ groupFixed: "如果使用分组表头,固定列必须按组设置",
8
+ groupMouseRange: '分组表头与 "{0}" 不能同时使用,这可能会出现错误',
9
+ groupTag: '分组列头应该使用 "{0}" 而不是 "{1}",这可能会出现错误',
10
+ scrollErrProp: '启用虚拟滚动后不支持该参数 "{0}"',
11
+ errConflicts: '参数 "{0}" 与 "{1}" 有冲突',
12
+ unableInsert: "无法插入到指定位置,请检查参数是否正确",
13
+ useErr: '安装 "{0}" 模块时发生错误,可能顺序不正确,依赖的模块需要在 Table 之前安装',
14
+ barUnableLink: "工具栏无法关联表格",
15
+ expandContent: '展开行的插槽应该是 "content",请检查是否正确',
16
+ reqModule: '缺少 "{0}" 模块',
17
+ reqProp: '缺少必要的 "{0}" 参数,这可能会导致出现错误',
18
+ emptyProp: '参数 "{0}" 不允许为空',
19
+ errProp: '不支持的参数 "{0}",可能为 "{1}"',
20
+ colRepet: 'column.{0}="{1}" 重复了,这可能会导致某些功能无法使用',
21
+ notFunc: '方法 "{0}" 不存在',
22
+ notSlot: '插槽 "{0}" 不存在',
23
+ noTree: '树结构不支持 "{0}"',
24
+ notProp: '不支持的参数 "{0}"',
25
+ coverProp: '"{0}" 的参数 "{1}" 被覆盖,这可能会出现错误',
26
+ delFunc: '方法 "{0}" 已废弃,请使用 "{1}"',
27
+ delProp: '参数 "{0}" 已废弃,请使用 "{1}"',
28
+ delEvent: '事件 "{0}" 已废弃,请使用 "{1}"',
29
+ removeProp: '参数 "{0}" 已废弃,不建议使用,这可能会导致出现错误',
30
+ errFormat: '全局的格式化内容应该使用 "VXETable.formats" 定义,挂载 "formatter={0}" 的方式已不建议使用',
31
+ notType: '不支持的文件类型 "{0}"',
32
+ notExp: "该浏览器不支持导入/导出功能",
33
+ impFields: "导入失败,请检查字段名和数据格式是否正确",
34
+ treeNotImp: "树表格不支持导入",
35
+ },
36
+ renderer: {
37
+ search: "搜索",
38
+ cases: {
39
+ equal: "等于",
40
+ unequal: "不等于",
41
+ gt: "大于",
42
+ ge: "大于或等于",
43
+ lt: "小于",
44
+ le: "小于或等于",
45
+ begin: "开头是",
46
+ notbegin: "开头不是",
47
+ endin: "结尾是",
48
+ notendin: "结尾不是",
49
+ include: "包含",
50
+ exclude: "不包含",
51
+ between: "介于",
52
+ custom: "自定义筛选",
53
+ insensitive: "不区分大小写",
54
+ isSensitive: "区分大小写",
55
+ },
56
+ combination: {
57
+ menus: {
58
+ clearSort: "清除排序",
59
+ sortAsc: "升序",
60
+ sortDesc: "降序",
61
+ fixedColumn: "锁定列",
62
+ fixedGroup: "锁定组",
63
+ cancelFixed: "取消锁定",
64
+ fixedLeft: "锁定左侧",
65
+ fixedRight: "锁定右侧",
66
+ clearFilter: "清除筛选",
67
+ textOption: "文本筛选",
68
+ numberOption: "数值筛选",
69
+ },
70
+ popup: {
71
+ title: "自定义筛选的方式",
72
+ currColumnTitle: "当前列:",
73
+ and: "与",
74
+ or: "或",
75
+ describeHtml: "可用 ? 代表单个字符<br/>用 * 代表任意多个字符",
76
+ },
77
+ empty: "(空白)",
78
+ notData: "无匹配项",
79
+ },
80
+ },
81
+ pro: {
82
+ area: {
83
+ mergeErr: "无法对合并单元格进行该操作",
84
+ multiErr: "无法对多重选择区域进行该操作",
85
+ extendErr: "如果延伸的区域包含被合并的单元格,所有合并的单元格需大小相同",
86
+ pasteMultiErr: "无法粘贴,需要相同大小的复制的区域和粘贴的区域才能执行此操作",
87
+ },
88
+ fnr: {
89
+ title: "查找和替换",
90
+ findLabel: "查找",
91
+ replaceLabel: "替换",
92
+ findTitle: "查找内容:",
93
+ replaceTitle: "替换为:",
94
+ tabs: {
95
+ find: "查找",
96
+ replace: "替换",
97
+ },
98
+ filter: {
99
+ re: "正则表达式",
100
+ whole: "全词匹配",
101
+ sensitive: "区分大小写",
102
+ },
103
+ btns: {
104
+ findNext: "查找下一个",
105
+ findAll: "查找全部",
106
+ replace: "替换",
107
+ replaceAll: "替换全部",
108
+ cancel: "取消",
109
+ },
110
+ header: {
111
+ seq: "#",
112
+ cell: "单元格",
113
+ value: "值",
114
+ },
115
+ empty: "(空值)",
116
+ reError: "无效的正则表达式",
117
+ recordCount: "已找到 {0} 个单元格",
118
+ notCell: "找不到匹配的单元格",
119
+ replaceSuccess: "成功替换 {0} 个单元格",
120
+ },
121
+ },
122
+ table: {
123
+ emptyText: "暂无数据",
124
+ allTitle: "全选/取消",
125
+ seqTitle: "#",
126
+ confirmFilter: "筛选",
127
+ resetFilter: "重置",
128
+ allFilter: "全部",
129
+ sortAsc: "升序:最低到最高",
130
+ sortDesc: "降序:最高到最低",
131
+ filter: "对所选的列启用筛选",
132
+ impSuccess: "成功导入 {0} 条记录",
133
+ expLoading: "正在导出中",
134
+ expSuccess: "导出成功",
135
+ expFilename: "导出_{0}",
136
+ expOriginFilename: "导出_源_{0}",
137
+ customTitle: "列设置",
138
+ customAll: "全部",
139
+ customConfirm: "确认",
140
+ customRestore: "还原",
141
+ },
142
+ grid: {
143
+ selectOneRecord: "请至少选择一条记录!",
144
+ deleteSelectRecord: "您确定要删除所选记录吗?",
145
+ removeSelectRecord: "您确定要移除所选记录吗?",
146
+ dataUnchanged: "数据未改动!",
147
+ delSuccess: "成功删除所选记录!",
148
+ saveSuccess: "保存成功!",
149
+ operError: "发生错误,操作失败!",
150
+ },
151
+ select: {
152
+ search: "搜索",
153
+ loadingText: "加载中",
154
+ emptyText: "暂无数据",
155
+ },
156
+ pager: {
157
+ goto: "前往",
158
+ pagesize: "{0}条/页",
159
+ total: "共 {0} 条记录",
160
+ pageClassifier: "页",
161
+ prevPage: "上一页",
162
+ nextPage: "下一页",
163
+ prevJump: "向上跳页",
164
+ nextJump: "向下跳页",
165
+ },
166
+ alert: {
167
+ title: "消息提示",
168
+ },
169
+ button: {
170
+ confirm: "确认",
171
+ cancel: "取消",
172
+ },
173
+ import: {
174
+ modes: {
175
+ covering: "覆盖",
176
+ insert: "新增",
177
+ },
178
+ impTitle: "导入数据",
179
+ impFile: "文件名",
180
+ impSelect: "选择文件",
181
+ impType: "文件类型",
182
+ impOpts: "参数设置",
183
+ impConfirm: "导入",
184
+ impCancel: "取消",
185
+ },
186
+ export: {
187
+ types: {
188
+ csv: "CSV (逗号分隔)(*.csv)",
189
+ html: "网页(*.html)",
190
+ xml: "XML 数据(*.xml)",
191
+ txt: "文本文件(制表符分隔)(*.txt)",
192
+ xls: "Excel 97-2003 工作簿(*.xls)",
193
+ xlsx: "Excel 工作簿(*.xlsx)",
194
+ pdf: "PDF (*.pdf)",
195
+ },
196
+ modes: {
197
+ current: "当前数据(当前页的数据)",
198
+ selected: "选中数据(当前页选中的数据)",
199
+ all: "全量数据(包括所有分页的数据)",
200
+ },
201
+ printTitle: "打印数据",
202
+ expTitle: "导出数据",
203
+ expName: "文件名",
204
+ expNamePlaceholder: "请输入文件名",
205
+ expSheetName: "标题",
206
+ expSheetNamePlaceholder: "请输入标题",
207
+ expType: "保存类型",
208
+ expMode: "选择数据",
209
+ expCurrentColumn: "全部字段",
210
+ expColumn: "选择字段",
211
+ expOpts: "参数设置",
212
+ expOptHeader: "表头",
213
+ expHeaderTitle: "是否需要表头",
214
+ expOptFooter: "表尾",
215
+ expFooterTitle: "是否需要表尾",
216
+ expOptColgroup: "分组表头",
217
+ expColgroupTitle: "如果存在,则支持带有分组结构的表头",
218
+ expOptMerge: "合并",
219
+ expMergeTitle: "如果存在,则支持带有合并结构的单元格",
220
+ expOptAllExpand: "展开层级",
221
+ expAllExpandTitle: "如果存在,则支持将带有层级结构的数据全部展开",
222
+ expOptUseStyle: "样式",
223
+ expUseStyleTitle: "如果存在,则支持带样式的单元格",
224
+ expOptOriginal: "源数据",
225
+ expOriginalTitle: "如果为源数据,则支持导入到表格中",
226
+ expPrint: "打印",
227
+ expConfirm: "导出",
228
+ expCancel: "取消",
229
+ },
230
+ modal: {
231
+ zoomIn: "最大化",
232
+ zoomOut: "还原",
233
+ close: "关闭",
234
+ },
235
+ form: {
236
+ folding: "收起",
237
+ unfolding: "展开",
238
+ },
239
+ toolbar: {
240
+ import: "导入",
241
+ export: "导出",
242
+ print: "打印",
243
+ refresh: "刷新",
244
+ zoomIn: "全屏",
245
+ zoomOut: "还原",
246
+ custom: "列设置",
247
+ customAll: "全部",
248
+ customConfirm: "确认",
249
+ customRestore: "还原",
250
+ },
251
+ input: {
252
+ date: {
253
+ m1: "01 月",
254
+ m2: "02 月",
255
+ m3: "03 月",
256
+ m4: "04 月",
257
+ m5: "05 月",
258
+ m6: "06 月",
259
+ m7: "07 月",
260
+ m8: "08 月",
261
+ m9: "09 月",
262
+ m10: "10 月",
263
+ m11: "11 月",
264
+ m12: "12 月",
265
+ quarterLabel: "{0} 年",
266
+ monthLabel: "{0} 年",
267
+ dayLabel: "{0} 年 {1}",
268
+ labelFormat: {
269
+ date: "yyyy-MM-dd",
270
+ time: "HH:mm:ss",
271
+ datetime: "yyyy-MM-dd HH:mm:ss",
272
+ week: "yyyy 年第 WW 周",
273
+ month: "yyyy-MM",
274
+ quarter: "yyyy 年第 q 季度",
275
+ year: "yyyy",
276
+ },
277
+ weeks: {
278
+ w: "周",
279
+ w0: "周日",
280
+ w1: "周一",
281
+ w2: "周二",
282
+ w3: "周三",
283
+ w4: "周四",
284
+ w5: "周五",
285
+ w6: "周六",
286
+ },
287
+ months: {
288
+ m0: "一月",
289
+ m1: "二月",
290
+ m2: "三月",
291
+ m3: "四月",
292
+ m4: "五月",
293
+ m5: "六月",
294
+ m6: "七月",
295
+ m7: "八月",
296
+ m8: "九月",
297
+ m9: "十月",
298
+ m10: "十一月",
299
+ m11: "十二月",
300
+ },
301
+ quarters: {
302
+ q1: "第一季度",
303
+ q2: "第二季度",
304
+ q3: "第三季度",
305
+ q4: "第四季度",
306
+ },
307
+ },
308
+ },
309
+ },
310
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yh-i18n",
3
- "version": "2.2.7",
3
+ "version": "2.2.8",
4
4
  "description": "对于国际化的封装",
5
5
  "main": "index.js",
6
6
  "scripts": {