Skip to content

Commit

Permalink
releases 4.7.65
Browse files Browse the repository at this point in the history
  • Loading branch information
xuliangzhan committed Aug 13, 2024
1 parent 3277c77 commit 441ef70
Show file tree
Hide file tree
Showing 12 changed files with 2,664 additions and 105 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vxe-table",
"version": "4.7.64",
"version": "4.7.65",
"description": "一个基于 vue 的 PC 端表格组件,支持增删改查、虚拟树、列拖拽,懒加载、快捷菜单、数据校验、树形结构、打印、导入导出、自定义模板、渲染器、JSON 配置式...",
"scripts": {
"update": "npm install --legacy-peer-deps",
Expand Down Expand Up @@ -28,7 +28,7 @@
"style": "lib/style.css",
"typings": "types/index.d.ts",
"dependencies": {
"vxe-pc-ui": "^4.0.93"
"vxe-pc-ui": "^4.0.94"
},
"devDependencies": {
"@types/resize-observer-browser": "^0.1.11",
Expand Down
20 changes: 13 additions & 7 deletions packages/locale/lang/en-US.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
/**
* 已废弃
* @deprecated
*/
export default {
vxe: {
base: {
Expand All @@ -23,7 +19,7 @@ export default {
useErr: 'Error installing "{0}" module, possibly in the wrong order, dependent modules need to be installed before Table.',
barUnableLink: 'Toolbar cannot associate table.',
expandContent: 'Expand row slot should be "content", please check if it is correct.',
reqComp: 'Require "{0}" component, check whether the install is correct',
reqComp: 'Require "{0}" component, check whether the install is correct. https://vxeui.com/#/start/useGlobal',
reqModule: 'require "{0}" module.',
reqProp: 'Missing the necessary "{0}" parameter, which can cause error.',
emptyProp: 'The property "{0}" is not allowed to be empty.',
Expand Down Expand Up @@ -53,6 +49,7 @@ export default {
emptyText: 'No Data',
allTitle: 'Select all / cancel',
seqTitle: 'N/S',
actionTitle: 'Action',
confirmFilter: 'Confirm',
resetFilter: 'Reset',
allFilter: 'All',
Expand Down Expand Up @@ -348,7 +345,8 @@ export default {
textarea: 'Textarea',
select: 'Select',
row: 'Row/column',
title: 'Text',
title: 'Title',
text: 'Text',
subtable: 'Subtable',
VxeSwitch: 'Yes/no',
VxeInput: 'Input',
Expand Down Expand Up @@ -422,7 +420,15 @@ export default {
},
listDesign: {
fieldSettingTab: 'Field setting',
listSettingTab: 'List setting'
listSettingTab: 'List setting',
activeBtn: {
ActionButtonUpdate: 'Edit',
ActionButtonDelete: 'Delete'
}
},
text: {
copySuccess: 'Successfully copied to clipboard.',
copyError: 'The current environment does not support this operation.'
},

/**
Expand Down
20 changes: 13 additions & 7 deletions packages/locale/lang/es-ES.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
/**
* 已废弃
* @deprecated
*/
export default {
vxe: {
base: {
Expand All @@ -23,7 +19,7 @@ export default {
useErr: 'Error al instalar el módulo "{0}", posiblemente en el orden equivocado, los módulos dependientes deben ser instalados antes de la tabla.',
barUnableLink: 'La barra de herramientas no puede asociarse con la tabla.',
expandContent: 'La ranura de fila expandible debería ser "contenido", por favor revise si está correcta.',
reqComp: 'Require "{0}" component, check whether the install is correct',
reqComp: 'Require "{0}" component, check whether the install is correct. https://vxeui.com/#/start/useGlobal',
reqModule: 'Requerir el módulo "{0}".',
reqProp: 'Falta el parámetro necesario "{0}", lo que puede causar errores.',
emptyProp: 'La propiedad "{0}" no se permite estar vacía.',
Expand Down Expand Up @@ -53,6 +49,7 @@ export default {
emptyText: 'No hay datos',
allTitle: 'Seleccionar todo / cancelar',
seqTitle: 'N/S',
actionTitle: 'Action',
confirmFilter: 'Confirmar',
resetFilter: 'Restablecer',
allFilter: 'Todo',
Expand Down Expand Up @@ -348,7 +345,8 @@ export default {
textarea: 'Textarea',
select: 'Select',
row: 'Row/column',
title: 'Text',
title: 'Title',
text: 'Text',
subtable: 'Subtable',
VxeSwitch: 'Yes/no',
VxeInput: 'Input',
Expand Down Expand Up @@ -422,7 +420,15 @@ export default {
},
listDesign: {
fieldSettingTab: 'Field setting',
listSettingTab: 'List setting'
listSettingTab: 'List setting',
activeBtn: {
ActionButtonUpdate: 'Edit',
ActionButtonDelete: 'Delete'
}
},
text: {
copySuccess: 'Successfully copied to clipboard.',
copyError: 'The current environment does not support this operation.'
},

/**
Expand Down
Loading

0 comments on commit 441ef70

Please sign in to comment.