30 lines
842 B
JavaScript
30 lines
842 B
JavaScript
var locale = {
|
|
locale: 'es_MX',
|
|
today: 'Hoy',
|
|
now: 'Ahora',
|
|
backToToday: 'Volver a hoy',
|
|
ok: 'Aceptar',
|
|
clear: 'Limpiar',
|
|
month: 'Mes',
|
|
year: 'Año',
|
|
timeSelect: 'elegir hora',
|
|
dateSelect: 'elegir fecha',
|
|
weekSelect: 'elegir semana',
|
|
monthSelect: 'Seleccionar mes',
|
|
yearSelect: 'Seleccionar año',
|
|
decadeSelect: 'Seleccionar década',
|
|
yearFormat: 'YYYY',
|
|
dateFormat: 'D/M/YYYY',
|
|
dayFormat: 'D',
|
|
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
|
monthBeforeYear: true,
|
|
previousMonth: 'Mes anterior (PageUp)',
|
|
nextMonth: 'Mes siguiente (PageDown)',
|
|
previousYear: 'Año anterior (Control + Left)',
|
|
nextYear: 'Año siguiente (Control + Right)',
|
|
previousDecade: 'Década anterior',
|
|
nextDecade: 'Década siguiente',
|
|
previousCentury: 'Siglo anterior',
|
|
nextCentury: 'Siglo siguiente'
|
|
};
|
|
export default locale; |