vue-cal
Version:
A Vue JS full calendar, no dependency, no BS. :metal:
71 lines (70 loc) • 1.17 kB
JavaScript
/**
* vue-cal v4.10.2
* (c) 2025 Antoni Andre <antoniandre.web@gmail.com>
* @license MIT
*/
const weekDays = [
"Понеделник",
"Вторник",
"Сряда",
"Четвъртък",
"Петък",
"Събота",
"Неделя"
];
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 bg = {
weekDays,
months,
years,
year,
month,
week,
day,
today,
noEvent,
allDay,
deleteEvent,
createEvent,
dateFormat
};
export {
allDay,
createEvent,
dateFormat,
day,
bg as default,
deleteEvent,
month,
months,
noEvent,
today,
week,
weekDays,
year,
years
};