sr-cyrl.js 692 B

1234567891011121314151617181920212223242526272829
  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var srCyrl = {
  4. code: "sr-cyrl",
  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: "Претходна",
  11. next: "следећи",
  12. today: "Данас",
  13. month: "Месец",
  14. week: "Недеља",
  15. day: "Дан",
  16. list: "Планер"
  17. },
  18. weekText: "Сед",
  19. allDayText: "Цео дан",
  20. moreLinkText: function(n) {
  21. return "+ још " + n;
  22. },
  23. noEventsText: "Нема догађаја за приказ"
  24. };
  25. return srCyrl;
  26. }());