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

28 lines
581B

  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var id = {
  4. code: 'id',
  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: 'mundur',
  11. next: 'maju',
  12. today: 'hari ini',
  13. month: 'Bulan',
  14. week: 'Minggu',
  15. day: 'Hari',
  16. list: 'Agenda',
  17. },
  18. weekText: 'Mg',
  19. allDayText: 'Sehari penuh',
  20. moreLinkText: 'lebih',
  21. noEventsText: 'Tidak ada acara untuk ditampilkan',
  22. };
  23. return id;
  24. }());