vue-cal
Version:
A Vue JS full calendar, no dependency, no BS. :metal:
71 lines (70 loc) • 1.01 kB
JavaScript
/**
* vue-cal v4.10.2
* (c) 2025 Antoni Andre <antoniandre.web@gmail.com>
* @license MIT
*/
const weekDays = [
"Pondělí",
"Úterý",
"Středa",
"Čtvrtek",
"Pátek",
"Sobota",
"Neděle"
];
const months = [
"Leden",
"Únor",
"Březen",
"Duben",
"Květen",
"Červen",
"Červenec",
"Srpen",
"Září",
"Říjen",
"Listopad",
"Prosinec"
];
const years = "Roky";
const year = "Rok";
const month = "Měsíc";
const week = "Týden";
const day = "Den";
const today = "Dnes";
const noEvent = "Bez událostí";
const allDay = "Celý den";
const deleteEvent = "Odstranit";
const createEvent = "Vytvořit událost";
const dateFormat = "dddd D. MMMM YYYY";
const cs = {
weekDays,
months,
years,
year,
month,
week,
day,
today,
noEvent,
allDay,
deleteEvent,
createEvent,
dateFormat
};
export {
allDay,
createEvent,
dateFormat,
day,
cs as default,
deleteEvent,
month,
months,
noEvent,
today,
week,
weekDays,
year,
years
};