uk.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.uk = factory()));
  5. }(this, function () { 'use strict';
  6. var uk = {
  7. code: "uk",
  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. weekLabel: "Тиж",
  22. allDayText: "Увесь день",
  23. eventLimitText: function (n) {
  24. return "+ще " + n + "...";
  25. },
  26. noEventsMessage: "Немає подій для відображення"
  27. };
  28. return uk;
  29. }));