1 // moment.js locale configuration
2 // locale : catalan (ca)
3 // author : Juan G. Hurtado : https://github.com/juanghurtado
6 if (typeof define === 'function' && define.amd) {
7 define(['moment'], factory); // AMD
8 } else if (typeof exports === 'object') {
9 module.exports = factory(require('../moment')); // Node
11 factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
14 return moment.defineLocale('ca', {
15 months : 'gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre'.split('_'),
16 monthsShort : 'gen._febr._mar._abr._mai._jun._jul._ag._set._oct._nov._des.'.split('_'),
17 weekdays : 'diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte'.split('_'),
18 weekdaysShort : 'dg._dl._dt._dc._dj._dv._ds.'.split('_'),
19 weekdaysMin : 'Dg_Dl_Dt_Dc_Dj_Dv_Ds'.split('_'),
25 LLL : 'D MMMM YYYY LT',
26 LLLL : 'dddd D MMMM YYYY LT'
29 sameDay : function () {
30 return '[avui a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT';
32 nextDay : function () {
33 return '[demà a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT';
35 nextWeek : function () {
36 return 'dddd [a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT';
38 lastDay : function () {
39 return '[ahir a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT';
41 lastWeek : function () {
42 return '[el] dddd [passat a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT';
61 ordinalParse: /\d{1,2}(r|n|t|è|a)/,
62 ordinal : function (number, period) {
63 var output = (number === 1) ? 'r' :
64 (number === 2) ? 'n' :
65 (number === 3) ? 'r' :
66 (number === 4) ? 't' : 'è';
67 if (period === 'w' || period === 'W') {
70 return number + output;
73 dow : 1, // Monday is the first day of the week.
74 doy : 4 // The week that contains Jan 4th is the first week of the year.