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.

30 lines
622B

  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var sq = {
  4. code: 'sq',
  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: 'mbrapa',
  11. next: 'Përpara',
  12. today: 'sot',
  13. month: 'Muaj',
  14. week: 'Javë',
  15. day: 'Ditë',
  16. list: 'Listë',
  17. },
  18. weekText: 'Ja',
  19. allDayText: 'Gjithë ditën',
  20. moreLinkText: function(n) {
  21. return '+më tepër ' + n
  22. },
  23. noEventsText: 'Nuk ka evente për të shfaqur',
  24. };
  25. return sq;
  26. }());