UNPKG

692 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var ru = {
5 code: "ru",
6 week: {
7 dow: 1, // Monday is the first day of the week.
8 doy: 4 // The week that contains Jan 4th is the first week of the year.
9 },
10 buttonText: {
11 prev: "Пред",
12 next: "След",
13 today: "Сегодня",
14 month: "Месяц",
15 week: "Неделя",
16 day: "День",
17 list: "Повестка дня"
18 },
19 weekText: "Нед",
20 allDayText: "Весь день",
21 moreLinkText: function(n) {
22 return "+ ещё " + n;
23 },
24 noEventsText: "Нет событий для отображения"
25 };
26
27 return ru;
28
29}());