ro.js 334 B

123456789101112131415
  1. $.fullCalendar.lang("ro", {
  2. defaultButtonText: {
  3. prev: "precedentă", // override JQUI's translations, which contains the word "month"
  4. next: "următoare", // "
  5. month: "Lună",
  6. week: "Săptămână",
  7. day: "Zi",
  8. list: "Agendă"
  9. },
  10. allDayText: "Toată ziua",
  11. eventLimitText: function(n) {
  12. return "+alte " + n;
  13. }
  14. });