vue-cal
Version:
A Vue JS full calendar, no dependency, no BS. :metal:
71 lines (70 loc) • 1.15 kB
JavaScript
/**
* vue-cal v4.10.2
* (c) 2025 Antoni Andre <antoniandre.web@gmail.com>
* @license MIT
*/
const weekDays = [
"Даваа",
"Мягмар",
"Лхавга",
"Пүрэв",
"Баасан",
"Бямба",
"Ням"
];
const months = [
"1-р сар",
"2-р сар",
"3-р сар",
"4-р сар",
"5-р сар",
"6-р сар",
"7-р сар",
"8-р сар",
"9-р сар",
"10-р сар",
"11-р сар",
"12-р сар"
];
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 mn = {
weekDays,
months,
years,
year,
month,
week,
day,
today,
noEvent,
allDay,
deleteEvent,
createEvent,
dateFormat
};
export {
allDay,
createEvent,
dateFormat,
day,
mn as default,
deleteEvent,
month,
months,
noEvent,
today,
week,
weekDays,
year,
years
};