1
0

hi.js 1.1 KB

1234567891011121314151617181920212223242526272829303132
  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.hi = factory()));
  5. }(this, function () { 'use strict';
  6. var hi = {
  7. code: "hi",
  8. week: {
  9. dow: 0,
  10. doy: 6 // The week that contains Jan 1st is the first week of the year.
  11. },
  12. buttonText: {
  13. prev: "पिछला",
  14. next: "अगला",
  15. today: "आज",
  16. month: "महीना",
  17. week: "सप्ताह",
  18. day: "दिन",
  19. list: "कार्यसूची"
  20. },
  21. weekLabel: "हफ्ता",
  22. allDayText: "सभी दिन",
  23. eventLimitText: function (n) {
  24. return "+अधिक " + n;
  25. },
  26. noEventsMessage: "कोई घटनाओं को प्रदर्शित करने के लिए"
  27. };
  28. return hi;
  29. }));