You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
137 lines
3.9 KiB
137 lines
3.9 KiB
4 years ago
|
/* eslint-disable no-template-curly-in-string */
|
||
5 years ago
|
import Pagination from 'rc-pagination/lib/locale/es_ES';
|
||
|
import Calendar from '../calendar/locale/es_ES';
|
||
2 years ago
|
import DatePicker from '../date-picker/locale/es_ES';
|
||
2 years ago
|
import type { Locale } from '.';
|
||
2 years ago
|
import TimePicker from '../time-picker/locale/es_ES';
|
||
5 years ago
|
|
||
4 years ago
|
const typeTemplate = '${label} no es un ${type} válido';
|
||
|
|
||
5 years ago
|
const localeValues: Locale = {
|
||
5 years ago
|
locale: 'es',
|
||
|
Pagination,
|
||
|
DatePicker,
|
||
|
TimePicker,
|
||
|
Calendar,
|
||
|
global: {
|
||
|
placeholder: 'Seleccione',
|
||
|
},
|
||
|
Table: {
|
||
|
filterTitle: 'Filtrar menú',
|
||
|
filterConfirm: 'Aceptar',
|
||
|
filterReset: 'Reiniciar',
|
||
4 years ago
|
filterEmptyText: 'Sin filtros',
|
||
3 years ago
|
filterCheckall: 'Seleccionar todo',
|
||
|
filterSearchPlaceholder: 'Buscar en filtros',
|
||
4 years ago
|
emptyText: 'Sin datos',
|
||
5 years ago
|
selectAll: 'Seleccionar todo',
|
||
|
selectInvert: 'Invertir selección',
|
||
4 years ago
|
selectNone: 'Vacíe todo',
|
||
4 years ago
|
selectionAll: 'Seleccionar todos los datos',
|
||
5 years ago
|
sortTitle: 'Ordenar',
|
||
4 years ago
|
expand: 'Expandir fila',
|
||
|
collapse: 'Colapsar fila',
|
||
|
triggerDesc: 'Click para ordenar en orden descendente',
|
||
|
triggerAsc: 'Click para ordenar en orden ascendente',
|
||
|
cancelSort: 'Click para cancelar ordenamiento',
|
||
5 years ago
|
},
|
||
|
Modal: {
|
||
|
okText: 'Aceptar',
|
||
|
cancelText: 'Cancelar',
|
||
|
justOkText: 'Aceptar',
|
||
|
},
|
||
|
Popconfirm: {
|
||
|
okText: 'Aceptar',
|
||
|
cancelText: 'Cancelar',
|
||
|
},
|
||
|
Transfer: {
|
||
4 years ago
|
titles: ['', ''],
|
||
5 years ago
|
searchPlaceholder: 'Buscar aquí',
|
||
|
itemUnit: 'elemento',
|
||
|
itemsUnit: 'elementos',
|
||
4 years ago
|
remove: 'Eliminar',
|
||
|
selectCurrent: 'Seleccionar página actual',
|
||
|
removeCurrent: 'Remover página actual',
|
||
|
selectAll: 'Seleccionar todos los datos',
|
||
|
removeAll: 'Eliminar todos los datos',
|
||
|
selectInvert: 'Invertir página actual',
|
||
5 years ago
|
},
|
||
|
Upload: {
|
||
|
uploading: 'Subiendo...',
|
||
|
removeFile: 'Eliminar archivo',
|
||
|
uploadError: 'Error al subir el archivo',
|
||
|
previewFile: 'Vista previa',
|
||
5 years ago
|
downloadFile: 'Descargar archivo',
|
||
5 years ago
|
},
|
||
|
Empty: {
|
||
|
description: 'No hay datos',
|
||
|
},
|
||
|
Icon: {
|
||
|
icon: 'ícono',
|
||
|
},
|
||
|
Text: {
|
||
4 years ago
|
edit: 'Editar',
|
||
|
copy: 'Copiar',
|
||
|
copied: 'Copiado',
|
||
|
expand: 'Expandir',
|
||
5 years ago
|
},
|
||
|
PageHeader: {
|
||
4 years ago
|
back: 'Volver',
|
||
5 years ago
|
},
|
||
4 years ago
|
Form: {
|
||
4 years ago
|
optional: '(opcional)',
|
||
4 years ago
|
defaultValidateMessages: {
|
||
|
default: 'Error de validación del campo ${label}',
|
||
|
required: 'Por favor ingresar ${label}',
|
||
|
enum: '${label} debe ser uno de [${enum}]',
|
||
|
whitespace: '${label} no puede ser un carácter en blanco',
|
||
|
date: {
|
||
|
format: 'El formato de fecha de ${label} es inválido',
|
||
|
parse: '${label} no se puede convertir a una fecha',
|
||
|
invalid: '${label} es una fecha inválida',
|
||
|
},
|
||
|
types: {
|
||
|
string: typeTemplate,
|
||
|
method: typeTemplate,
|
||
|
array: typeTemplate,
|
||
|
object: typeTemplate,
|
||
|
number: typeTemplate,
|
||
|
date: typeTemplate,
|
||
|
boolean: typeTemplate,
|
||
|
integer: typeTemplate,
|
||
|
float: typeTemplate,
|
||
|
regexp: typeTemplate,
|
||
|
email: typeTemplate,
|
||
|
url: typeTemplate,
|
||
|
hex: typeTemplate,
|
||
|
},
|
||
|
string: {
|
||
|
len: '${label} debe tener ${len} caracteres',
|
||
|
min: '${label} debe tener al menos ${min} caracteres',
|
||
|
max: '${label} debe tener hasta ${max} caracteres',
|
||
|
range: '${label} debe tener entre ${min}-${max} caracteres',
|
||
|
},
|
||
|
number: {
|
||
|
len: '${label} debe ser igual a ${len}',
|
||
|
min: '${label} valor mínimo es ${min}',
|
||
|
max: '${label} valor máximo es ${max}',
|
||
|
range: '${label} debe estar entre ${min}-${max}',
|
||
|
},
|
||
|
array: {
|
||
|
len: 'Debe ser ${len} ${label}',
|
||
|
min: 'Al menos ${min} ${label}',
|
||
|
max: 'A lo mucho ${max} ${label}',
|
||
|
range: 'El monto de ${label} debe estar entre ${min}-${max}',
|
||
|
},
|
||
|
pattern: {
|
||
|
mismatch: '${label} no coincide con el patrón ${pattern}',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
3 years ago
|
Image: {
|
||
|
preview: 'Previsualización',
|
||
|
},
|
||
5 years ago
|
};
|
||
5 years ago
|
|
||
|
export default localeValues;
|