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 = [
"Pondelok",
"Utorok",
"Streda",
"Štvrtok",
"Piatok",
"Sobota",
"Nedeľa"
];
const months = [
"Január",
"Február",
"Marec",
"Apríl",
"Máj",
"Jún",
"Júl",
"August",
"September",
"Október",
"November",
"December"
];
const years = "Roky";
const year = "Rok";
const month = "Mesiac";
const week = "Týždeň";
const day = "Deň";
const today = "Dnes";
const noEvent = "Bez udalosti";
const allDay = "Celý deň";
const deleteEvent = "Odstrániť";
const createEvent = "Vytvoriť udalosť";
const dateFormat = "dddd D. MMMM YYYY";
const sk = {
weekDays,
months,
years,
year,
month,
week,
day,
today,
noEvent,
allDay,
deleteEvent,
createEvent,
dateFormat
};
export {
allDay,
createEvent,
dateFormat,
day,
sk as default,
deleteEvent,
month,
months,
noEvent,
today,
week,
weekDays,
year,
years
};