main page

This commit is contained in:
2025-12-17 17:55:13 +01:00
commit 7fb446c53a
8943 changed files with 1209030 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var formatRelativeLocale = {
lastWeek: "'o' eeee 'pasado á' LT",
yesterday: "'onte á' p",
today: "'hoxe á' p",
tomorrow: "'mañá á' p",
nextWeek: "eeee 'á' p",
other: 'P'
};
var formatRelativeLocalePlural = {
lastWeek: "'o' eeee 'pasado ás' p",
yesterday: "'onte ás' p",
today: "'hoxe ás' p",
tomorrow: "'mañá ás' p",
nextWeek: "eeee 'ás' p",
other: 'P'
};
var formatRelative = function formatRelative(token, date, _baseDate, _options) {
if (date.getUTCHours() !== 1) {
return formatRelativeLocalePlural[token];
}
return formatRelativeLocale[token];
};
var _default = formatRelative;
exports.default = _default;
module.exports = exports.default;