diff --git a/examples/i18n/lang/en-US.js b/examples/i18n/lang/en-US.js index fffe00762..3dc51c47c 100644 --- a/examples/i18n/lang/en-US.js +++ b/examples/i18n/lang/en-US.js @@ -310,9 +310,9 @@ export default { copyToClipboard: 'Copied to clipboard' }, other: { - v1: '1.x (Obsolete)', - v2: '2.x (LTS)', - v3: '3.x (Latest)', + v1: '1.x (Deprecated)', + v2: '2.x (vue 2.6.x Stable)', + v3: '3.x (vue 2.6.x Latest)', v4: '4.x (vue 3.x Next)', plan: { vv1: 'v1 Based on vue2.6+, support all the mainstream browsers, to achieve all the practical functions of the table', diff --git a/examples/i18n/lang/zh-CN.js b/examples/i18n/lang/zh-CN.js index c55d4d5d6..5dbac27c0 100644 --- a/examples/i18n/lang/zh-CN.js +++ b/examples/i18n/lang/zh-CN.js @@ -310,9 +310,9 @@ export default { }, other: { v1: '1.x (已废弃)', - v2: '2.x (长期支持版本)', - v3: '3.x (最新版本)', - v4: '4.x (vue 3.x 版本)', + v2: '2.x (vue 2.6.x 稳定版)', + v3: '3.x (vue 2.6.x 最新版)', + v4: '4.x (vue 3.x Next)', plan: { v1: 'v1 基于 vue2.6+,支持所有主流的浏览器,实现表格的一切实用的功能', v2: 'v2 基于 vue2.6+,支持所有主的流浏览,同时兼具功能与性能', diff --git a/examples/i18n/lang/zh-TC.js b/examples/i18n/lang/zh-TC.js index 4e472a842..1fc96a5ec 100644 --- a/examples/i18n/lang/zh-TC.js +++ b/examples/i18n/lang/zh-TC.js @@ -310,9 +310,9 @@ export default { }, other: { v1: '1.x (已廢棄)', - v2: '2.x (長期支持版本)', - v3: '3.x (最新版本)', - v4: '4.x (vue 3.x 版本)', + v2: '2.x (vue 2.6.x 稳定版)', + v3: '3.x (vue 2.6.x 最新版)', + v4: '4.x (vue 3.x Next)', plan: { v1: 'v1 基于 vue2.6+,支持所有主流的浏览器,实现表格的一切实用的功能', v2: 'v2 基于 vue2.6+,支持所有主的流浏览,同时兼具功能与性能', diff --git a/vue.config.js b/vue.config.js index 05b6324ea..4e34e15a3 100644 --- a/vue.config.js +++ b/vue.config.js @@ -22,7 +22,7 @@ module.exports = { entry: 'examples/main.js', template: 'public/index.html', filename: 'index.html', - title: '(Latest) vxe-table 3.x' + title: 'vxe-table 3.x (Latest)' } }, transpileDependencies: ['highlight.js'],