選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

123456789101112131415161718192021222324252627
  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var hu = {
  4. code: 'hu',
  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: 'vissza',
  11. next: 'előre',
  12. today: 'ma',
  13. month: 'Hónap',
  14. week: 'Hét',
  15. day: 'Nap',
  16. list: 'Lista',
  17. },
  18. weekText: 'Hét',
  19. allDayText: 'Egész nap',
  20. moreLinkText: 'további',
  21. noEventsText: 'Nincs megjeleníthető esemény',
  22. };
  23. return hu;
  24. }());