Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

pt-br.js 2.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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: 'domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado'.split(
  17. '_'
  18. ),
  19. weekdaysShort: 'dom_seg_ter_qua_qui_sex_sáb'.split('_'),
  20. weekdaysMin: 'do_2ª_3ª_4ª_5ª_6ª_sá'.split('_'),
  21. weekdaysParseExact: true,
  22. longDateFormat: {
  23. LT: 'HH:mm',
  24. LTS: 'HH:mm:ss',
  25. L: 'DD/MM/YYYY',
  26. LL: 'D [de] MMMM [de] YYYY',
  27. LLL: 'D [de] MMMM [de] YYYY [às] HH:mm',
  28. LLLL: 'dddd, D [de] MMMM [de] YYYY [às] HH:mm',
  29. },
  30. calendar: {
  31. sameDay: '[Hoje às] LT',
  32. nextDay: '[Amanhã às] LT',
  33. nextWeek: 'dddd [às] LT',
  34. lastDay: '[Ontem às] LT',
  35. lastWeek: function () {
  36. return this.day() === 0 || this.day() === 6
  37. ? '[Último] dddd [às] LT' // Saturday + Sunday
  38. : '[Última] dddd [às] LT'; // Monday - Friday
  39. },
  40. sameElse: 'L',
  41. },
  42. relativeTime: {
  43. future: 'em %s',
  44. past: 'há %s',
  45. s: 'poucos segundos',
  46. ss: '%d segundos',
  47. m: 'um minuto',
  48. mm: '%d minutos',
  49. h: 'uma hora',
  50. hh: '%d horas',
  51. d: 'um dia',
  52. dd: '%d dias',
  53. M: 'um mês',
  54. MM: '%d meses',
  55. y: 'um ano',
  56. yy: '%d anos',
  57. },
  58. dayOfMonthOrdinalParse: /\d{1,2}º/,
  59. ordinal: '%dº',
  60. invalidDate: 'Data inválida',
  61. });
  62. return ptBr;
  63. })));