Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

před 2 roky
1234567891011121314151617181920212223242526272829
  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var az = {
  4. code: 'az',
  5. week: {
  6. dow: 1, // Monday is the first day of the week.
  7. doy: 4, // The week that contains Jan 4th is the first week of the year.
  8. },
  9. buttonText: {
  10. prev: 'Əvvəl',
  11. next: 'Sonra',
  12. today: 'Bu Gün',
  13. month: 'Ay',
  14. week: 'Həftə',
  15. day: 'Gün',
  16. list: 'Gündəm',
  17. },
  18. weekText: 'Həftə',
  19. allDayText: 'Bütün Gün',
  20. moreLinkText: function(n) {
  21. return '+ daha çox ' + n
  22. },
  23. noEventsText: 'Göstərmək üçün hadisə yoxdur',
  24. };
  25. return az;
  26. }());