Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

vor 2 Jahren
123456789101112131415161718192021222324252627
  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var fi = {
  4. code: 'fi',
  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: 'Edellinen',
  11. next: 'Seuraava',
  12. today: 'Tänään',
  13. month: 'Kuukausi',
  14. week: 'Viikko',
  15. day: 'Päivä',
  16. list: 'Tapahtumat',
  17. },
  18. weekText: 'Vk',
  19. allDayText: 'Koko päivä',
  20. moreLinkText: 'lisää',
  21. noEventsText: 'Ei näytettäviä tapahtumia',
  22. };
  23. return fi;
  24. }());