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

30 行
770B

  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var hi = {
  4. code: 'hi',
  5. week: {
  6. dow: 0, // Sunday is the first day of the week.
  7. doy: 6, // The week that contains Jan 1st is the first week of the year.
  8. },
  9. buttonText: {
  10. prev: 'पिछला',
  11. next: 'अगला',
  12. today: 'आज',
  13. month: 'महीना',
  14. week: 'सप्ताह',
  15. day: 'दिन',
  16. list: 'कार्यसूची',
  17. },
  18. weekText: 'हफ्ता',
  19. allDayText: 'सभी दिन',
  20. moreLinkText: function(n) {
  21. return '+अधिक ' + n
  22. },
  23. noEventsText: 'कोई घटनाओं को प्रदर्शित करने के लिए',
  24. };
  25. return hi;
  26. }());