No Description

pt-br.js 878B

12345678910111213141516171819202122232425262728
  1. (function (global, factory) {
  2. typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
  3. typeof define === 'function' && define.amd ? define(factory) :
  4. (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['pt-br'] = factory()));
  5. }(this, function () { 'use strict';
  6. var ptBr = {
  7. code: "pt-br",
  8. buttonText: {
  9. prev: "Anterior",
  10. next: "Próximo",
  11. today: "Hoje",
  12. month: "Mês",
  13. week: "Semana",
  14. day: "Dia",
  15. list: "Compromissos"
  16. },
  17. weekLabel: "Sm",
  18. allDayText: "dia inteiro",
  19. eventLimitText: function (n) {
  20. return "mais +" + n;
  21. },
  22. noEventsMessage: "Não há eventos para mostrar"
  23. };
  24. return ptBr;
  25. }));