Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

pirms 2 gadiem
1234567891011121314151617181920212223242526272829
  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. }());