pt-br.js 2.4 KB

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