| 123456789101112131415 |
- $.fullCalendar.lang("ro", {
- defaultButtonText: {
- prev: "precedentă", // override JQUI's translations, which contains the word "month"
- next: "următoare", // "
- month: "Lună",
- week: "Săptămână",
- day: "Zi",
- list: "Agendă"
- },
- allDayText: "Toată ziua",
- eventLimitText: function(n) {
- return "+alte " + n;
- }
- });
|