1 // moment.js locale configuration
2 // locale : portuguese (pt)
3 // author : Jefferson : https://github.com/jalex79
6 // Comment out broken wrapper, see T145382
7 /*if (typeof define === 'function' && define.amd) {
8 define(['moment'], factory); // AMD
9 } else if (typeof exports === 'object') {
10 module.exports = factory(require('../moment')); // Node
12 factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
16 return moment.defineLocale('pt', {
17 months : 'janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro'.split('_'),
18 monthsShort : 'jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez'.split('_'),
19 weekdays : 'domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado'.split('_'),
20 weekdaysShort : 'dom_seg_ter_qua_qui_sex_sáb'.split('_'),
21 weekdaysMin : 'dom_2ª_3ª_4ª_5ª_6ª_sáb'.split('_'),
26 LL : 'D [de] MMMM [de] YYYY',
27 LLL : 'D [de] MMMM [de] YYYY LT',
28 LLLL : 'dddd, D [de] MMMM [de] YYYY LT'
31 sameDay: '[Hoje às] LT',
32 nextDay: '[Amanhã às] LT',
33 nextWeek: 'dddd [às] LT',
34 lastDay: '[Ontem às] LT',
35 lastWeek: function () {
36 return (this.day() === 0 || this.day() === 6) ?
37 '[Último] dddd [às] LT' : // Saturday + Sunday
38 '[Última] dddd [às] LT'; // Monday - Friday
57 ordinalParse: /\d{1,2}º/,
60 dow : 1, // Monday is the first day of the week.
61 doy : 4 // The week that contains Jan 4th is the first week of the year.