vuecssuiant-designantdreactantantd-vueenterprisefrontendui-designvue-antdvue-antd-uivue3vuecomponent
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.
33 lines
900 B
33 lines
900 B
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;
|
|
|