mirror of
https://github.com/wassname/fullcalendar.git
synced 2026-07-12 00:50:41 +08:00
14 lines
227 B
JavaScript
14 lines
227 B
JavaScript
|
|
$.fullCalendar.lang("lv", {
|
|
defaultButtonText: {
|
|
month: "Mēnesis",
|
|
week: "Nedēļa",
|
|
day: "Diena",
|
|
list: "Dienas kārtība"
|
|
},
|
|
allDayText: "Visu dienu",
|
|
eventLimitText: function(n) {
|
|
return "+vēl " + n;
|
|
}
|
|
});
|