pt.js 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. //! moment.js locale configuration
  2. //! locale : Portuguese [pt]
  3. //! author : Jefferson : https://github.com/jalex79
  4. import moment from '../moment';
  5. export default moment.defineLocale('pt', {
  6. months: 'janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro'.split(
  7. '_'
  8. ),
  9. monthsShort: 'jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez'.split('_'),
  10. weekdays:
  11. 'Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado'.split(
  12. '_'
  13. ),
  14. weekdaysShort: 'Dom_Seg_Ter_Qua_Qui_Sex_Sáb'.split('_'),
  15. weekdaysMin: 'Do_2ª_3ª_4ª_5ª_6ª_Sá'.split('_'),
  16. weekdaysParseExact: true,
  17. longDateFormat: {
  18. LT: 'HH:mm',
  19. LTS: 'HH:mm:ss',
  20. L: 'DD/MM/YYYY',
  21. LL: 'D [de] MMMM [de] YYYY',
  22. LLL: 'D [de] MMMM [de] YYYY HH:mm',
  23. LLLL: 'dddd, D [de] MMMM [de] YYYY HH:mm',
  24. },
  25. calendar: {
  26. sameDay: '[Hoje às] LT',
  27. nextDay: '[Amanhã às] LT',
  28. nextWeek: 'dddd [às] LT',
  29. lastDay: '[Ontem às] LT',
  30. lastWeek: function () {
  31. return this.day() === 0 || this.day() === 6
  32. ? '[Último] dddd [às] LT' // Saturday + Sunday
  33. : '[Última] dddd [às] LT'; // Monday - Friday
  34. },
  35. sameElse: 'L',
  36. },
  37. relativeTime: {
  38. future: 'em %s',
  39. past: 'há %s',
  40. s: 'segundos',
  41. ss: '%d segundos',
  42. m: 'um minuto',
  43. mm: '%d minutos',
  44. h: 'uma hora',
  45. hh: '%d horas',
  46. d: 'um dia',
  47. dd: '%d dias',
  48. w: 'uma semana',
  49. ww: '%d semanas',
  50. M: 'um mês',
  51. MM: '%d meses',
  52. y: 'um ano',
  53. yy: '%d anos',
  54. },
  55. dayOfMonthOrdinalParse: /\d{1,2}º/,
  56. ordinal: '%dº',
  57. week: {
  58. dow: 1, // Monday is the first day of the week.
  59. doy: 4, // The week that contains Jan 4th is the first week of the year.
  60. },
  61. });