25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627
  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var eu = {
  4. code: 'eu',
  5. week: {
  6. dow: 1, // Monday is the first day of the week.
  7. doy: 7, // The week that contains Jan 1st is the first week of the year.
  8. },
  9. buttonText: {
  10. prev: 'Aur',
  11. next: 'Hur',
  12. today: 'Gaur',
  13. month: 'Hilabetea',
  14. week: 'Astea',
  15. day: 'Eguna',
  16. list: 'Agenda',
  17. },
  18. weekText: 'As',
  19. allDayText: 'Egun osoa',
  20. moreLinkText: 'gehiago',
  21. noEventsText: 'Ez dago ekitaldirik erakusteko',
  22. };
  23. return eu;
  24. }());