vue-cal
Version:
A Vue JS full calendar, no dependency, no BS. :metal:
82 lines (81 loc) • 1.32 kB
JavaScript
/**
* vue-cal v4.10.2
* (c) 2025 Antoni Andre <antoniandre.web@gmail.com>
* @license MIT
*/
const weekDays = [
"Понедельник",
"Вторник",
"Среда",
"Четверг",
"Пятница",
"Суббота",
"Воскресенье"
];
const weekDaysShort = [
"Пн",
"Вт",
"Ср",
"Чт",
"Пт",
"Сб",
"Вс"
];
const months = [
"Январь",
"Февраль",
"Март",
"Апрель",
"Май",
"Июнь",
"Июль",
"Август",
"Сентябрь",
"Октябрь",
"Ноябрь",
"Декабрь"
];
const years = "Годы";
const year = "Год";
const month = "Месяц";
const week = "Неделя";
const day = "День";
const today = "Сегодня";
const noEvent = "Нет событий";
const allDay = "Весь день";
const deleteEvent = "Удалить";
const createEvent = "Создать событие";
const dateFormat = "dddd D MMMM YYYY";
const ru = {
weekDays,
weekDaysShort,
months,
years,
year,
month,
week,
day,
today,
noEvent,
allDay,
deleteEvent,
createEvent,
dateFormat
};
export {
allDay,
createEvent,
dateFormat,
day,
ru as default,
deleteEvent,
month,
months,
noEvent,
today,
week,
weekDays,
weekDaysShort,
year,
years
};