Skip to content

Commit

Permalink
Merge branch 'ElemeFE:dev' into fix-el-cascader-Keydown
Browse files Browse the repository at this point in the history
  • Loading branch information
wangdaodao committed Apr 24, 2024
2 parents 0083e3b + c345bb4 commit 5abc10f
Show file tree
Hide file tree
Showing 11 changed files with 140 additions and 14 deletions.
2 changes: 1 addition & 1 deletion examples/components/footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
}
img {
size: 100px;
width: 100px;
margin: 10px;
}
}
Expand Down
4 changes: 2 additions & 2 deletions examples/docs/en-US/table.md
Original file line number Diff line number Diff line change
Expand Up @@ -1088,7 +1088,7 @@ Filter the table to find desired data.
### Custom column template

Customize table column so it can be integrated with other components.
:::demo You have access to the following data: row, column, $index and store (state management of Table) by [Scoped slot](https://vuejs.org/v2/guide/components.html#Scoped-Slots).
:::demo You have access to the following data: row, column, $index and store (state management of Table) by [Scoped slot](https://v2.vuejs.org/v2/guide/components-slots#Scoped-Slots).
```html
<template>
<el-table
Expand Down Expand Up @@ -1169,7 +1169,7 @@ Customize table column so it can be integrated with other components.
### Table with custom header

Customize table header so it can be even more customized.
:::demo You can customize how the header looks by header [scoped slots](https://vuejs.org/v2/guide/components-slots.html#Scoped-Slots).
:::demo You can customize how the header looks by header [scoped slots](https://v2.vuejs.org/v2/guide/components-slots#Scoped-Slots).
```html
<template>
<el-table
Expand Down
2 changes: 1 addition & 1 deletion examples/docs/en-US/transition.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Built-in transition

You can use Element's built-in transitions directly. Before that, please read the [transition docs](https://vuejs.org/v2/api/#transition).
You can use Element's built-in transitions directly. Before that, please read the [transition docs](https://v2.vuejs.org/v2/api/#transition).

### fade

Expand Down
2 changes: 1 addition & 1 deletion examples/docs/es/popover.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Similar a un Tooltip, Popover está construido con `Vue-popper`. Así que para atributos duplicados, por favor refiérase a la documentación de Tooltip.

:::demo El atributo `trigger` es usado para definir como el popover se dispara: `hover`, `click`, `focus` o `manual`. En cuanto al elemento desencadenante, puedes escribirlo de dos maneras diferentes: usando el `slot="reference"`[named slot](https://vuejs.org/v2/guide/components.html#Named-Slots), o usando la directiva `v-popover` y poniendo el `ref` de Popover.
:::demo El atributo `trigger` es usado para definir como el popover se dispara: `hover`, `click`, `focus` o `manual`. En cuanto al elemento desencadenante, puedes escribirlo de dos maneras diferentes: usando el `slot="reference"`[named slot](https://v2.vuejs.org/v2/guide/components-slots#Named-Slots), o usando la directiva `v-popover` y poniendo el `ref` de Popover.

```html
<template>
Expand Down
6 changes: 3 additions & 3 deletions examples/docs/es/table.md
Original file line number Diff line number Diff line change
Expand Up @@ -1089,7 +1089,7 @@ Filtra la tabla para encontrar la información que necesita.

Personalice la columna de la tabla para que pueda integrarse con otros componentes.

:::demo Tiene acceso a la siguiente información: row, column, $index, store (gestor de estados de la tabla) por [Scoped slots](https://vuejs.org/v2/guide/components.html#Scoped-Slots).
:::demo Tiene acceso a la siguiente información: row, column, $index, store (gestor de estados de la tabla) por [Scoped slots](https://v2.vuejs.org/v2/guide/components-slots#Scoped-Slots).
```html
<template>
<el-table
Expand Down Expand Up @@ -1170,7 +1170,7 @@ Personalice la columna de la tabla para que pueda integrarse con otros component
### Table con cabecera personalizada

Se puede personalizar el encabezado de la tabla para que se pueda adaptar aún más.
:::demo Puede personalizar el aspecto del encabezado con header [scoped slots](https://vuejs.org/v2/guide/components-slots.html#Scoped-Slots).
:::demo Puede personalizar el aspecto del encabezado con header [scoped slots](https://v2.vuejs.org/v2/guide/components-slots#Scoped-Slots).
```html
<template>
<el-table
Expand Down Expand Up @@ -1922,4 +1922,4 @@ Puede personalizar el índice de la fila con la propiedad `type=index` de las co
| Name | Description |
|------|--------|
|| Contenido personalizado para las columnas de la tabla. El parámetro del scope es { row, column, $index } |
| header | Contenido personalizado para el encabezado de la tabla. El parámetro del scope es { column, $index } |
| header | Contenido personalizado para el encabezado de la tabla. El parámetro del scope es { column, $index } |
2 changes: 1 addition & 1 deletion examples/docs/es/transition.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Transiciones incorporadas

Puede usar directamente las transiciones incorporadas en Element. Antes de hacerlo, por favor lea la [documentación](https://vuejs.org/v2/api/#transition).
Puede usar directamente las transiciones incorporadas en Element. Antes de hacerlo, por favor lea la [documentación](https://v2.vuejs.org/v2/api/#transition).

### Fade

Expand Down
4 changes: 2 additions & 2 deletions examples/docs/fr-FR/table.md
Original file line number Diff line number Diff line change
Expand Up @@ -1089,7 +1089,7 @@ Vous pouvez filtrer la table pour obtenir rapidement les lignes désirées.

Vous pouvez customiser le contenu des colonnes afin de pouvoir utiliser d'autres composants.

:::demo Vous avez acccès aux données suivantes: `row`, `column`, `$index` et `store` (gestionnaire d'état de Table) grâce aux [Scoped slot](https://vuejs.org/v2/guide/components.html#Scoped-Slots).
:::demo Vous avez acccès aux données suivantes: `row`, `column`, `$index` et `store` (gestionnaire d'état de Table) grâce aux [Scoped slot](https://v2.vuejs.org/v2/guide/components-slots#Scoped-Slots).
```html
<template>
<el-table
Expand Down Expand Up @@ -1171,7 +1171,7 @@ Vous pouvez customiser le contenu des colonnes afin de pouvoir utiliser d'autres

Vous pouvez également personnaliser le header de la table.

:::demo Vous pouvez personnaliser le header grâce aux [slots avec portée](https://vuejs.org/v2/guide/components-slots.html#Scoped-Slots).
:::demo Vous pouvez personnaliser le header grâce aux [slots avec portée](https://v2.vuejs.org/v2/guide/components-slots#Scoped-Slots).
```html
<template>
<el-table
Expand Down
2 changes: 1 addition & 1 deletion examples/docs/fr-FR/transition.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Transitions

Vous pouvez utiliser les transitions d'Element directement. Mais avant ça, merci de lire la [documentation](https://vuejs.org/v2/api/#transition).
Vous pouvez utiliser les transitions d'Element directement. Mais avant ça, merci de lire la [documentation](https://v2.vuejs.org/v2/api/#transition).

### Fade

Expand Down
2 changes: 1 addition & 1 deletion examples/docs/zh-CN/table.md
Original file line number Diff line number Diff line change
Expand Up @@ -1420,7 +1420,7 @@

表头支持自定义。

:::demo 通过设置 [Scoped slot](https://cn.vuejs.org/v2/guide/components-slots.html#%E4%BD%9C%E7%94%A8%E5%9F%9F%E6%8F%92%E6%A7%BD) 来自定义表头。
:::demo 通过设置 [Scoped slot](https://v2.cn.vuejs.org/v2/guide/components-slots.html#%E4%BD%9C%E7%94%A8%E5%9F%9F%E6%8F%92%E6%A7%BD) 来自定义表头。
```html
<template>
<el-table
Expand Down
2 changes: 1 addition & 1 deletion examples/docs/zh-CN/transition.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## 内置过渡动画

Element 内应用在部分组件的过渡动画,你也可以直接使用。在使用之前请阅读 [transition 组件文档](https://cn.vuejs.org/v2/api/#transition)
Element 内应用在部分组件的过渡动画,你也可以直接使用。在使用之前请阅读 [transition 组件文档](https://v2.cn.vuejs.org/v2/api/#transition)

### fade 淡入淡出

Expand Down
126 changes: 126 additions & 0 deletions src/locale/lang/lo-LA.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
'use strict';

exports.__esModule = true;
exports.default = {
el: {
colorpicker: {
confirm: 'ຢືນຢັນ',
clear: 'ເປົ່າ'
},
datepicker: {
now: 'ດຽວນີ້',
today: 'ມື້ນີ້',
cancel: 'ຍົກເລີກ',
clear: 'ເປົ່າ',
confirm: 'ຢືນຢັນ',
selectDate: 'ເລືອກ ວັນທີ',
selectTime: 'ເລືອກ ເວລາ',
startDate: 'ວັນ​ທີ່​ເລີ່ມ',
startTime: 'ເວລາເລີ່ມຕົ້ນ',
endDate: 'ວັນສິ້ນສຸດ',
endTime: 'ສິ້ນສຸດເວລາ',
prevYear: 'ປີກ່ອນ',
nextYear: 'ປີ ຕໍ່ມາ',
prevMonth: 'ເດືອນກ່ອນ',
nextMonth: 'ເດືອນ ຖັດ ໄປ',
year: 'ປີ',
month1: 'ມັງກອນ',
month2: 'ເດືອນ ກຸມພາ',
month3: 'ເດືອນມີນາ',
month4: 'ເດືອນເມສາ',
month5: 'ເດືອນພຶດສະພາ',
month6: 'ມິຖຸນາ',
month7: 'ເດືອນກໍລະກົດ',
month8: 'ເດືອນ ສິງຫາ',
month9: 'ເດືອນ ກັນຍາ',
month10: 'ເດືອນ ຕຸລາ',
month11: 'ເດືອນພະຈິກ',
month12: 'ທັນວາ',
// week: '周次',
weeks: {
sun: 'ວັນ',
mon: 'ກ',
tue: 'ສອງ',
wed: 'ສາມ',
thu: 'ສີ່',
fri: 'ຫ້າ',
sat: 'ຫົກ'
},
months: {
jan: 'ມັງກອນ',
feb: 'ເດືອນ ກຸມພາ',
mar: 'ເດືອນມີນາ',
apr: 'ເດືອນເມສາ',
may: 'ເດືອນພຶດສະພາ',
jun: 'ມິຖຸນາ',
jul: 'ເດືອນກໍລະກົດ',
aug: 'ເດືອນ ສິງຫາ',
sep: 'ເດືອນ ກັນຍາ',
oct: 'ເດືອນ ຕຸລາ',
nov: 'ເດືອນພະຈິກ',
dec: 'ທັນວາ'
}
},
select: {
loading: 'ກຳລັງອອກ...',
noMatch: 'ບໍ່ມີຂໍ້ມູນທີ່ກົງກັນ',
noData: 'ບໍ່​ມີ​ຂໍ້​ມູນ',
placeholder: 'ກະລຸນາເລືອກ'
},
cascader: {
noMatch: 'ບໍ່ມີຂໍ້ມູນທີ່ກົງກັນ',
loading: 'ກຳລັງອອກ...',
placeholder: 'ກະລຸນາເລືອກ',
noData: 'ບໍ່​ມີ​ຂໍ້​ມູນ'
},
pagination: {
goto: 'ໄປທີ່',
pagesize: 'ແຖບ/ໜ້າ',
total: 'ປົກຕ່າງໆ {total} ກະລຸນາປັດ',
pageClassifier: 'ຫມາຍເລກຫນ້າ'
},
messagebox: {
title: 'ຄຳ ແນະ ນຳ',
confirm: 'ຢືນຢັນ',
cancel: 'ຍົກເລີກ',
error: 'ຂໍ້ມູນການປ້ອນຂໍ້ມູນແມ່ນຜິດກົດຫມາຍ!'
},
upload: {
deleteTip: 'ກະລຸນາໃສເພື່ອລຶບ',
delete: 'ລຶບ',
preview: 'ເບິ່ງຮູບພາບ',
continue: 'ສືບຕໍ່ອັບໂຫລດ'
},
table: {
emptyText: 'ບໍ່​ມີ​ຂໍ້​ມູນ',
confirmFilter: 'ການ ຄັດເລືອກ',
resetFilter: 'ເລີ່ມ​ຕົ້ນ​ໃຫມ່',
clearFilter: 'ທັງຫມົດ',
sumText: 'ທັງຫມົດ'
},
tree: {
emptyText: 'ບໍ່​ມີ​ຂໍ້​ມູນ'
},
transfer: {
noMatch: 'ບໍ່ມີຂໍ້ມູນທີ່ກົງກັນ',
noData: 'ບໍ່​ມີ​ຂໍ້​ມູນ',
titles: ['ລາຍຊື່ 1', 'ລາຍຊື່ 2'],
filterPlaceholder: 'ໃສ່ເນື້ອຫາຄົ້ນຫາ',
noCheckedFormat: 'ປົກຕ່າງໆ {total} ຄໍາສຸດ',
hasCheckedFormat: 'ໂຕເລືອກ {checked}/{total} ຄໍາສຸດ'
},
image: {
error: 'ລົ້ມເຫລວໃນການໂຫຼດ'
},
pageHeader: {
title: 'ກັບ ຄືນ'
},
popconfirm: {
confirmButtonText: 'ຢືນຢັນ',
cancelButtonText: 'ຍົກເລີກ'
},
empty: {
description: 'ບໍ່​ມີ​ຂໍ້​ມູນ'
}
}
};

0 comments on commit 5abc10f

Please sign in to comment.