Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

30 linhas
618B

  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var hr = {
  4. code: 'hr',
  5. week: {
  6. dow: 1, // Monday is the first day of the week.
  7. doy: 7, // The week that contains Jan 1st is the first week of the year.
  8. },
  9. buttonText: {
  10. prev: 'Prijašnji',
  11. next: 'Sljedeći',
  12. today: 'Danas',
  13. month: 'Mjesec',
  14. week: 'Tjedan',
  15. day: 'Dan',
  16. list: 'Raspored',
  17. },
  18. weekText: 'Tje',
  19. allDayText: 'Cijeli dan',
  20. moreLinkText: function(n) {
  21. return '+ još ' + n
  22. },
  23. noEventsText: 'Nema događaja za prikaz',
  24. };
  25. return hr;
  26. }());