vue-cal
Version:
A Vue JS full calendar, no dependency, no BS. :metal:
71 lines (70 loc) • 1.09 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 he = {
weekDays,
months,
years,
year,
month,
week,
day,
today,
noEvent,
allDay,
deleteEvent,
createEvent,
dateFormat
};
export {
allDay,
createEvent,
dateFormat,
day,
he as default,
deleteEvent,
month,
months,
noEvent,
today,
week,
weekDays,
year,
years
};