diff --git a/examples/docs/es/table.md b/examples/docs/es/table.md index b2bfd2031..d26d1fdb4 100644 --- a/examples/docs/es/table.md +++ b/examples/docs/es/table.md @@ -334,15 +334,15 @@ } -## Table +## Tablas -Display multiple data with similar format. You can sort, filter, compare your data in a table. +Visualiza múltiples datos con un formato en particular. Podrás ordenar, filtrar y comparar datos en una tabla. -### Basic table +### Tabla básica -Basic table is just for data display. +La tabla básica es solo para mostrar datos. -:::demo After setting attribute `data` of `el-table` with an object array, you can use `prop` (corresponding to a key of the object in `data` array) in `el-table-column` to insert data to table columns, and set the attribute `label` to define the column name. You can also use the attribute `width` to define the width of columns. +:::demo Después de haber establecido el atributo `data` de `el-table` con un arreglo de objetos, puedes usar la propiedad `prop` (el correspondiente a la clave de un objeto dentro del arreglo `data`) en `el-table-column` para insertar datos a las columnas de la tabla, y establece el atributo `label` para definir el nombre de la columna. También puedes usar el atributo `width` para establecer el ancho de las columnas. ```html @@ -394,11 +394,11 @@ Basic table is just for data display. ``` ::: -### Striped Table +### Tabla con rayas -Striped table makes it easier to distinguish different rows. +La tabla con rayas hace más fácil distinguir filas diferentes. -:::demo Attribute `stripe` accepts a `Boolean`. If `true`, table will be striped. +:::demo El atributo `stripe` también acepta un `Boolean`. Si se encuentra `true`, la tabla será rayada. ```html @@ -450,9 +450,9 @@ Striped table makes it easier to distinguish different rows. ``` ::: -### Table with border +### Tabla con bordes -:::demo By default, Table has no vertical border. If you need it, you can set attribute `border` to `true`. +:::demo Por defecto, la tabla no tiene bordes verticales. Si lo necesitas, puedes establecer el atributo `border` a `true`. ```html @@ -505,11 +505,11 @@ Striped table makes it easier to distinguish different rows. ``` ::: -### Table with status +### Tabla con estados -You can highlight your table content to distinguish between "success, information, warning, danger" and other states. +Tu puedes destacar el contenido de la tabla para distinguir entre "success, information, warning, danger" y otros estados. -:::demo Use `row-class-name` in `el-table` to add custom classes to a certain row. Then you can style it with custom classes. +:::demo Utiliza `row-class-name` en `el-table` para agregar clases personalizadas a una fila en específico. Y entonces, podrás darle diseño con estas clases. ```html @@ -581,11 +581,11 @@ You can highlight your table content to distinguish between "success, informatio ``` ::: -### Table with fixed header +### Tabla con cabecera fija -When there are too many rows, you can use a fixed header. +Cuando esta tiene demasiadas filas, puedes utilizar una cabecera fija. -:::demo By setting the attribute `height` of `el-table`, you can fix the table header without any other codes. +:::demo Al configurar el atributo `height` de `el-table`, puedes fijar la cabecera de la tabla sin agregar otro código. ```html @@ -649,11 +649,11 @@ When there are too many rows, you can use a fixed header. ``` ::: -### Table with fixed column +### Tabla con columnas fijas -When there are too many columns, you can fix some of them. +Cuando se tienen demasiadas columnas, puedes fijar alguna de estas. -:::demo Attribute `fixed` is used in `el-table-column`, it accepts a `Boolean`. If `true`, the column will be fixed at left. It also accepts two string literals: 'left' and 'right', both indicating that the column will be fixed at corresponding direction. +:::demo El atributo `fixed` es utilizado en `el-table-column`, este acepta un `Boolean`. Si es `true`, la columna será fijada a la izquierda. También acepta dos tipos: `left` y `right`, ambos indican donde debe ser fijada la columna. ```html