1
0

id.js 949 B

123456789101112131415161718192021222324252627282930
  1. (function (global, factory) {
  2. typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
  3. typeof define === 'function' && define.amd ? define(factory) :
  4. (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.id = factory()));
  5. }(this, function () { 'use strict';
  6. var id = {
  7. code: "id",
  8. week: {
  9. dow: 1,
  10. doy: 7 // The week that contains Jan 1st is the first week of the year.
  11. },
  12. buttonText: {
  13. prev: "mundur",
  14. next: "maju",
  15. today: "hari ini",
  16. month: "Bulan",
  17. week: "Minggu",
  18. day: "Hari",
  19. list: "Agenda"
  20. },
  21. weekLabel: "Mg",
  22. allDayHtml: "Sehari<br/>penuh",
  23. eventLimitText: "lebih",
  24. noEventsMessage: "Tidak ada acara untuk ditampilkan"
  25. };
  26. return id;
  27. }));