1 //! moment.js locale configuration
2 //! locale : Portuguese (Brazil) [pt-br]
3 //! author : Caio Ribeiro Pereira : https://github.com/caio-ribeiro-pereira
5 ;(function (global, factory) {
6 typeof exports === 'object' && typeof module !== 'undefined'
7 && typeof require === 'function' ? factory(require('../moment')) :
8 typeof define === 'function' && define.amd ? define(['../moment'], factory) :
10 }(this, (function (moment) { 'use strict';
12 //! moment.js locale configuration
14 var ptBr = moment.defineLocale('pt-br', {
15 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(
22 weekdaysShort: 'dom_seg_ter_qua_qui_sex_sáb'.split('_'),
23 weekdaysMin: 'do_2ª_3ª_4ª_5ª_6ª_sá'.split('_'),
24 weekdaysParseExact: true,
29 LL: 'D [de] MMMM [de] YYYY',
30 LLL: 'D [de] MMMM [de] YYYY [às] HH:mm',
31 LLLL: 'dddd, D [de] MMMM [de] YYYY [às] HH:mm',
34 sameDay: '[Hoje às] LT',
35 nextDay: '[Amanhã às] LT',
36 nextWeek: 'dddd [às] LT',
37 lastDay: '[Ontem às] LT',
38 lastWeek: function () {
39 return this.day() === 0 || this.day() === 6
40 ? '[Último] dddd [às] LT' // Saturday + Sunday
41 : '[Última] dddd [às] LT'; // Monday - Friday
61 dayOfMonthOrdinalParse: /\d{1,2}º/,