34 lines
		
	
	
		
			900 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			900 B
		
	
	
	
		
			TypeScript
		
	
	
import type { Locale } from '../interface';
 | 
						|
 | 
						|
const locale: 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;
 |