v1.0 with SW PWA enabled
This commit is contained in:
2
frontend/node_modules/date-fns/locale/it/_lib/formatDistance.d.mts
generated
vendored
Normal file
2
frontend/node_modules/date-fns/locale/it/_lib/formatDistance.d.mts
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
import type { FormatDistanceFn } from "../../types.js";
|
||||
export declare const formatDistance: FormatDistanceFn;
|
||||
2
frontend/node_modules/date-fns/locale/it/_lib/formatDistance.d.ts
generated
vendored
Normal file
2
frontend/node_modules/date-fns/locale/it/_lib/formatDistance.d.ts
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
import type { FormatDistanceFn } from "../../types.js";
|
||||
export declare const formatDistance: FormatDistanceFn;
|
||||
105
frontend/node_modules/date-fns/locale/it/_lib/formatDistance.js
generated
vendored
Normal file
105
frontend/node_modules/date-fns/locale/it/_lib/formatDistance.js
generated
vendored
Normal file
@ -0,0 +1,105 @@
|
||||
"use strict";
|
||||
exports.formatDistance = void 0;
|
||||
|
||||
const formatDistanceLocale = {
|
||||
lessThanXSeconds: {
|
||||
one: "meno di un secondo",
|
||||
other: "meno di {{count}} secondi",
|
||||
},
|
||||
|
||||
xSeconds: {
|
||||
one: "un secondo",
|
||||
other: "{{count}} secondi",
|
||||
},
|
||||
|
||||
halfAMinute: "alcuni secondi",
|
||||
|
||||
lessThanXMinutes: {
|
||||
one: "meno di un minuto",
|
||||
other: "meno di {{count}} minuti",
|
||||
},
|
||||
|
||||
xMinutes: {
|
||||
one: "un minuto",
|
||||
other: "{{count}} minuti",
|
||||
},
|
||||
|
||||
aboutXHours: {
|
||||
one: "circa un'ora",
|
||||
other: "circa {{count}} ore",
|
||||
},
|
||||
|
||||
xHours: {
|
||||
one: "un'ora",
|
||||
other: "{{count}} ore",
|
||||
},
|
||||
|
||||
xDays: {
|
||||
one: "un giorno",
|
||||
other: "{{count}} giorni",
|
||||
},
|
||||
|
||||
aboutXWeeks: {
|
||||
one: "circa una settimana",
|
||||
other: "circa {{count}} settimane",
|
||||
},
|
||||
|
||||
xWeeks: {
|
||||
one: "una settimana",
|
||||
other: "{{count}} settimane",
|
||||
},
|
||||
|
||||
aboutXMonths: {
|
||||
one: "circa un mese",
|
||||
other: "circa {{count}} mesi",
|
||||
},
|
||||
|
||||
xMonths: {
|
||||
one: "un mese",
|
||||
other: "{{count}} mesi",
|
||||
},
|
||||
|
||||
aboutXYears: {
|
||||
one: "circa un anno",
|
||||
other: "circa {{count}} anni",
|
||||
},
|
||||
|
||||
xYears: {
|
||||
one: "un anno",
|
||||
other: "{{count}} anni",
|
||||
},
|
||||
|
||||
overXYears: {
|
||||
one: "più di un anno",
|
||||
other: "più di {{count}} anni",
|
||||
},
|
||||
|
||||
almostXYears: {
|
||||
one: "quasi un anno",
|
||||
other: "quasi {{count}} anni",
|
||||
},
|
||||
};
|
||||
|
||||
const formatDistance = (token, count, options) => {
|
||||
let result;
|
||||
|
||||
const tokenValue = formatDistanceLocale[token];
|
||||
if (typeof tokenValue === "string") {
|
||||
result = tokenValue;
|
||||
} else if (count === 1) {
|
||||
result = tokenValue.one;
|
||||
} else {
|
||||
result = tokenValue.other.replace("{{count}}", count.toString());
|
||||
}
|
||||
|
||||
if (options?.addSuffix) {
|
||||
if (options.comparison && options.comparison > 0) {
|
||||
return "tra " + result;
|
||||
} else {
|
||||
return result + " fa";
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
};
|
||||
exports.formatDistance = formatDistance;
|
||||
101
frontend/node_modules/date-fns/locale/it/_lib/formatDistance.mjs
generated
vendored
Normal file
101
frontend/node_modules/date-fns/locale/it/_lib/formatDistance.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
const formatDistanceLocale = {
|
||||
lessThanXSeconds: {
|
||||
one: "meno di un secondo",
|
||||
other: "meno di {{count}} secondi",
|
||||
},
|
||||
|
||||
xSeconds: {
|
||||
one: "un secondo",
|
||||
other: "{{count}} secondi",
|
||||
},
|
||||
|
||||
halfAMinute: "alcuni secondi",
|
||||
|
||||
lessThanXMinutes: {
|
||||
one: "meno di un minuto",
|
||||
other: "meno di {{count}} minuti",
|
||||
},
|
||||
|
||||
xMinutes: {
|
||||
one: "un minuto",
|
||||
other: "{{count}} minuti",
|
||||
},
|
||||
|
||||
aboutXHours: {
|
||||
one: "circa un'ora",
|
||||
other: "circa {{count}} ore",
|
||||
},
|
||||
|
||||
xHours: {
|
||||
one: "un'ora",
|
||||
other: "{{count}} ore",
|
||||
},
|
||||
|
||||
xDays: {
|
||||
one: "un giorno",
|
||||
other: "{{count}} giorni",
|
||||
},
|
||||
|
||||
aboutXWeeks: {
|
||||
one: "circa una settimana",
|
||||
other: "circa {{count}} settimane",
|
||||
},
|
||||
|
||||
xWeeks: {
|
||||
one: "una settimana",
|
||||
other: "{{count}} settimane",
|
||||
},
|
||||
|
||||
aboutXMonths: {
|
||||
one: "circa un mese",
|
||||
other: "circa {{count}} mesi",
|
||||
},
|
||||
|
||||
xMonths: {
|
||||
one: "un mese",
|
||||
other: "{{count}} mesi",
|
||||
},
|
||||
|
||||
aboutXYears: {
|
||||
one: "circa un anno",
|
||||
other: "circa {{count}} anni",
|
||||
},
|
||||
|
||||
xYears: {
|
||||
one: "un anno",
|
||||
other: "{{count}} anni",
|
||||
},
|
||||
|
||||
overXYears: {
|
||||
one: "più di un anno",
|
||||
other: "più di {{count}} anni",
|
||||
},
|
||||
|
||||
almostXYears: {
|
||||
one: "quasi un anno",
|
||||
other: "quasi {{count}} anni",
|
||||
},
|
||||
};
|
||||
|
||||
export const formatDistance = (token, count, options) => {
|
||||
let result;
|
||||
|
||||
const tokenValue = formatDistanceLocale[token];
|
||||
if (typeof tokenValue === "string") {
|
||||
result = tokenValue;
|
||||
} else if (count === 1) {
|
||||
result = tokenValue.one;
|
||||
} else {
|
||||
result = tokenValue.other.replace("{{count}}", count.toString());
|
||||
}
|
||||
|
||||
if (options?.addSuffix) {
|
||||
if (options.comparison && options.comparison > 0) {
|
||||
return "tra " + result;
|
||||
} else {
|
||||
return result + " fa";
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
};
|
||||
2
frontend/node_modules/date-fns/locale/it/_lib/formatLong.d.mts
generated
vendored
Normal file
2
frontend/node_modules/date-fns/locale/it/_lib/formatLong.d.mts
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
import type { FormatLong } from "../../types.js";
|
||||
export declare const formatLong: FormatLong;
|
||||
2
frontend/node_modules/date-fns/locale/it/_lib/formatLong.d.ts
generated
vendored
Normal file
2
frontend/node_modules/date-fns/locale/it/_lib/formatLong.d.ts
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
import type { FormatLong } from "../../types.js";
|
||||
export declare const formatLong: FormatLong;
|
||||
41
frontend/node_modules/date-fns/locale/it/_lib/formatLong.js
generated
vendored
Normal file
41
frontend/node_modules/date-fns/locale/it/_lib/formatLong.js
generated
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
"use strict";
|
||||
exports.formatLong = void 0;
|
||||
var _index = require("../../_lib/buildFormatLongFn.js");
|
||||
|
||||
const dateFormats = {
|
||||
full: "EEEE d MMMM y",
|
||||
long: "d MMMM y",
|
||||
medium: "d MMM y",
|
||||
short: "dd/MM/y",
|
||||
};
|
||||
|
||||
const timeFormats = {
|
||||
full: "HH:mm:ss zzzz",
|
||||
long: "HH:mm:ss z",
|
||||
medium: "HH:mm:ss",
|
||||
short: "HH:mm",
|
||||
};
|
||||
|
||||
const dateTimeFormats = {
|
||||
full: "{{date}} {{time}}",
|
||||
long: "{{date}} {{time}}",
|
||||
medium: "{{date}} {{time}}",
|
||||
short: "{{date}} {{time}}",
|
||||
};
|
||||
|
||||
const formatLong = (exports.formatLong = {
|
||||
date: (0, _index.buildFormatLongFn)({
|
||||
formats: dateFormats,
|
||||
defaultWidth: "full",
|
||||
}),
|
||||
|
||||
time: (0, _index.buildFormatLongFn)({
|
||||
formats: timeFormats,
|
||||
defaultWidth: "full",
|
||||
}),
|
||||
|
||||
dateTime: (0, _index.buildFormatLongFn)({
|
||||
formats: dateTimeFormats,
|
||||
defaultWidth: "full",
|
||||
}),
|
||||
});
|
||||
39
frontend/node_modules/date-fns/locale/it/_lib/formatLong.mjs
generated
vendored
Normal file
39
frontend/node_modules/date-fns/locale/it/_lib/formatLong.mjs
generated
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
import { buildFormatLongFn } from "../../_lib/buildFormatLongFn.mjs";
|
||||
|
||||
const dateFormats = {
|
||||
full: "EEEE d MMMM y",
|
||||
long: "d MMMM y",
|
||||
medium: "d MMM y",
|
||||
short: "dd/MM/y",
|
||||
};
|
||||
|
||||
const timeFormats = {
|
||||
full: "HH:mm:ss zzzz",
|
||||
long: "HH:mm:ss z",
|
||||
medium: "HH:mm:ss",
|
||||
short: "HH:mm",
|
||||
};
|
||||
|
||||
const dateTimeFormats = {
|
||||
full: "{{date}} {{time}}",
|
||||
long: "{{date}} {{time}}",
|
||||
medium: "{{date}} {{time}}",
|
||||
short: "{{date}} {{time}}",
|
||||
};
|
||||
|
||||
export const formatLong = {
|
||||
date: buildFormatLongFn({
|
||||
formats: dateFormats,
|
||||
defaultWidth: "full",
|
||||
}),
|
||||
|
||||
time: buildFormatLongFn({
|
||||
formats: timeFormats,
|
||||
defaultWidth: "full",
|
||||
}),
|
||||
|
||||
dateTime: buildFormatLongFn({
|
||||
formats: dateTimeFormats,
|
||||
defaultWidth: "full",
|
||||
}),
|
||||
};
|
||||
2
frontend/node_modules/date-fns/locale/it/_lib/formatRelative.d.mts
generated
vendored
Normal file
2
frontend/node_modules/date-fns/locale/it/_lib/formatRelative.d.mts
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
import type { FormatRelativeFn } from "../../types.js";
|
||||
export declare const formatRelative: FormatRelativeFn;
|
||||
2
frontend/node_modules/date-fns/locale/it/_lib/formatRelative.d.ts
generated
vendored
Normal file
2
frontend/node_modules/date-fns/locale/it/_lib/formatRelative.d.ts
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
import type { FormatRelativeFn } from "../../types.js";
|
||||
export declare const formatRelative: FormatRelativeFn;
|
||||
69
frontend/node_modules/date-fns/locale/it/_lib/formatRelative.js
generated
vendored
Normal file
69
frontend/node_modules/date-fns/locale/it/_lib/formatRelative.js
generated
vendored
Normal file
@ -0,0 +1,69 @@
|
||||
"use strict";
|
||||
exports.formatRelative = void 0;
|
||||
var _index = require("../../../isSameWeek.js");
|
||||
|
||||
const weekdays = [
|
||||
"domenica",
|
||||
"lunedì",
|
||||
"martedì",
|
||||
"mercoledì",
|
||||
"giovedì",
|
||||
"venerdì",
|
||||
"sabato",
|
||||
];
|
||||
|
||||
function lastWeek(day) {
|
||||
switch (day) {
|
||||
case 0:
|
||||
return "'domenica scorsa alle' p";
|
||||
default:
|
||||
return "'" + weekdays[day] + " scorso alle' p";
|
||||
}
|
||||
}
|
||||
|
||||
function thisWeek(day) {
|
||||
return "'" + weekdays[day] + " alle' p";
|
||||
}
|
||||
|
||||
function nextWeek(day) {
|
||||
switch (day) {
|
||||
case 0:
|
||||
return "'domenica prossima alle' p";
|
||||
default:
|
||||
return "'" + weekdays[day] + " prossimo alle' p";
|
||||
}
|
||||
}
|
||||
|
||||
const formatRelativeLocale = {
|
||||
lastWeek: (date, baseDate, options) => {
|
||||
const day = date.getDay();
|
||||
if ((0, _index.isSameWeek)(date, baseDate, options)) {
|
||||
return thisWeek(day);
|
||||
} else {
|
||||
return lastWeek(day);
|
||||
}
|
||||
},
|
||||
yesterday: "'ieri alle' p",
|
||||
today: "'oggi alle' p",
|
||||
tomorrow: "'domani alle' p",
|
||||
nextWeek: (date, baseDate, options) => {
|
||||
const day = date.getDay();
|
||||
if ((0, _index.isSameWeek)(date, baseDate, options)) {
|
||||
return thisWeek(day);
|
||||
} else {
|
||||
return nextWeek(day);
|
||||
}
|
||||
},
|
||||
other: "P",
|
||||
};
|
||||
|
||||
const formatRelative = (token, date, baseDate, options) => {
|
||||
const format = formatRelativeLocale[token];
|
||||
|
||||
if (typeof format === "function") {
|
||||
return format(date, baseDate, options);
|
||||
}
|
||||
|
||||
return format;
|
||||
};
|
||||
exports.formatRelative = formatRelative;
|
||||
66
frontend/node_modules/date-fns/locale/it/_lib/formatRelative.mjs
generated
vendored
Normal file
66
frontend/node_modules/date-fns/locale/it/_lib/formatRelative.mjs
generated
vendored
Normal file
@ -0,0 +1,66 @@
|
||||
import { isSameWeek } from "../../../isSameWeek.mjs";
|
||||
|
||||
const weekdays = [
|
||||
"domenica",
|
||||
"lunedì",
|
||||
"martedì",
|
||||
"mercoledì",
|
||||
"giovedì",
|
||||
"venerdì",
|
||||
"sabato",
|
||||
];
|
||||
|
||||
function lastWeek(day) {
|
||||
switch (day) {
|
||||
case 0:
|
||||
return "'domenica scorsa alle' p";
|
||||
default:
|
||||
return "'" + weekdays[day] + " scorso alle' p";
|
||||
}
|
||||
}
|
||||
|
||||
function thisWeek(day) {
|
||||
return "'" + weekdays[day] + " alle' p";
|
||||
}
|
||||
|
||||
function nextWeek(day) {
|
||||
switch (day) {
|
||||
case 0:
|
||||
return "'domenica prossima alle' p";
|
||||
default:
|
||||
return "'" + weekdays[day] + " prossimo alle' p";
|
||||
}
|
||||
}
|
||||
|
||||
const formatRelativeLocale = {
|
||||
lastWeek: (date, baseDate, options) => {
|
||||
const day = date.getDay();
|
||||
if (isSameWeek(date, baseDate, options)) {
|
||||
return thisWeek(day);
|
||||
} else {
|
||||
return lastWeek(day);
|
||||
}
|
||||
},
|
||||
yesterday: "'ieri alle' p",
|
||||
today: "'oggi alle' p",
|
||||
tomorrow: "'domani alle' p",
|
||||
nextWeek: (date, baseDate, options) => {
|
||||
const day = date.getDay();
|
||||
if (isSameWeek(date, baseDate, options)) {
|
||||
return thisWeek(day);
|
||||
} else {
|
||||
return nextWeek(day);
|
||||
}
|
||||
},
|
||||
other: "P",
|
||||
};
|
||||
|
||||
export const formatRelative = (token, date, baseDate, options) => {
|
||||
const format = formatRelativeLocale[token];
|
||||
|
||||
if (typeof format === "function") {
|
||||
return format(date, baseDate, options);
|
||||
}
|
||||
|
||||
return format;
|
||||
};
|
||||
2
frontend/node_modules/date-fns/locale/it/_lib/localize.d.mts
generated
vendored
Normal file
2
frontend/node_modules/date-fns/locale/it/_lib/localize.d.mts
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
import type { Localize } from "../../types.js";
|
||||
export declare const localize: Localize;
|
||||
2
frontend/node_modules/date-fns/locale/it/_lib/localize.d.ts
generated
vendored
Normal file
2
frontend/node_modules/date-fns/locale/it/_lib/localize.d.ts
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
import type { Localize } from "../../types.js";
|
||||
export declare const localize: Localize;
|
||||
166
frontend/node_modules/date-fns/locale/it/_lib/localize.js
generated
vendored
Normal file
166
frontend/node_modules/date-fns/locale/it/_lib/localize.js
generated
vendored
Normal file
@ -0,0 +1,166 @@
|
||||
"use strict";
|
||||
exports.localize = void 0;
|
||||
var _index = require("../../_lib/buildLocalizeFn.js");
|
||||
|
||||
const eraValues = {
|
||||
narrow: ["aC", "dC"],
|
||||
abbreviated: ["a.C.", "d.C."],
|
||||
wide: ["avanti Cristo", "dopo Cristo"],
|
||||
};
|
||||
|
||||
const quarterValues = {
|
||||
narrow: ["1", "2", "3", "4"],
|
||||
abbreviated: ["T1", "T2", "T3", "T4"],
|
||||
wide: ["1º trimestre", "2º trimestre", "3º trimestre", "4º trimestre"],
|
||||
};
|
||||
|
||||
const monthValues = {
|
||||
narrow: ["G", "F", "M", "A", "M", "G", "L", "A", "S", "O", "N", "D"],
|
||||
abbreviated: [
|
||||
"gen",
|
||||
"feb",
|
||||
"mar",
|
||||
"apr",
|
||||
"mag",
|
||||
"giu",
|
||||
"lug",
|
||||
"ago",
|
||||
"set",
|
||||
"ott",
|
||||
"nov",
|
||||
"dic",
|
||||
],
|
||||
|
||||
wide: [
|
||||
"gennaio",
|
||||
"febbraio",
|
||||
"marzo",
|
||||
"aprile",
|
||||
"maggio",
|
||||
"giugno",
|
||||
"luglio",
|
||||
"agosto",
|
||||
"settembre",
|
||||
"ottobre",
|
||||
"novembre",
|
||||
"dicembre",
|
||||
],
|
||||
};
|
||||
|
||||
const dayValues = {
|
||||
narrow: ["D", "L", "M", "M", "G", "V", "S"],
|
||||
short: ["dom", "lun", "mar", "mer", "gio", "ven", "sab"],
|
||||
abbreviated: ["dom", "lun", "mar", "mer", "gio", "ven", "sab"],
|
||||
wide: [
|
||||
"domenica",
|
||||
"lunedì",
|
||||
"martedì",
|
||||
"mercoledì",
|
||||
"giovedì",
|
||||
"venerdì",
|
||||
"sabato",
|
||||
],
|
||||
};
|
||||
|
||||
const dayPeriodValues = {
|
||||
narrow: {
|
||||
am: "m.",
|
||||
pm: "p.",
|
||||
midnight: "mezzanotte",
|
||||
noon: "mezzogiorno",
|
||||
morning: "mattina",
|
||||
afternoon: "pomeriggio",
|
||||
evening: "sera",
|
||||
night: "notte",
|
||||
},
|
||||
abbreviated: {
|
||||
am: "AM",
|
||||
pm: "PM",
|
||||
midnight: "mezzanotte",
|
||||
noon: "mezzogiorno",
|
||||
morning: "mattina",
|
||||
afternoon: "pomeriggio",
|
||||
evening: "sera",
|
||||
night: "notte",
|
||||
},
|
||||
wide: {
|
||||
am: "AM",
|
||||
pm: "PM",
|
||||
midnight: "mezzanotte",
|
||||
noon: "mezzogiorno",
|
||||
morning: "mattina",
|
||||
afternoon: "pomeriggio",
|
||||
evening: "sera",
|
||||
night: "notte",
|
||||
},
|
||||
};
|
||||
|
||||
const formattingDayPeriodValues = {
|
||||
narrow: {
|
||||
am: "m.",
|
||||
pm: "p.",
|
||||
midnight: "mezzanotte",
|
||||
noon: "mezzogiorno",
|
||||
morning: "di mattina",
|
||||
afternoon: "del pomeriggio",
|
||||
evening: "di sera",
|
||||
night: "di notte",
|
||||
},
|
||||
abbreviated: {
|
||||
am: "AM",
|
||||
pm: "PM",
|
||||
midnight: "mezzanotte",
|
||||
noon: "mezzogiorno",
|
||||
morning: "di mattina",
|
||||
afternoon: "del pomeriggio",
|
||||
evening: "di sera",
|
||||
night: "di notte",
|
||||
},
|
||||
wide: {
|
||||
am: "AM",
|
||||
pm: "PM",
|
||||
midnight: "mezzanotte",
|
||||
noon: "mezzogiorno",
|
||||
morning: "di mattina",
|
||||
afternoon: "del pomeriggio",
|
||||
evening: "di sera",
|
||||
night: "di notte",
|
||||
},
|
||||
};
|
||||
|
||||
const ordinalNumber = (dirtyNumber, _options) => {
|
||||
const number = Number(dirtyNumber);
|
||||
return String(number);
|
||||
};
|
||||
|
||||
const localize = (exports.localize = {
|
||||
ordinalNumber,
|
||||
|
||||
era: (0, _index.buildLocalizeFn)({
|
||||
values: eraValues,
|
||||
defaultWidth: "wide",
|
||||
}),
|
||||
|
||||
quarter: (0, _index.buildLocalizeFn)({
|
||||
values: quarterValues,
|
||||
defaultWidth: "wide",
|
||||
argumentCallback: (quarter) => quarter - 1,
|
||||
}),
|
||||
|
||||
month: (0, _index.buildLocalizeFn)({
|
||||
values: monthValues,
|
||||
defaultWidth: "wide",
|
||||
}),
|
||||
|
||||
day: (0, _index.buildLocalizeFn)({
|
||||
values: dayValues,
|
||||
defaultWidth: "wide",
|
||||
}),
|
||||
|
||||
dayPeriod: (0, _index.buildLocalizeFn)({
|
||||
values: dayPeriodValues,
|
||||
defaultWidth: "wide",
|
||||
formattingValues: formattingDayPeriodValues,
|
||||
defaultFormattingWidth: "wide",
|
||||
}),
|
||||
});
|
||||
164
frontend/node_modules/date-fns/locale/it/_lib/localize.mjs
generated
vendored
Normal file
164
frontend/node_modules/date-fns/locale/it/_lib/localize.mjs
generated
vendored
Normal file
@ -0,0 +1,164 @@
|
||||
import { buildLocalizeFn } from "../../_lib/buildLocalizeFn.mjs";
|
||||
|
||||
const eraValues = {
|
||||
narrow: ["aC", "dC"],
|
||||
abbreviated: ["a.C.", "d.C."],
|
||||
wide: ["avanti Cristo", "dopo Cristo"],
|
||||
};
|
||||
|
||||
const quarterValues = {
|
||||
narrow: ["1", "2", "3", "4"],
|
||||
abbreviated: ["T1", "T2", "T3", "T4"],
|
||||
wide: ["1º trimestre", "2º trimestre", "3º trimestre", "4º trimestre"],
|
||||
};
|
||||
|
||||
const monthValues = {
|
||||
narrow: ["G", "F", "M", "A", "M", "G", "L", "A", "S", "O", "N", "D"],
|
||||
abbreviated: [
|
||||
"gen",
|
||||
"feb",
|
||||
"mar",
|
||||
"apr",
|
||||
"mag",
|
||||
"giu",
|
||||
"lug",
|
||||
"ago",
|
||||
"set",
|
||||
"ott",
|
||||
"nov",
|
||||
"dic",
|
||||
],
|
||||
|
||||
wide: [
|
||||
"gennaio",
|
||||
"febbraio",
|
||||
"marzo",
|
||||
"aprile",
|
||||
"maggio",
|
||||
"giugno",
|
||||
"luglio",
|
||||
"agosto",
|
||||
"settembre",
|
||||
"ottobre",
|
||||
"novembre",
|
||||
"dicembre",
|
||||
],
|
||||
};
|
||||
|
||||
const dayValues = {
|
||||
narrow: ["D", "L", "M", "M", "G", "V", "S"],
|
||||
short: ["dom", "lun", "mar", "mer", "gio", "ven", "sab"],
|
||||
abbreviated: ["dom", "lun", "mar", "mer", "gio", "ven", "sab"],
|
||||
wide: [
|
||||
"domenica",
|
||||
"lunedì",
|
||||
"martedì",
|
||||
"mercoledì",
|
||||
"giovedì",
|
||||
"venerdì",
|
||||
"sabato",
|
||||
],
|
||||
};
|
||||
|
||||
const dayPeriodValues = {
|
||||
narrow: {
|
||||
am: "m.",
|
||||
pm: "p.",
|
||||
midnight: "mezzanotte",
|
||||
noon: "mezzogiorno",
|
||||
morning: "mattina",
|
||||
afternoon: "pomeriggio",
|
||||
evening: "sera",
|
||||
night: "notte",
|
||||
},
|
||||
abbreviated: {
|
||||
am: "AM",
|
||||
pm: "PM",
|
||||
midnight: "mezzanotte",
|
||||
noon: "mezzogiorno",
|
||||
morning: "mattina",
|
||||
afternoon: "pomeriggio",
|
||||
evening: "sera",
|
||||
night: "notte",
|
||||
},
|
||||
wide: {
|
||||
am: "AM",
|
||||
pm: "PM",
|
||||
midnight: "mezzanotte",
|
||||
noon: "mezzogiorno",
|
||||
morning: "mattina",
|
||||
afternoon: "pomeriggio",
|
||||
evening: "sera",
|
||||
night: "notte",
|
||||
},
|
||||
};
|
||||
|
||||
const formattingDayPeriodValues = {
|
||||
narrow: {
|
||||
am: "m.",
|
||||
pm: "p.",
|
||||
midnight: "mezzanotte",
|
||||
noon: "mezzogiorno",
|
||||
morning: "di mattina",
|
||||
afternoon: "del pomeriggio",
|
||||
evening: "di sera",
|
||||
night: "di notte",
|
||||
},
|
||||
abbreviated: {
|
||||
am: "AM",
|
||||
pm: "PM",
|
||||
midnight: "mezzanotte",
|
||||
noon: "mezzogiorno",
|
||||
morning: "di mattina",
|
||||
afternoon: "del pomeriggio",
|
||||
evening: "di sera",
|
||||
night: "di notte",
|
||||
},
|
||||
wide: {
|
||||
am: "AM",
|
||||
pm: "PM",
|
||||
midnight: "mezzanotte",
|
||||
noon: "mezzogiorno",
|
||||
morning: "di mattina",
|
||||
afternoon: "del pomeriggio",
|
||||
evening: "di sera",
|
||||
night: "di notte",
|
||||
},
|
||||
};
|
||||
|
||||
const ordinalNumber = (dirtyNumber, _options) => {
|
||||
const number = Number(dirtyNumber);
|
||||
return String(number);
|
||||
};
|
||||
|
||||
export const localize = {
|
||||
ordinalNumber,
|
||||
|
||||
era: buildLocalizeFn({
|
||||
values: eraValues,
|
||||
defaultWidth: "wide",
|
||||
}),
|
||||
|
||||
quarter: buildLocalizeFn({
|
||||
values: quarterValues,
|
||||
defaultWidth: "wide",
|
||||
argumentCallback: (quarter) => quarter - 1,
|
||||
}),
|
||||
|
||||
month: buildLocalizeFn({
|
||||
values: monthValues,
|
||||
defaultWidth: "wide",
|
||||
}),
|
||||
|
||||
day: buildLocalizeFn({
|
||||
values: dayValues,
|
||||
defaultWidth: "wide",
|
||||
}),
|
||||
|
||||
dayPeriod: buildLocalizeFn({
|
||||
values: dayPeriodValues,
|
||||
defaultWidth: "wide",
|
||||
formattingValues: formattingDayPeriodValues,
|
||||
defaultFormattingWidth: "wide",
|
||||
}),
|
||||
};
|
||||
2
frontend/node_modules/date-fns/locale/it/_lib/match.d.mts
generated
vendored
Normal file
2
frontend/node_modules/date-fns/locale/it/_lib/match.d.mts
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
import type { Match } from "../../types.js";
|
||||
export declare const match: Match;
|
||||
2
frontend/node_modules/date-fns/locale/it/_lib/match.d.ts
generated
vendored
Normal file
2
frontend/node_modules/date-fns/locale/it/_lib/match.d.ts
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
import type { Match } from "../../types.js";
|
||||
export declare const match: Match;
|
||||
136
frontend/node_modules/date-fns/locale/it/_lib/match.js
generated
vendored
Normal file
136
frontend/node_modules/date-fns/locale/it/_lib/match.js
generated
vendored
Normal file
@ -0,0 +1,136 @@
|
||||
"use strict";
|
||||
exports.match = void 0;
|
||||
|
||||
var _index = require("../../_lib/buildMatchFn.js");
|
||||
var _index2 = require("../../_lib/buildMatchPatternFn.js");
|
||||
|
||||
const matchOrdinalNumberPattern = /^(\d+)(º)?/i;
|
||||
const parseOrdinalNumberPattern = /\d+/i;
|
||||
|
||||
const matchEraPatterns = {
|
||||
narrow: /^(aC|dC)/i,
|
||||
abbreviated: /^(a\.?\s?C\.?|a\.?\s?e\.?\s?v\.?|d\.?\s?C\.?|e\.?\s?v\.?)/i,
|
||||
wide: /^(avanti Cristo|avanti Era Volgare|dopo Cristo|Era Volgare)/i,
|
||||
};
|
||||
const parseEraPatterns = {
|
||||
any: [/^a/i, /^(d|e)/i],
|
||||
};
|
||||
|
||||
const matchQuarterPatterns = {
|
||||
narrow: /^[1234]/i,
|
||||
abbreviated: /^t[1234]/i,
|
||||
wide: /^[1234](º)? trimestre/i,
|
||||
};
|
||||
const parseQuarterPatterns = {
|
||||
any: [/1/i, /2/i, /3/i, /4/i],
|
||||
};
|
||||
|
||||
const matchMonthPatterns = {
|
||||
narrow: /^[gfmalsond]/i,
|
||||
abbreviated: /^(gen|feb|mar|apr|mag|giu|lug|ago|set|ott|nov|dic)/i,
|
||||
wide: /^(gennaio|febbraio|marzo|aprile|maggio|giugno|luglio|agosto|settembre|ottobre|novembre|dicembre)/i,
|
||||
};
|
||||
const parseMonthPatterns = {
|
||||
narrow: [
|
||||
/^g/i,
|
||||
/^f/i,
|
||||
/^m/i,
|
||||
/^a/i,
|
||||
/^m/i,
|
||||
/^g/i,
|
||||
/^l/i,
|
||||
/^a/i,
|
||||
/^s/i,
|
||||
/^o/i,
|
||||
/^n/i,
|
||||
/^d/i,
|
||||
],
|
||||
|
||||
any: [
|
||||
/^ge/i,
|
||||
/^f/i,
|
||||
/^mar/i,
|
||||
/^ap/i,
|
||||
/^mag/i,
|
||||
/^gi/i,
|
||||
/^l/i,
|
||||
/^ag/i,
|
||||
/^s/i,
|
||||
/^o/i,
|
||||
/^n/i,
|
||||
/^d/i,
|
||||
],
|
||||
};
|
||||
|
||||
const matchDayPatterns = {
|
||||
narrow: /^[dlmgvs]/i,
|
||||
short: /^(do|lu|ma|me|gi|ve|sa)/i,
|
||||
abbreviated: /^(dom|lun|mar|mer|gio|ven|sab)/i,
|
||||
wide: /^(domenica|luned[i|ì]|marted[i|ì]|mercoled[i|ì]|gioved[i|ì]|venerd[i|ì]|sabato)/i,
|
||||
};
|
||||
const parseDayPatterns = {
|
||||
narrow: [/^d/i, /^l/i, /^m/i, /^m/i, /^g/i, /^v/i, /^s/i],
|
||||
any: [/^d/i, /^l/i, /^ma/i, /^me/i, /^g/i, /^v/i, /^s/i],
|
||||
};
|
||||
|
||||
const matchDayPeriodPatterns = {
|
||||
narrow:
|
||||
/^(a|m\.|p|mezzanotte|mezzogiorno|(di|del) (mattina|pomeriggio|sera|notte))/i,
|
||||
any: /^([ap]\.?\s?m\.?|mezzanotte|mezzogiorno|(di|del) (mattina|pomeriggio|sera|notte))/i,
|
||||
};
|
||||
const parseDayPeriodPatterns = {
|
||||
any: {
|
||||
am: /^a/i,
|
||||
pm: /^p/i,
|
||||
midnight: /^mezza/i,
|
||||
noon: /^mezzo/i,
|
||||
morning: /mattina/i,
|
||||
afternoon: /pomeriggio/i,
|
||||
evening: /sera/i,
|
||||
night: /notte/i,
|
||||
},
|
||||
};
|
||||
|
||||
const match = (exports.match = {
|
||||
ordinalNumber: (0, _index2.buildMatchPatternFn)({
|
||||
matchPattern: matchOrdinalNumberPattern,
|
||||
parsePattern: parseOrdinalNumberPattern,
|
||||
valueCallback: (value) => parseInt(value, 10),
|
||||
}),
|
||||
|
||||
era: (0, _index.buildMatchFn)({
|
||||
matchPatterns: matchEraPatterns,
|
||||
defaultMatchWidth: "wide",
|
||||
parsePatterns: parseEraPatterns,
|
||||
defaultParseWidth: "any",
|
||||
}),
|
||||
|
||||
quarter: (0, _index.buildMatchFn)({
|
||||
matchPatterns: matchQuarterPatterns,
|
||||
defaultMatchWidth: "wide",
|
||||
parsePatterns: parseQuarterPatterns,
|
||||
defaultParseWidth: "any",
|
||||
valueCallback: (index) => index + 1,
|
||||
}),
|
||||
|
||||
month: (0, _index.buildMatchFn)({
|
||||
matchPatterns: matchMonthPatterns,
|
||||
defaultMatchWidth: "wide",
|
||||
parsePatterns: parseMonthPatterns,
|
||||
defaultParseWidth: "any",
|
||||
}),
|
||||
|
||||
day: (0, _index.buildMatchFn)({
|
||||
matchPatterns: matchDayPatterns,
|
||||
defaultMatchWidth: "wide",
|
||||
parsePatterns: parseDayPatterns,
|
||||
defaultParseWidth: "any",
|
||||
}),
|
||||
|
||||
dayPeriod: (0, _index.buildMatchFn)({
|
||||
matchPatterns: matchDayPeriodPatterns,
|
||||
defaultMatchWidth: "any",
|
||||
parsePatterns: parseDayPeriodPatterns,
|
||||
defaultParseWidth: "any",
|
||||
}),
|
||||
});
|
||||
133
frontend/node_modules/date-fns/locale/it/_lib/match.mjs
generated
vendored
Normal file
133
frontend/node_modules/date-fns/locale/it/_lib/match.mjs
generated
vendored
Normal file
@ -0,0 +1,133 @@
|
||||
import { buildMatchFn } from "../../_lib/buildMatchFn.mjs";
|
||||
import { buildMatchPatternFn } from "../../_lib/buildMatchPatternFn.mjs";
|
||||
|
||||
const matchOrdinalNumberPattern = /^(\d+)(º)?/i;
|
||||
const parseOrdinalNumberPattern = /\d+/i;
|
||||
|
||||
const matchEraPatterns = {
|
||||
narrow: /^(aC|dC)/i,
|
||||
abbreviated: /^(a\.?\s?C\.?|a\.?\s?e\.?\s?v\.?|d\.?\s?C\.?|e\.?\s?v\.?)/i,
|
||||
wide: /^(avanti Cristo|avanti Era Volgare|dopo Cristo|Era Volgare)/i,
|
||||
};
|
||||
const parseEraPatterns = {
|
||||
any: [/^a/i, /^(d|e)/i],
|
||||
};
|
||||
|
||||
const matchQuarterPatterns = {
|
||||
narrow: /^[1234]/i,
|
||||
abbreviated: /^t[1234]/i,
|
||||
wide: /^[1234](º)? trimestre/i,
|
||||
};
|
||||
const parseQuarterPatterns = {
|
||||
any: [/1/i, /2/i, /3/i, /4/i],
|
||||
};
|
||||
|
||||
const matchMonthPatterns = {
|
||||
narrow: /^[gfmalsond]/i,
|
||||
abbreviated: /^(gen|feb|mar|apr|mag|giu|lug|ago|set|ott|nov|dic)/i,
|
||||
wide: /^(gennaio|febbraio|marzo|aprile|maggio|giugno|luglio|agosto|settembre|ottobre|novembre|dicembre)/i,
|
||||
};
|
||||
const parseMonthPatterns = {
|
||||
narrow: [
|
||||
/^g/i,
|
||||
/^f/i,
|
||||
/^m/i,
|
||||
/^a/i,
|
||||
/^m/i,
|
||||
/^g/i,
|
||||
/^l/i,
|
||||
/^a/i,
|
||||
/^s/i,
|
||||
/^o/i,
|
||||
/^n/i,
|
||||
/^d/i,
|
||||
],
|
||||
|
||||
any: [
|
||||
/^ge/i,
|
||||
/^f/i,
|
||||
/^mar/i,
|
||||
/^ap/i,
|
||||
/^mag/i,
|
||||
/^gi/i,
|
||||
/^l/i,
|
||||
/^ag/i,
|
||||
/^s/i,
|
||||
/^o/i,
|
||||
/^n/i,
|
||||
/^d/i,
|
||||
],
|
||||
};
|
||||
|
||||
const matchDayPatterns = {
|
||||
narrow: /^[dlmgvs]/i,
|
||||
short: /^(do|lu|ma|me|gi|ve|sa)/i,
|
||||
abbreviated: /^(dom|lun|mar|mer|gio|ven|sab)/i,
|
||||
wide: /^(domenica|luned[i|ì]|marted[i|ì]|mercoled[i|ì]|gioved[i|ì]|venerd[i|ì]|sabato)/i,
|
||||
};
|
||||
const parseDayPatterns = {
|
||||
narrow: [/^d/i, /^l/i, /^m/i, /^m/i, /^g/i, /^v/i, /^s/i],
|
||||
any: [/^d/i, /^l/i, /^ma/i, /^me/i, /^g/i, /^v/i, /^s/i],
|
||||
};
|
||||
|
||||
const matchDayPeriodPatterns = {
|
||||
narrow:
|
||||
/^(a|m\.|p|mezzanotte|mezzogiorno|(di|del) (mattina|pomeriggio|sera|notte))/i,
|
||||
any: /^([ap]\.?\s?m\.?|mezzanotte|mezzogiorno|(di|del) (mattina|pomeriggio|sera|notte))/i,
|
||||
};
|
||||
const parseDayPeriodPatterns = {
|
||||
any: {
|
||||
am: /^a/i,
|
||||
pm: /^p/i,
|
||||
midnight: /^mezza/i,
|
||||
noon: /^mezzo/i,
|
||||
morning: /mattina/i,
|
||||
afternoon: /pomeriggio/i,
|
||||
evening: /sera/i,
|
||||
night: /notte/i,
|
||||
},
|
||||
};
|
||||
|
||||
export const match = {
|
||||
ordinalNumber: buildMatchPatternFn({
|
||||
matchPattern: matchOrdinalNumberPattern,
|
||||
parsePattern: parseOrdinalNumberPattern,
|
||||
valueCallback: (value) => parseInt(value, 10),
|
||||
}),
|
||||
|
||||
era: buildMatchFn({
|
||||
matchPatterns: matchEraPatterns,
|
||||
defaultMatchWidth: "wide",
|
||||
parsePatterns: parseEraPatterns,
|
||||
defaultParseWidth: "any",
|
||||
}),
|
||||
|
||||
quarter: buildMatchFn({
|
||||
matchPatterns: matchQuarterPatterns,
|
||||
defaultMatchWidth: "wide",
|
||||
parsePatterns: parseQuarterPatterns,
|
||||
defaultParseWidth: "any",
|
||||
valueCallback: (index) => index + 1,
|
||||
}),
|
||||
|
||||
month: buildMatchFn({
|
||||
matchPatterns: matchMonthPatterns,
|
||||
defaultMatchWidth: "wide",
|
||||
parsePatterns: parseMonthPatterns,
|
||||
defaultParseWidth: "any",
|
||||
}),
|
||||
|
||||
day: buildMatchFn({
|
||||
matchPatterns: matchDayPatterns,
|
||||
defaultMatchWidth: "wide",
|
||||
parsePatterns: parseDayPatterns,
|
||||
defaultParseWidth: "any",
|
||||
}),
|
||||
|
||||
dayPeriod: buildMatchFn({
|
||||
matchPatterns: matchDayPeriodPatterns,
|
||||
defaultMatchWidth: "any",
|
||||
parsePatterns: parseDayPeriodPatterns,
|
||||
defaultParseWidth: "any",
|
||||
}),
|
||||
};
|
||||
Reference in New Issue
Block a user