No Description

ro.js 1008B

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.ro = factory()));
  5. }(this, function () { 'use strict';
  6. var ro = {
  7. code: "ro",
  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: "precedentă",
  14. next: "următoare",
  15. today: "Azi",
  16. month: "Lună",
  17. week: "Săptămână",
  18. day: "Zi",
  19. list: "Agendă"
  20. },
  21. weekLabel: "Săpt",
  22. allDayText: "Toată ziua",
  23. eventLimitText: function (n) {
  24. return "+alte " + n;
  25. },
  26. noEventsMessage: "Nu există evenimente de afișat"
  27. };
  28. return ro;
  29. }));