설명 없음

bg.js 1020B

12345678910111213141516171819202122232425262728293031
  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.bg = factory()));
  5. }(this, function () { 'use strict';
  6. var bg = {
  7. code: "bg",
  8. week: {
  9. dow: 1,
  10. doy: 7 // 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. allDayText: "Цял ден",
  22. eventLimitText: function (n) {
  23. return "+още " + n;
  24. },
  25. noEventsMessage: "Няма събития за показване"
  26. };
  27. return bg;
  28. }));