Path: blob/main/src/resources/library/dayjs/locale/ca.js
12923 views
// Catalan [ca]12const locale = {3name: 'ca',4weekdays: 'Diumenge_Dilluns_Dimarts_Dimecres_Dijous_Divendres_Dissabte'.split('_'),5weekdaysShort: 'Dg._Dl._Dt._Dc._Dj._Dv._Ds.'.split('_'),6weekdaysMin: 'Dg_Dl_Dt_Dc_Dj_Dv_Ds'.split('_'),7months: 'Gener_Febrer_Març_Abril_Maig_Juny_Juliol_Agost_Setembre_Octubre_Novembre_Desembre'.split('_'),8monthsShort: 'Gen._Febr._Març_Abr._Maig_Juny_Jul._Ag._Set._Oct._Nov._Des.'.split('_'),9weekStart: 1,10formats: {11LT: 'H:mm',12LTS: 'H:mm:ss',13L: 'DD/MM/YYYY',14LL: 'D MMMM [de] YYYY',15LLL: 'D MMMM [de] YYYY [a les] H:mm',16LLLL: 'dddd D MMMM [de] YYYY [a les] H:mm',17ll: 'D MMM YYYY',18lll: 'D MMM YYYY, H:mm',19llll: 'ddd D MMM YYYY, H:mm'20},21relativeTime: {22future: 'd\'aquí %s',23past: 'fa %s',24s: 'uns segons',25m: 'un minut',26mm: '%d minuts',27h: 'una hora',28hh: '%d hores',29d: 'un dia',30dd: '%d dies',31M: 'un mes',32MM: '%d mesos',33y: 'un any',34yy: '%d anys'35},36ordinal: (n) => {37let ord3839if (n === 1 || n === 3) ord = 'r'40else if (n === 2) ord = 'n'41else if (n === 4) ord = 't'42else ord = 'è'4344return `${n}${ord}`45}46}474849export default locale5051