Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

30 rindas
613B

  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var lv = {
  4. code: 'lv',
  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: 'Iepr.',
  11. next: 'Nāk.',
  12. today: 'Šodien',
  13. month: 'Mēnesis',
  14. week: 'Nedēļa',
  15. day: 'Diena',
  16. list: 'Dienas kārtība',
  17. },
  18. weekText: 'Ned.',
  19. allDayText: 'Visu dienu',
  20. moreLinkText: function(n) {
  21. return '+vēl ' + n
  22. },
  23. noEventsText: 'Nav notikumu',
  24. };
  25. return lv;
  26. }());