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
872 B
33 lines
872 B
import type { Locale } from '../interface';
|
|
|
|
const locale: Locale = {
|
|
locale: 'ca_ES',
|
|
today: 'Avui',
|
|
now: 'Ara',
|
|
backToToday: 'Tornar a avui',
|
|
ok: 'Acceptar',
|
|
clear: 'Netejar',
|
|
month: 'Mes',
|
|
year: 'Any',
|
|
timeSelect: 'Seleccionar hora',
|
|
dateSelect: 'Seleccionar data',
|
|
monthSelect: 'Escollir un mes',
|
|
yearSelect: 'Escollir un any',
|
|
decadeSelect: 'Escollir 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 següent (PageDown)',
|
|
previousYear: 'Any anterior (Control + left)',
|
|
nextYear: 'Mes següent (Control + right)',
|
|
previousDecade: 'Dècada anterior',
|
|
nextDecade: 'Dècada següent',
|
|
previousCentury: 'Segle anterior',
|
|
nextCentury: 'Segle següent',
|
|
};
|
|
|
|
export default locale;
|