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.

29 lines
649B

  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var bg = {
  4. code: 'bg',
  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. allDayText: 'Цял ден',
  19. moreLinkText: function(n) {
  20. return '+още ' + n
  21. },
  22. noEventsText: 'Няма събития за показване',
  23. };
  24. return bg;
  25. }());