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

ms.js 639B

1234567891011121314151617181920212223242526272829
  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var ms = {
  4. code: 'ms',
  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: 'Sebelum',
  11. next: 'Selepas',
  12. today: 'hari ini',
  13. month: 'Bulan',
  14. week: 'Minggu',
  15. day: 'Hari',
  16. list: 'Agenda',
  17. },
  18. weekText: 'Mg',
  19. allDayText: 'Sepanjang hari',
  20. moreLinkText: function(n) {
  21. return 'masih ada ' + n + ' acara'
  22. },
  23. noEventsText: 'Tiada peristiwa untuk dipaparkan',
  24. };
  25. return ms;
  26. }());