pt-br.js (2410B)
1//! moment.js locale configuration 2//! locale : Portuguese (Brazil) [pt-br] 3//! author : Caio Ribeiro Pereira : https://github.com/caio-ribeiro-pereira 4 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) : 9 factory(global.moment) 10}(this, (function (moment) { 'use strict'; 11 12 //! moment.js locale configuration 13 14 var ptBr = moment.defineLocale('pt-br', { 15 months: 'janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro'.split( 16 '_' 17 ), 18 monthsShort: 'jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez'.split('_'), 19 weekdays: 20 'domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado'.split( 21 '_' 22 ), 23 weekdaysShort: 'dom_seg_ter_qua_qui_sex_sáb'.split('_'), 24 weekdaysMin: 'do_2ª_3ª_4ª_5ª_6ª_sá'.split('_'), 25 weekdaysParseExact: true, 26 longDateFormat: { 27 LT: 'HH:mm', 28 LTS: 'HH:mm:ss', 29 L: 'DD/MM/YYYY', 30 LL: 'D [de] MMMM [de] YYYY', 31 LLL: 'D [de] MMMM [de] YYYY [às] HH:mm', 32 LLLL: 'dddd, D [de] MMMM [de] YYYY [às] HH:mm', 33 }, 34 calendar: { 35 sameDay: '[Hoje às] LT', 36 nextDay: '[Amanhã às] LT', 37 nextWeek: 'dddd [às] LT', 38 lastDay: '[Ontem às] LT', 39 lastWeek: function () { 40 return this.day() === 0 || this.day() === 6 41 ? '[Último] dddd [às] LT' // Saturday + Sunday 42 : '[Última] dddd [às] LT'; // Monday - Friday 43 }, 44 sameElse: 'L', 45 }, 46 relativeTime: { 47 future: 'em %s', 48 past: 'há %s', 49 s: 'poucos segundos', 50 ss: '%d segundos', 51 m: 'um minuto', 52 mm: '%d minutos', 53 h: 'uma hora', 54 hh: '%d horas', 55 d: 'um dia', 56 dd: '%d dias', 57 M: 'um mês', 58 MM: '%d meses', 59 y: 'um ano', 60 yy: '%d anos', 61 }, 62 dayOfMonthOrdinalParse: /\d{1,2}º/, 63 ordinal: '%dº', 64 invalidDate: 'Data inválida', 65 }); 66 67 return ptBr; 68 69})));