You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
2.3 KiB

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