1 // moment.js language configuration
2 // language : brazilian portuguese (pt-br)
3 // author : Caio Ribeiro Pereira : https://github.com/caio-ribeiro-pereira
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(window
.moment
); // Browser global
14 return moment
.lang('pt-br', {
15 months
: "janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"),
16 monthsShort
: "jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"),
17 weekdays
: "domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado".split("_"),
18 weekdaysShort
: "dom_seg_ter_qua_qui_sex_sáb".split("_"),
19 weekdaysMin
: "dom_2ª_3ª_4ª_5ª_6ª_sáb".split("_"),
23 LL
: "D [de] MMMM [de] YYYY",
24 LLL
: "D [de] MMMM [de] YYYY [às] LT",
25 LLLL
: "dddd, D [de] MMMM [de] YYYY [às] LT"
28 sameDay
: '[Hoje às] LT',
29 nextDay
: '[Amanhã às] LT',
30 nextWeek
: 'dddd [às] LT',
31 lastDay
: '[Ontem às] LT',
32 lastWeek: function () {
33 return (this.day() === 0 || this.day() === 6) ?
34 '[Último] dddd [às] LT' : // Saturday + Sunday
35 '[Última] dddd [às] LT'; // Monday - Friday