No Description

is.js 953B

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.is = factory()));
  5. }(this, function () { 'use strict';
  6. var is = {
  7. code: "is",
  8. week: {
  9. dow: 1,
  10. doy: 4 // The week that contains Jan 4th is the first week of the year.
  11. },
  12. buttonText: {
  13. prev: "Fyrri",
  14. next: "Næsti",
  15. today: "Í dag",
  16. month: "Mánuður",
  17. week: "Vika",
  18. day: "Dagur",
  19. list: "Dagskrá"
  20. },
  21. weekLabel: "Vika",
  22. allDayHtml: "Allan<br/>daginn",
  23. eventLimitText: "meira",
  24. noEventsMessage: "Engir viðburðir til að sýna"
  25. };
  26. return is;
  27. }));