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.
32 lines
874 B
32 lines
874 B
import type { Locale } from '../interface'; |
|
|
|
const locale: Locale = { |
|
locale: 'es_ES', |
|
today: 'Hoy', |
|
now: 'Ahora', |
|
backToToday: 'Volver a hoy', |
|
ok: 'Aceptar', |
|
clear: 'Limpiar', |
|
month: 'Mes', |
|
year: 'Año', |
|
timeSelect: 'Seleccionar hora', |
|
dateSelect: 'Seleccionar fecha', |
|
monthSelect: 'Elegir un mes', |
|
yearSelect: 'Elegir un año', |
|
decadeSelect: 'Elegir una 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;
|
|
|