
// full day names
Vovochka.Calendar._DN = new Array
("Воскресенье",
 "Понедельник",
 "Вторник",
 "Среда",
 "Четверг",
 "Пятница",
 "Суббота",
 "Воскресенье");

// Please note that the following array of short day names (and the same goes
// for short month names, _SMN) isn't absolutely necessary.  We give it here
// for exemplification on how one can customize the short day names, but if
// they are simply the first N letters of the full name you can simply say:
//
//   Vovochka.Calendar._SDN_len = N; // short day name length
//   Vovochka.Calendar._SMN_len = N; // short month name length
//
// If N = 3 then this is not needed either since we assume a value of 3 if not
// present, to be compatible with translation files that were written before
// this feature.

// short day names
Vovochka.Calendar._SDN = new Array
("Вск",
 "Пн",
 "Вт",
 "Ср",
 "Чт",
 "Пт",
 "Сб",
 "Вск");

// full month names
Vovochka.Calendar._MN = new Array
("Январь",
 "Февраль",
 "Март",
 "Апрель",
 "Май",
 "Июнь",
 "Июль",
 "Август",
 "Сентябрь",
 "Октябрь",
 "Ноябрь",
 "Декабрь");

// short month names
Vovochka.Calendar._SMN = new Array
("Янв",
 "Фев",
 "Мар",
 "Апр",
 "Май",
 "Июн",
 "Июл",
 "Авг",
 "Сен",
 "Окт",
 "Ноя",
 "Дек");

// tooltips
Vovochka.Calendar._TT_ru = Vovochka.Calendar._TT = {};
Vovochka.Calendar._TT["INFO"] = "О календаре...";

Vovochka.Calendar._TT["ABOUT"] =
"Как выбрать дату:\n" +
"- При помощи кнопок \xab, \xbb можно выбрать год\n" +
"- При помощи кнопок " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " можно выбрать месяц\n" +
"- Подержите эти кнопки нажатыми, чтобы появилось меню быстрого выбора.";
Vovochka.Calendar._TT["ABOUT_TIME"] = "\n\n" +
"Как выбрать время:\n" +
"- При клике на часах или минутах они увеличиваются\n" +
"- при клике с нажатой клавишей Shift они уменьшаются\n" +
"- если нажать и двигать мышкой влево/вправо, они будут меняться быстрее.";

Vovochka.Calendar._TT["PREV_YEAR"] = "На год назад";
Vovochka.Calendar._TT["PREV_MONTH"] = "На месяц назад";
Vovochka.Calendar._TT["GO_TODAY"] = "Сегодня";
Vovochka.Calendar._TT["NEXT_MONTH"] = "На месяц вперед";
Vovochka.Calendar._TT["NEXT_YEAR"] = "На год вперед";
Vovochka.Calendar._TT["SEL_DATE"] = "Выберите дату";
Vovochka.Calendar._TT["DRAG_TO_MOVE"] = "Перетаскивайте мышкой";
Vovochka.Calendar._TT["PART_TODAY"] = " (сегодня)";

// the following is to inform that "%s" is to be the first day of week
// %s will be replaced with the day name.
Vovochka.Calendar._TT["DAY_FIRST"] = "Показать первым";

// This may be locale-dependent.  It specifies the week-end days, as an array
// of comma-separated numbers.  The numbers are from 0 to 6: 0 means Sunday, 1
// means Monday, etc.
Vovochka.Calendar._TT["WEEKEND"] = "0,6";

Vovochka.Calendar._TT["CLOSE"] = "Закрыть";
Vovochka.Calendar._TT["TODAY"] = "Сегодня";
Vovochka.Calendar._TT["TIME_PART"] = "Нажать и двигать";

// date formats
Vovochka.Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
Vovochka.Calendar._TT["TT_DATE_FORMAT"] = "%e %b, %a";

Vovochka.Calendar._TT["WK"] = "нед";
Vovochka.Calendar._TT["TIME"] = "Время:";

/* Preserve data */
	if(Vovochka.Calendar._DN) Vovochka.Calendar._TT._DN = Vovochka.Calendar._DN;
	if(Vovochka.Calendar._SDN) Vovochka.Calendar._TT._SDN = Vovochka.Calendar._SDN;
	if(Vovochka.Calendar._SDN_len) Vovochka.Calendar._TT._SDN_len = Vovochka.Calendar._SDN_len;
	if(Vovochka.Calendar._MN) Vovochka.Calendar._TT._MN = Vovochka.Calendar._MN;
	if(Vovochka.Calendar._SMN) Vovochka.Calendar._TT._SMN = Vovochka.Calendar._SMN;
	if(Vovochka.Calendar._SMN_len) Vovochka.Calendar._TT._SMN_len = Vovochka.Calendar._SMN_len;
	Vovochka.Calendar._DN = Vovochka.Calendar._SDN = Vovochka.Calendar._SDN_len = Vovochka.Calendar._MN = Vovochka.Calendar._SMN = Vovochka.Calendar._SMN_len = null
