Theme Assets

This commit is contained in:
2025-11-20 23:10:06 -06:00
parent c6c900464c
commit 26b49edfb4
3151 changed files with 629141 additions and 0 deletions

56
assets/vendor/flatpickr/esm/l10n/ro.js vendored Normal file
View File

@@ -0,0 +1,56 @@
var fp = typeof window !== "undefined" && window.flatpickr !== undefined
? window.flatpickr
: {
l10ns: {},
};
export var Romanian = {
weekdays: {
shorthand: ["Dum", "Lun", "Mar", "Mie", "Joi", "Vin", "Sâm"],
longhand: [
"Duminică",
"Luni",
"Marți",
"Miercuri",
"Joi",
"Vineri",
"Sâmbătă",
],
},
months: {
shorthand: [
"Ian",
"Feb",
"Mar",
"Apr",
"Mai",
"Iun",
"Iul",
"Aug",
"Sep",
"Oct",
"Noi",
"Dec",
],
longhand: [
"Ianuarie",
"Februarie",
"Martie",
"Aprilie",
"Mai",
"Iunie",
"Iulie",
"August",
"Septembrie",
"Octombrie",
"Noiembrie",
"Decembrie",
],
},
firstDayOfWeek: 1,
time_24hr: true,
ordinal: function () {
return "";
},
};
fp.l10ns.ro = Romanian;
export default fp.l10ns;