FIN INIT
This commit is contained in:
147
node_modules/date-fns/locale/fi/_lib/formatDistance.cjs
generated
vendored
Normal file
147
node_modules/date-fns/locale/fi/_lib/formatDistance.cjs
generated
vendored
Normal file
@ -0,0 +1,147 @@
|
||||
"use strict";
|
||||
exports.formatDistance = void 0;
|
||||
|
||||
function futureSeconds(text) {
|
||||
return text.replace(/sekuntia?/, "sekunnin");
|
||||
}
|
||||
|
||||
function futureMinutes(text) {
|
||||
return text.replace(/minuuttia?/, "minuutin");
|
||||
}
|
||||
|
||||
function futureHours(text) {
|
||||
return text.replace(/tuntia?/, "tunnin");
|
||||
}
|
||||
|
||||
function futureDays(text) {
|
||||
return text.replace(/päivää?/, "päivän");
|
||||
}
|
||||
|
||||
function futureWeeks(text) {
|
||||
return text.replace(/(viikko|viikkoa)/, "viikon");
|
||||
}
|
||||
|
||||
function futureMonths(text) {
|
||||
return text.replace(/(kuukausi|kuukautta)/, "kuukauden");
|
||||
}
|
||||
|
||||
function futureYears(text) {
|
||||
return text.replace(/(vuosi|vuotta)/, "vuoden");
|
||||
}
|
||||
|
||||
const formatDistanceLocale = {
|
||||
lessThanXSeconds: {
|
||||
one: "alle sekunti",
|
||||
other: "alle {{count}} sekuntia",
|
||||
futureTense: futureSeconds,
|
||||
},
|
||||
|
||||
xSeconds: {
|
||||
one: "sekunti",
|
||||
other: "{{count}} sekuntia",
|
||||
futureTense: futureSeconds,
|
||||
},
|
||||
|
||||
halfAMinute: {
|
||||
one: "puoli minuuttia",
|
||||
other: "puoli minuuttia",
|
||||
futureTense: (_text) => "puolen minuutin",
|
||||
},
|
||||
|
||||
lessThanXMinutes: {
|
||||
one: "alle minuutti",
|
||||
other: "alle {{count}} minuuttia",
|
||||
futureTense: futureMinutes,
|
||||
},
|
||||
|
||||
xMinutes: {
|
||||
one: "minuutti",
|
||||
other: "{{count}} minuuttia",
|
||||
futureTense: futureMinutes,
|
||||
},
|
||||
|
||||
aboutXHours: {
|
||||
one: "noin tunti",
|
||||
other: "noin {{count}} tuntia",
|
||||
futureTense: futureHours,
|
||||
},
|
||||
|
||||
xHours: {
|
||||
one: "tunti",
|
||||
other: "{{count}} tuntia",
|
||||
futureTense: futureHours,
|
||||
},
|
||||
|
||||
xDays: {
|
||||
one: "päivä",
|
||||
other: "{{count}} päivää",
|
||||
futureTense: futureDays,
|
||||
},
|
||||
|
||||
aboutXWeeks: {
|
||||
one: "noin viikko",
|
||||
other: "noin {{count}} viikkoa",
|
||||
futureTense: futureWeeks,
|
||||
},
|
||||
|
||||
xWeeks: {
|
||||
one: "viikko",
|
||||
other: "{{count}} viikkoa",
|
||||
futureTense: futureWeeks,
|
||||
},
|
||||
|
||||
aboutXMonths: {
|
||||
one: "noin kuukausi",
|
||||
other: "noin {{count}} kuukautta",
|
||||
futureTense: futureMonths,
|
||||
},
|
||||
|
||||
xMonths: {
|
||||
one: "kuukausi",
|
||||
other: "{{count}} kuukautta",
|
||||
futureTense: futureMonths,
|
||||
},
|
||||
|
||||
aboutXYears: {
|
||||
one: "noin vuosi",
|
||||
other: "noin {{count}} vuotta",
|
||||
futureTense: futureYears,
|
||||
},
|
||||
|
||||
xYears: {
|
||||
one: "vuosi",
|
||||
other: "{{count}} vuotta",
|
||||
futureTense: futureYears,
|
||||
},
|
||||
|
||||
overXYears: {
|
||||
one: "yli vuosi",
|
||||
other: "yli {{count}} vuotta",
|
||||
futureTense: futureYears,
|
||||
},
|
||||
|
||||
almostXYears: {
|
||||
one: "lähes vuosi",
|
||||
other: "lähes {{count}} vuotta",
|
||||
futureTense: futureYears,
|
||||
},
|
||||
};
|
||||
|
||||
const formatDistance = (token, count, options) => {
|
||||
const tokenValue = formatDistanceLocale[token];
|
||||
const result =
|
||||
count === 1
|
||||
? tokenValue.one
|
||||
: tokenValue.other.replace("{{count}}", String(count));
|
||||
|
||||
if (options?.addSuffix) {
|
||||
if (options.comparison && options.comparison > 0) {
|
||||
return tokenValue.futureTense(result) + " kuluttua";
|
||||
} else {
|
||||
return result + " sitten";
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
};
|
||||
exports.formatDistance = formatDistance;
|
2
node_modules/date-fns/locale/fi/_lib/formatDistance.d.cts
generated
vendored
Normal file
2
node_modules/date-fns/locale/fi/_lib/formatDistance.d.cts
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
import type { FormatDistanceFn } from "../../types.js";
|
||||
export declare const formatDistance: FormatDistanceFn;
|
2
node_modules/date-fns/locale/fi/_lib/formatDistance.d.ts
generated
vendored
Normal file
2
node_modules/date-fns/locale/fi/_lib/formatDistance.d.ts
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
import type { FormatDistanceFn } from "../../types.js";
|
||||
export declare const formatDistance: FormatDistanceFn;
|
143
node_modules/date-fns/locale/fi/_lib/formatDistance.js
generated
vendored
Normal file
143
node_modules/date-fns/locale/fi/_lib/formatDistance.js
generated
vendored
Normal file
@ -0,0 +1,143 @@
|
||||
function futureSeconds(text) {
|
||||
return text.replace(/sekuntia?/, "sekunnin");
|
||||
}
|
||||
|
||||
function futureMinutes(text) {
|
||||
return text.replace(/minuuttia?/, "minuutin");
|
||||
}
|
||||
|
||||
function futureHours(text) {
|
||||
return text.replace(/tuntia?/, "tunnin");
|
||||
}
|
||||
|
||||
function futureDays(text) {
|
||||
return text.replace(/päivää?/, "päivän");
|
||||
}
|
||||
|
||||
function futureWeeks(text) {
|
||||
return text.replace(/(viikko|viikkoa)/, "viikon");
|
||||
}
|
||||
|
||||
function futureMonths(text) {
|
||||
return text.replace(/(kuukausi|kuukautta)/, "kuukauden");
|
||||
}
|
||||
|
||||
function futureYears(text) {
|
||||
return text.replace(/(vuosi|vuotta)/, "vuoden");
|
||||
}
|
||||
|
||||
const formatDistanceLocale = {
|
||||
lessThanXSeconds: {
|
||||
one: "alle sekunti",
|
||||
other: "alle {{count}} sekuntia",
|
||||
futureTense: futureSeconds,
|
||||
},
|
||||
|
||||
xSeconds: {
|
||||
one: "sekunti",
|
||||
other: "{{count}} sekuntia",
|
||||
futureTense: futureSeconds,
|
||||
},
|
||||
|
||||
halfAMinute: {
|
||||
one: "puoli minuuttia",
|
||||
other: "puoli minuuttia",
|
||||
futureTense: (_text) => "puolen minuutin",
|
||||
},
|
||||
|
||||
lessThanXMinutes: {
|
||||
one: "alle minuutti",
|
||||
other: "alle {{count}} minuuttia",
|
||||
futureTense: futureMinutes,
|
||||
},
|
||||
|
||||
xMinutes: {
|
||||
one: "minuutti",
|
||||
other: "{{count}} minuuttia",
|
||||
futureTense: futureMinutes,
|
||||
},
|
||||
|
||||
aboutXHours: {
|
||||
one: "noin tunti",
|
||||
other: "noin {{count}} tuntia",
|
||||
futureTense: futureHours,
|
||||
},
|
||||
|
||||
xHours: {
|
||||
one: "tunti",
|
||||
other: "{{count}} tuntia",
|
||||
futureTense: futureHours,
|
||||
},
|
||||
|
||||
xDays: {
|
||||
one: "päivä",
|
||||
other: "{{count}} päivää",
|
||||
futureTense: futureDays,
|
||||
},
|
||||
|
||||
aboutXWeeks: {
|
||||
one: "noin viikko",
|
||||
other: "noin {{count}} viikkoa",
|
||||
futureTense: futureWeeks,
|
||||
},
|
||||
|
||||
xWeeks: {
|
||||
one: "viikko",
|
||||
other: "{{count}} viikkoa",
|
||||
futureTense: futureWeeks,
|
||||
},
|
||||
|
||||
aboutXMonths: {
|
||||
one: "noin kuukausi",
|
||||
other: "noin {{count}} kuukautta",
|
||||
futureTense: futureMonths,
|
||||
},
|
||||
|
||||
xMonths: {
|
||||
one: "kuukausi",
|
||||
other: "{{count}} kuukautta",
|
||||
futureTense: futureMonths,
|
||||
},
|
||||
|
||||
aboutXYears: {
|
||||
one: "noin vuosi",
|
||||
other: "noin {{count}} vuotta",
|
||||
futureTense: futureYears,
|
||||
},
|
||||
|
||||
xYears: {
|
||||
one: "vuosi",
|
||||
other: "{{count}} vuotta",
|
||||
futureTense: futureYears,
|
||||
},
|
||||
|
||||
overXYears: {
|
||||
one: "yli vuosi",
|
||||
other: "yli {{count}} vuotta",
|
||||
futureTense: futureYears,
|
||||
},
|
||||
|
||||
almostXYears: {
|
||||
one: "lähes vuosi",
|
||||
other: "lähes {{count}} vuotta",
|
||||
futureTense: futureYears,
|
||||
},
|
||||
};
|
||||
|
||||
export const formatDistance = (token, count, options) => {
|
||||
const tokenValue = formatDistanceLocale[token];
|
||||
const result =
|
||||
count === 1
|
||||
? tokenValue.one
|
||||
: tokenValue.other.replace("{{count}}", String(count));
|
||||
|
||||
if (options?.addSuffix) {
|
||||
if (options.comparison && options.comparison > 0) {
|
||||
return tokenValue.futureTense(result) + " kuluttua";
|
||||
} else {
|
||||
return result + " sitten";
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
};
|
41
node_modules/date-fns/locale/fi/_lib/formatLong.cjs
generated
vendored
Normal file
41
node_modules/date-fns/locale/fi/_lib/formatLong.cjs
generated
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
"use strict";
|
||||
exports.formatLong = void 0;
|
||||
var _index = require("../../_lib/buildFormatLongFn.cjs");
|
||||
|
||||
const dateFormats = {
|
||||
full: "eeee d. MMMM y",
|
||||
long: "d. MMMM y",
|
||||
medium: "d. MMM y",
|
||||
short: "d.M.y",
|
||||
};
|
||||
|
||||
const timeFormats = {
|
||||
full: "HH.mm.ss zzzz",
|
||||
long: "HH.mm.ss z",
|
||||
medium: "HH.mm.ss",
|
||||
short: "HH.mm",
|
||||
};
|
||||
|
||||
const dateTimeFormats = {
|
||||
full: "{{date}} 'klo' {{time}}",
|
||||
long: "{{date}} 'klo' {{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",
|
||||
}),
|
||||
});
|
2
node_modules/date-fns/locale/fi/_lib/formatLong.d.cts
generated
vendored
Normal file
2
node_modules/date-fns/locale/fi/_lib/formatLong.d.cts
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
import type { FormatLong } from "../../types.js";
|
||||
export declare const formatLong: FormatLong;
|
2
node_modules/date-fns/locale/fi/_lib/formatLong.d.ts
generated
vendored
Normal file
2
node_modules/date-fns/locale/fi/_lib/formatLong.d.ts
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
import type { FormatLong } from "../../types.js";
|
||||
export declare const formatLong: FormatLong;
|
39
node_modules/date-fns/locale/fi/_lib/formatLong.js
generated
vendored
Normal file
39
node_modules/date-fns/locale/fi/_lib/formatLong.js
generated
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
import { buildFormatLongFn } from "../../_lib/buildFormatLongFn.js";
|
||||
|
||||
const dateFormats = {
|
||||
full: "eeee d. MMMM y",
|
||||
long: "d. MMMM y",
|
||||
medium: "d. MMM y",
|
||||
short: "d.M.y",
|
||||
};
|
||||
|
||||
const timeFormats = {
|
||||
full: "HH.mm.ss zzzz",
|
||||
long: "HH.mm.ss z",
|
||||
medium: "HH.mm.ss",
|
||||
short: "HH.mm",
|
||||
};
|
||||
|
||||
const dateTimeFormats = {
|
||||
full: "{{date}} 'klo' {{time}}",
|
||||
long: "{{date}} 'klo' {{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",
|
||||
}),
|
||||
};
|
15
node_modules/date-fns/locale/fi/_lib/formatRelative.cjs
generated
vendored
Normal file
15
node_modules/date-fns/locale/fi/_lib/formatRelative.cjs
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
"use strict";
|
||||
exports.formatRelative = void 0;
|
||||
|
||||
const formatRelativeLocale = {
|
||||
lastWeek: "'viime' eeee 'klo' p",
|
||||
yesterday: "'eilen klo' p",
|
||||
today: "'tänään klo' p",
|
||||
tomorrow: "'huomenna klo' p",
|
||||
nextWeek: "'ensi' eeee 'klo' p",
|
||||
other: "P",
|
||||
};
|
||||
|
||||
const formatRelative = (token, _date, _baseDate, _options) =>
|
||||
formatRelativeLocale[token];
|
||||
exports.formatRelative = formatRelative;
|
2
node_modules/date-fns/locale/fi/_lib/formatRelative.d.cts
generated
vendored
Normal file
2
node_modules/date-fns/locale/fi/_lib/formatRelative.d.cts
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
import type { FormatRelativeFn } from "../../types.js";
|
||||
export declare const formatRelative: FormatRelativeFn;
|
2
node_modules/date-fns/locale/fi/_lib/formatRelative.d.ts
generated
vendored
Normal file
2
node_modules/date-fns/locale/fi/_lib/formatRelative.d.ts
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
import type { FormatRelativeFn } from "../../types.js";
|
||||
export declare const formatRelative: FormatRelativeFn;
|
11
node_modules/date-fns/locale/fi/_lib/formatRelative.js
generated
vendored
Normal file
11
node_modules/date-fns/locale/fi/_lib/formatRelative.js
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
const formatRelativeLocale = {
|
||||
lastWeek: "'viime' eeee 'klo' p",
|
||||
yesterday: "'eilen klo' p",
|
||||
today: "'tänään klo' p",
|
||||
tomorrow: "'huomenna klo' p",
|
||||
nextWeek: "'ensi' eeee 'klo' p",
|
||||
other: "P",
|
||||
};
|
||||
|
||||
export const formatRelative = (token, _date, _baseDate, _options) =>
|
||||
formatRelativeLocale[token];
|
170
node_modules/date-fns/locale/fi/_lib/localize.cjs
generated
vendored
Normal file
170
node_modules/date-fns/locale/fi/_lib/localize.cjs
generated
vendored
Normal file
@ -0,0 +1,170 @@
|
||||
"use strict";
|
||||
exports.localize = void 0;
|
||||
var _index = require("../../_lib/buildLocalizeFn.cjs");
|
||||
|
||||
const eraValues = {
|
||||
narrow: ["eaa.", "jaa."],
|
||||
abbreviated: ["eaa.", "jaa."],
|
||||
wide: ["ennen ajanlaskun alkua", "jälkeen ajanlaskun alun"],
|
||||
};
|
||||
|
||||
const quarterValues = {
|
||||
narrow: ["1", "2", "3", "4"],
|
||||
abbreviated: ["Q1", "Q2", "Q3", "Q4"],
|
||||
wide: ["1. kvartaali", "2. kvartaali", "3. kvartaali", "4. kvartaali"],
|
||||
};
|
||||
|
||||
const monthValues = {
|
||||
narrow: ["T", "H", "M", "H", "T", "K", "H", "E", "S", "L", "M", "J"],
|
||||
abbreviated: [
|
||||
"tammi",
|
||||
"helmi",
|
||||
"maalis",
|
||||
"huhti",
|
||||
"touko",
|
||||
"kesä",
|
||||
"heinä",
|
||||
"elo",
|
||||
"syys",
|
||||
"loka",
|
||||
"marras",
|
||||
"joulu",
|
||||
],
|
||||
|
||||
wide: [
|
||||
"tammikuu",
|
||||
"helmikuu",
|
||||
"maaliskuu",
|
||||
"huhtikuu",
|
||||
"toukokuu",
|
||||
"kesäkuu",
|
||||
"heinäkuu",
|
||||
"elokuu",
|
||||
"syyskuu",
|
||||
"lokakuu",
|
||||
"marraskuu",
|
||||
"joulukuu",
|
||||
],
|
||||
};
|
||||
|
||||
const formattingMonthValues = {
|
||||
narrow: monthValues.narrow,
|
||||
abbreviated: monthValues.abbreviated,
|
||||
wide: [
|
||||
"tammikuuta",
|
||||
"helmikuuta",
|
||||
"maaliskuuta",
|
||||
"huhtikuuta",
|
||||
"toukokuuta",
|
||||
"kesäkuuta",
|
||||
"heinäkuuta",
|
||||
"elokuuta",
|
||||
"syyskuuta",
|
||||
"lokakuuta",
|
||||
"marraskuuta",
|
||||
"joulukuuta",
|
||||
],
|
||||
};
|
||||
|
||||
const dayValues = {
|
||||
narrow: ["S", "M", "T", "K", "T", "P", "L"],
|
||||
short: ["su", "ma", "ti", "ke", "to", "pe", "la"],
|
||||
abbreviated: ["sunn.", "maan.", "tiis.", "kesk.", "torst.", "perj.", "la"],
|
||||
|
||||
wide: [
|
||||
"sunnuntai",
|
||||
"maanantai",
|
||||
"tiistai",
|
||||
"keskiviikko",
|
||||
"torstai",
|
||||
"perjantai",
|
||||
"lauantai",
|
||||
],
|
||||
};
|
||||
|
||||
const formattingDayValues = {
|
||||
narrow: dayValues.narrow,
|
||||
short: dayValues.short,
|
||||
abbreviated: dayValues.abbreviated,
|
||||
wide: [
|
||||
"sunnuntaina",
|
||||
"maanantaina",
|
||||
"tiistaina",
|
||||
"keskiviikkona",
|
||||
"torstaina",
|
||||
"perjantaina",
|
||||
"lauantaina",
|
||||
],
|
||||
};
|
||||
|
||||
const dayPeriodValues = {
|
||||
narrow: {
|
||||
am: "ap",
|
||||
pm: "ip",
|
||||
midnight: "keskiyö",
|
||||
noon: "keskipäivä",
|
||||
morning: "ap",
|
||||
afternoon: "ip",
|
||||
evening: "illalla",
|
||||
night: "yöllä",
|
||||
},
|
||||
abbreviated: {
|
||||
am: "ap",
|
||||
pm: "ip",
|
||||
midnight: "keskiyö",
|
||||
noon: "keskipäivä",
|
||||
morning: "ap",
|
||||
afternoon: "ip",
|
||||
evening: "illalla",
|
||||
night: "yöllä",
|
||||
},
|
||||
wide: {
|
||||
am: "ap",
|
||||
pm: "ip",
|
||||
midnight: "keskiyöllä",
|
||||
noon: "keskipäivällä",
|
||||
morning: "aamupäivällä",
|
||||
afternoon: "iltapäivällä",
|
||||
evening: "illalla",
|
||||
night: "yöllä",
|
||||
},
|
||||
};
|
||||
|
||||
const ordinalNumber = (dirtyNumber, _options) => {
|
||||
const number = Number(dirtyNumber);
|
||||
return 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",
|
||||
formattingValues: formattingMonthValues,
|
||||
defaultFormattingWidth: "wide",
|
||||
}),
|
||||
|
||||
day: (0, _index.buildLocalizeFn)({
|
||||
values: dayValues,
|
||||
defaultWidth: "wide",
|
||||
formattingValues: formattingDayValues,
|
||||
defaultFormattingWidth: "wide",
|
||||
}),
|
||||
|
||||
dayPeriod: (0, _index.buildLocalizeFn)({
|
||||
values: dayPeriodValues,
|
||||
defaultWidth: "wide",
|
||||
}),
|
||||
});
|
2
node_modules/date-fns/locale/fi/_lib/localize.d.cts
generated
vendored
Normal file
2
node_modules/date-fns/locale/fi/_lib/localize.d.cts
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
import type { Localize } from "../../types.js";
|
||||
export declare const localize: Localize;
|
2
node_modules/date-fns/locale/fi/_lib/localize.d.ts
generated
vendored
Normal file
2
node_modules/date-fns/locale/fi/_lib/localize.d.ts
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
import type { Localize } from "../../types.js";
|
||||
export declare const localize: Localize;
|
168
node_modules/date-fns/locale/fi/_lib/localize.js
generated
vendored
Normal file
168
node_modules/date-fns/locale/fi/_lib/localize.js
generated
vendored
Normal file
@ -0,0 +1,168 @@
|
||||
import { buildLocalizeFn } from "../../_lib/buildLocalizeFn.js";
|
||||
|
||||
const eraValues = {
|
||||
narrow: ["eaa.", "jaa."],
|
||||
abbreviated: ["eaa.", "jaa."],
|
||||
wide: ["ennen ajanlaskun alkua", "jälkeen ajanlaskun alun"],
|
||||
};
|
||||
|
||||
const quarterValues = {
|
||||
narrow: ["1", "2", "3", "4"],
|
||||
abbreviated: ["Q1", "Q2", "Q3", "Q4"],
|
||||
wide: ["1. kvartaali", "2. kvartaali", "3. kvartaali", "4. kvartaali"],
|
||||
};
|
||||
|
||||
const monthValues = {
|
||||
narrow: ["T", "H", "M", "H", "T", "K", "H", "E", "S", "L", "M", "J"],
|
||||
abbreviated: [
|
||||
"tammi",
|
||||
"helmi",
|
||||
"maalis",
|
||||
"huhti",
|
||||
"touko",
|
||||
"kesä",
|
||||
"heinä",
|
||||
"elo",
|
||||
"syys",
|
||||
"loka",
|
||||
"marras",
|
||||
"joulu",
|
||||
],
|
||||
|
||||
wide: [
|
||||
"tammikuu",
|
||||
"helmikuu",
|
||||
"maaliskuu",
|
||||
"huhtikuu",
|
||||
"toukokuu",
|
||||
"kesäkuu",
|
||||
"heinäkuu",
|
||||
"elokuu",
|
||||
"syyskuu",
|
||||
"lokakuu",
|
||||
"marraskuu",
|
||||
"joulukuu",
|
||||
],
|
||||
};
|
||||
|
||||
const formattingMonthValues = {
|
||||
narrow: monthValues.narrow,
|
||||
abbreviated: monthValues.abbreviated,
|
||||
wide: [
|
||||
"tammikuuta",
|
||||
"helmikuuta",
|
||||
"maaliskuuta",
|
||||
"huhtikuuta",
|
||||
"toukokuuta",
|
||||
"kesäkuuta",
|
||||
"heinäkuuta",
|
||||
"elokuuta",
|
||||
"syyskuuta",
|
||||
"lokakuuta",
|
||||
"marraskuuta",
|
||||
"joulukuuta",
|
||||
],
|
||||
};
|
||||
|
||||
const dayValues = {
|
||||
narrow: ["S", "M", "T", "K", "T", "P", "L"],
|
||||
short: ["su", "ma", "ti", "ke", "to", "pe", "la"],
|
||||
abbreviated: ["sunn.", "maan.", "tiis.", "kesk.", "torst.", "perj.", "la"],
|
||||
|
||||
wide: [
|
||||
"sunnuntai",
|
||||
"maanantai",
|
||||
"tiistai",
|
||||
"keskiviikko",
|
||||
"torstai",
|
||||
"perjantai",
|
||||
"lauantai",
|
||||
],
|
||||
};
|
||||
|
||||
const formattingDayValues = {
|
||||
narrow: dayValues.narrow,
|
||||
short: dayValues.short,
|
||||
abbreviated: dayValues.abbreviated,
|
||||
wide: [
|
||||
"sunnuntaina",
|
||||
"maanantaina",
|
||||
"tiistaina",
|
||||
"keskiviikkona",
|
||||
"torstaina",
|
||||
"perjantaina",
|
||||
"lauantaina",
|
||||
],
|
||||
};
|
||||
|
||||
const dayPeriodValues = {
|
||||
narrow: {
|
||||
am: "ap",
|
||||
pm: "ip",
|
||||
midnight: "keskiyö",
|
||||
noon: "keskipäivä",
|
||||
morning: "ap",
|
||||
afternoon: "ip",
|
||||
evening: "illalla",
|
||||
night: "yöllä",
|
||||
},
|
||||
abbreviated: {
|
||||
am: "ap",
|
||||
pm: "ip",
|
||||
midnight: "keskiyö",
|
||||
noon: "keskipäivä",
|
||||
morning: "ap",
|
||||
afternoon: "ip",
|
||||
evening: "illalla",
|
||||
night: "yöllä",
|
||||
},
|
||||
wide: {
|
||||
am: "ap",
|
||||
pm: "ip",
|
||||
midnight: "keskiyöllä",
|
||||
noon: "keskipäivällä",
|
||||
morning: "aamupäivällä",
|
||||
afternoon: "iltapäivällä",
|
||||
evening: "illalla",
|
||||
night: "yöllä",
|
||||
},
|
||||
};
|
||||
|
||||
const ordinalNumber = (dirtyNumber, _options) => {
|
||||
const number = Number(dirtyNumber);
|
||||
return 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",
|
||||
formattingValues: formattingMonthValues,
|
||||
defaultFormattingWidth: "wide",
|
||||
}),
|
||||
|
||||
day: buildLocalizeFn({
|
||||
values: dayValues,
|
||||
defaultWidth: "wide",
|
||||
formattingValues: formattingDayValues,
|
||||
defaultFormattingWidth: "wide",
|
||||
}),
|
||||
|
||||
dayPeriod: buildLocalizeFn({
|
||||
values: dayPeriodValues,
|
||||
defaultWidth: "wide",
|
||||
}),
|
||||
};
|
137
node_modules/date-fns/locale/fi/_lib/match.cjs
generated
vendored
Normal file
137
node_modules/date-fns/locale/fi/_lib/match.cjs
generated
vendored
Normal file
@ -0,0 +1,137 @@
|
||||
"use strict";
|
||||
exports.match = void 0;
|
||||
|
||||
var _index = require("../../_lib/buildMatchFn.cjs");
|
||||
var _index2 = require("../../_lib/buildMatchPatternFn.cjs");
|
||||
|
||||
const matchOrdinalNumberPattern = /^(\d+)(\.)/i;
|
||||
const parseOrdinalNumberPattern = /\d+/i;
|
||||
|
||||
const matchEraPatterns = {
|
||||
narrow: /^(e|j)/i,
|
||||
abbreviated: /^(eaa.|jaa.)/i,
|
||||
wide: /^(ennen ajanlaskun alkua|jälkeen ajanlaskun alun)/i,
|
||||
};
|
||||
const parseEraPatterns = {
|
||||
any: [/^e/i, /^j/i],
|
||||
};
|
||||
|
||||
const matchQuarterPatterns = {
|
||||
narrow: /^[1234]/i,
|
||||
abbreviated: /^q[1234]/i,
|
||||
wide: /^[1234]\.? kvartaali/i,
|
||||
};
|
||||
const parseQuarterPatterns = {
|
||||
any: [/1/i, /2/i, /3/i, /4/i],
|
||||
};
|
||||
|
||||
const matchMonthPatterns = {
|
||||
narrow: /^[thmkeslj]/i,
|
||||
abbreviated:
|
||||
/^(tammi|helmi|maalis|huhti|touko|kesä|heinä|elo|syys|loka|marras|joulu)/i,
|
||||
wide: /^(tammikuu|helmikuu|maaliskuu|huhtikuu|toukokuu|kesäkuu|heinäkuu|elokuu|syyskuu|lokakuu|marraskuu|joulukuu)(ta)?/i,
|
||||
};
|
||||
const parseMonthPatterns = {
|
||||
narrow: [
|
||||
/^t/i,
|
||||
/^h/i,
|
||||
/^m/i,
|
||||
/^h/i,
|
||||
/^t/i,
|
||||
/^k/i,
|
||||
/^h/i,
|
||||
/^e/i,
|
||||
/^s/i,
|
||||
/^l/i,
|
||||
/^m/i,
|
||||
/^j/i,
|
||||
],
|
||||
|
||||
any: [
|
||||
/^ta/i,
|
||||
/^hel/i,
|
||||
/^maa/i,
|
||||
/^hu/i,
|
||||
/^to/i,
|
||||
/^k/i,
|
||||
/^hei/i,
|
||||
/^e/i,
|
||||
/^s/i,
|
||||
/^l/i,
|
||||
/^mar/i,
|
||||
/^j/i,
|
||||
],
|
||||
};
|
||||
|
||||
const matchDayPatterns = {
|
||||
narrow: /^[smtkpl]/i,
|
||||
short: /^(su|ma|ti|ke|to|pe|la)/i,
|
||||
abbreviated: /^(sunn.|maan.|tiis.|kesk.|torst.|perj.|la)/i,
|
||||
wide: /^(sunnuntai|maanantai|tiistai|keskiviikko|torstai|perjantai|lauantai)(na)?/i,
|
||||
};
|
||||
const parseDayPatterns = {
|
||||
narrow: [/^s/i, /^m/i, /^t/i, /^k/i, /^t/i, /^p/i, /^l/i],
|
||||
any: [/^s/i, /^m/i, /^ti/i, /^k/i, /^to/i, /^p/i, /^l/i],
|
||||
};
|
||||
|
||||
const matchDayPeriodPatterns = {
|
||||
narrow:
|
||||
/^(ap|ip|keskiyö|keskipäivä|aamupäivällä|iltapäivällä|illalla|yöllä)/i,
|
||||
any: /^(ap|ip|keskiyöllä|keskipäivällä|aamupäivällä|iltapäivällä|illalla|yöllä)/i,
|
||||
};
|
||||
const parseDayPeriodPatterns = {
|
||||
any: {
|
||||
am: /^ap/i,
|
||||
pm: /^ip/i,
|
||||
midnight: /^keskiyö/i,
|
||||
noon: /^keskipäivä/i,
|
||||
morning: /aamupäivällä/i,
|
||||
afternoon: /iltapäivällä/i,
|
||||
evening: /illalla/i,
|
||||
night: /yöllä/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",
|
||||
}),
|
||||
});
|
2
node_modules/date-fns/locale/fi/_lib/match.d.cts
generated
vendored
Normal file
2
node_modules/date-fns/locale/fi/_lib/match.d.cts
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
import type { Match } from "../../types.js";
|
||||
export declare const match: Match;
|
2
node_modules/date-fns/locale/fi/_lib/match.d.ts
generated
vendored
Normal file
2
node_modules/date-fns/locale/fi/_lib/match.d.ts
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
import type { Match } from "../../types.js";
|
||||
export declare const match: Match;
|
134
node_modules/date-fns/locale/fi/_lib/match.js
generated
vendored
Normal file
134
node_modules/date-fns/locale/fi/_lib/match.js
generated
vendored
Normal file
@ -0,0 +1,134 @@
|
||||
import { buildMatchFn } from "../../_lib/buildMatchFn.js";
|
||||
import { buildMatchPatternFn } from "../../_lib/buildMatchPatternFn.js";
|
||||
|
||||
const matchOrdinalNumberPattern = /^(\d+)(\.)/i;
|
||||
const parseOrdinalNumberPattern = /\d+/i;
|
||||
|
||||
const matchEraPatterns = {
|
||||
narrow: /^(e|j)/i,
|
||||
abbreviated: /^(eaa.|jaa.)/i,
|
||||
wide: /^(ennen ajanlaskun alkua|jälkeen ajanlaskun alun)/i,
|
||||
};
|
||||
const parseEraPatterns = {
|
||||
any: [/^e/i, /^j/i],
|
||||
};
|
||||
|
||||
const matchQuarterPatterns = {
|
||||
narrow: /^[1234]/i,
|
||||
abbreviated: /^q[1234]/i,
|
||||
wide: /^[1234]\.? kvartaali/i,
|
||||
};
|
||||
const parseQuarterPatterns = {
|
||||
any: [/1/i, /2/i, /3/i, /4/i],
|
||||
};
|
||||
|
||||
const matchMonthPatterns = {
|
||||
narrow: /^[thmkeslj]/i,
|
||||
abbreviated:
|
||||
/^(tammi|helmi|maalis|huhti|touko|kesä|heinä|elo|syys|loka|marras|joulu)/i,
|
||||
wide: /^(tammikuu|helmikuu|maaliskuu|huhtikuu|toukokuu|kesäkuu|heinäkuu|elokuu|syyskuu|lokakuu|marraskuu|joulukuu)(ta)?/i,
|
||||
};
|
||||
const parseMonthPatterns = {
|
||||
narrow: [
|
||||
/^t/i,
|
||||
/^h/i,
|
||||
/^m/i,
|
||||
/^h/i,
|
||||
/^t/i,
|
||||
/^k/i,
|
||||
/^h/i,
|
||||
/^e/i,
|
||||
/^s/i,
|
||||
/^l/i,
|
||||
/^m/i,
|
||||
/^j/i,
|
||||
],
|
||||
|
||||
any: [
|
||||
/^ta/i,
|
||||
/^hel/i,
|
||||
/^maa/i,
|
||||
/^hu/i,
|
||||
/^to/i,
|
||||
/^k/i,
|
||||
/^hei/i,
|
||||
/^e/i,
|
||||
/^s/i,
|
||||
/^l/i,
|
||||
/^mar/i,
|
||||
/^j/i,
|
||||
],
|
||||
};
|
||||
|
||||
const matchDayPatterns = {
|
||||
narrow: /^[smtkpl]/i,
|
||||
short: /^(su|ma|ti|ke|to|pe|la)/i,
|
||||
abbreviated: /^(sunn.|maan.|tiis.|kesk.|torst.|perj.|la)/i,
|
||||
wide: /^(sunnuntai|maanantai|tiistai|keskiviikko|torstai|perjantai|lauantai)(na)?/i,
|
||||
};
|
||||
const parseDayPatterns = {
|
||||
narrow: [/^s/i, /^m/i, /^t/i, /^k/i, /^t/i, /^p/i, /^l/i],
|
||||
any: [/^s/i, /^m/i, /^ti/i, /^k/i, /^to/i, /^p/i, /^l/i],
|
||||
};
|
||||
|
||||
const matchDayPeriodPatterns = {
|
||||
narrow:
|
||||
/^(ap|ip|keskiyö|keskipäivä|aamupäivällä|iltapäivällä|illalla|yöllä)/i,
|
||||
any: /^(ap|ip|keskiyöllä|keskipäivällä|aamupäivällä|iltapäivällä|illalla|yöllä)/i,
|
||||
};
|
||||
const parseDayPeriodPatterns = {
|
||||
any: {
|
||||
am: /^ap/i,
|
||||
pm: /^ip/i,
|
||||
midnight: /^keskiyö/i,
|
||||
noon: /^keskipäivä/i,
|
||||
morning: /aamupäivällä/i,
|
||||
afternoon: /iltapäivällä/i,
|
||||
evening: /illalla/i,
|
||||
night: /yöllä/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",
|
||||
}),
|
||||
};
|
554
node_modules/date-fns/locale/fi/cdn.js
generated
vendored
Normal file
554
node_modules/date-fns/locale/fi/cdn.js
generated
vendored
Normal file
@ -0,0 +1,554 @@
|
||||
(() => {
|
||||
var _window$dateFns;function _typeof(o) {"@babel/helpers - typeof";return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {return typeof o;} : function (o) {return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;}, _typeof(o);}function ownKeys(e, r) {var t = Object.keys(e);if (Object.getOwnPropertySymbols) {var o = Object.getOwnPropertySymbols(e);r && (o = o.filter(function (r) {return Object.getOwnPropertyDescriptor(e, r).enumerable;})), t.push.apply(t, o);}return t;}function _objectSpread(e) {for (var r = 1; r < arguments.length; r++) {var t = null != arguments[r] ? arguments[r] : {};r % 2 ? ownKeys(Object(t), !0).forEach(function (r) {_defineProperty(e, r, t[r]);}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) {Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));});}return e;}function _defineProperty(obj, key, value) {key = _toPropertyKey(key);if (key in obj) {Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true });} else {obj[key] = value;}return obj;}function _toPropertyKey(t) {var i = _toPrimitive(t, "string");return "symbol" == _typeof(i) ? i : String(i);}function _toPrimitive(t, r) {if ("object" != _typeof(t) || !t) return t;var e = t[Symbol.toPrimitive];if (void 0 !== e) {var i = e.call(t, r || "default");if ("object" != _typeof(i)) return i;throw new TypeError("@@toPrimitive must return a primitive value.");}return ("string" === r ? String : Number)(t);}var __defProp = Object.defineProperty;
|
||||
var __export = function __export(target, all) {
|
||||
for (var name in all)
|
||||
__defProp(target, name, {
|
||||
get: all[name],
|
||||
enumerable: true,
|
||||
configurable: true,
|
||||
set: function set(newValue) {return all[name] = function () {return newValue;};}
|
||||
});
|
||||
};
|
||||
|
||||
// lib/locale/fi/_lib/formatDistance.js
|
||||
function futureSeconds(text) {
|
||||
return text.replace(/sekuntia?/, "sekunnin");
|
||||
}
|
||||
function futureMinutes(text) {
|
||||
return text.replace(/minuuttia?/, "minuutin");
|
||||
}
|
||||
function futureHours(text) {
|
||||
return text.replace(/tuntia?/, "tunnin");
|
||||
}
|
||||
function futureDays(text) {
|
||||
return text.replace(/päivää?/, "p\xE4iv\xE4n");
|
||||
}
|
||||
function futureWeeks(text) {
|
||||
return text.replace(/(viikko|viikkoa)/, "viikon");
|
||||
}
|
||||
function futureMonths(text) {
|
||||
return text.replace(/(kuukausi|kuukautta)/, "kuukauden");
|
||||
}
|
||||
function futureYears(text) {
|
||||
return text.replace(/(vuosi|vuotta)/, "vuoden");
|
||||
}
|
||||
var formatDistanceLocale = {
|
||||
lessThanXSeconds: {
|
||||
one: "alle sekunti",
|
||||
other: "alle {{count}} sekuntia",
|
||||
futureTense: futureSeconds
|
||||
},
|
||||
xSeconds: {
|
||||
one: "sekunti",
|
||||
other: "{{count}} sekuntia",
|
||||
futureTense: futureSeconds
|
||||
},
|
||||
halfAMinute: {
|
||||
one: "puoli minuuttia",
|
||||
other: "puoli minuuttia",
|
||||
futureTense: function futureTense(_text) {return "puolen minuutin";}
|
||||
},
|
||||
lessThanXMinutes: {
|
||||
one: "alle minuutti",
|
||||
other: "alle {{count}} minuuttia",
|
||||
futureTense: futureMinutes
|
||||
},
|
||||
xMinutes: {
|
||||
one: "minuutti",
|
||||
other: "{{count}} minuuttia",
|
||||
futureTense: futureMinutes
|
||||
},
|
||||
aboutXHours: {
|
||||
one: "noin tunti",
|
||||
other: "noin {{count}} tuntia",
|
||||
futureTense: futureHours
|
||||
},
|
||||
xHours: {
|
||||
one: "tunti",
|
||||
other: "{{count}} tuntia",
|
||||
futureTense: futureHours
|
||||
},
|
||||
xDays: {
|
||||
one: "p\xE4iv\xE4",
|
||||
other: "{{count}} p\xE4iv\xE4\xE4",
|
||||
futureTense: futureDays
|
||||
},
|
||||
aboutXWeeks: {
|
||||
one: "noin viikko",
|
||||
other: "noin {{count}} viikkoa",
|
||||
futureTense: futureWeeks
|
||||
},
|
||||
xWeeks: {
|
||||
one: "viikko",
|
||||
other: "{{count}} viikkoa",
|
||||
futureTense: futureWeeks
|
||||
},
|
||||
aboutXMonths: {
|
||||
one: "noin kuukausi",
|
||||
other: "noin {{count}} kuukautta",
|
||||
futureTense: futureMonths
|
||||
},
|
||||
xMonths: {
|
||||
one: "kuukausi",
|
||||
other: "{{count}} kuukautta",
|
||||
futureTense: futureMonths
|
||||
},
|
||||
aboutXYears: {
|
||||
one: "noin vuosi",
|
||||
other: "noin {{count}} vuotta",
|
||||
futureTense: futureYears
|
||||
},
|
||||
xYears: {
|
||||
one: "vuosi",
|
||||
other: "{{count}} vuotta",
|
||||
futureTense: futureYears
|
||||
},
|
||||
overXYears: {
|
||||
one: "yli vuosi",
|
||||
other: "yli {{count}} vuotta",
|
||||
futureTense: futureYears
|
||||
},
|
||||
almostXYears: {
|
||||
one: "l\xE4hes vuosi",
|
||||
other: "l\xE4hes {{count}} vuotta",
|
||||
futureTense: futureYears
|
||||
}
|
||||
};
|
||||
var formatDistance = function formatDistance(token, count, options) {
|
||||
var tokenValue = formatDistanceLocale[token];
|
||||
var result = count === 1 ? tokenValue.one : tokenValue.other.replace("{{count}}", String(count));
|
||||
if (options !== null && options !== void 0 && options.addSuffix) {
|
||||
if (options.comparison && options.comparison > 0) {
|
||||
return tokenValue.futureTense(result) + " kuluttua";
|
||||
} else {
|
||||
return result + " sitten";
|
||||
}
|
||||
}
|
||||
return result;
|
||||
};
|
||||
|
||||
// lib/locale/_lib/buildFormatLongFn.js
|
||||
function buildFormatLongFn(args) {
|
||||
return function () {var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
||||
var width = options.width ? String(options.width) : args.defaultWidth;
|
||||
var format = args.formats[width] || args.formats[args.defaultWidth];
|
||||
return format;
|
||||
};
|
||||
}
|
||||
|
||||
// lib/locale/fi/_lib/formatLong.js
|
||||
var dateFormats = {
|
||||
full: "eeee d. MMMM y",
|
||||
long: "d. MMMM y",
|
||||
medium: "d. MMM y",
|
||||
short: "d.M.y"
|
||||
};
|
||||
var timeFormats = {
|
||||
full: "HH.mm.ss zzzz",
|
||||
long: "HH.mm.ss z",
|
||||
medium: "HH.mm.ss",
|
||||
short: "HH.mm"
|
||||
};
|
||||
var dateTimeFormats = {
|
||||
full: "{{date}} 'klo' {{time}}",
|
||||
long: "{{date}} 'klo' {{time}}",
|
||||
medium: "{{date}} {{time}}",
|
||||
short: "{{date}} {{time}}"
|
||||
};
|
||||
var formatLong = {
|
||||
date: buildFormatLongFn({
|
||||
formats: dateFormats,
|
||||
defaultWidth: "full"
|
||||
}),
|
||||
time: buildFormatLongFn({
|
||||
formats: timeFormats,
|
||||
defaultWidth: "full"
|
||||
}),
|
||||
dateTime: buildFormatLongFn({
|
||||
formats: dateTimeFormats,
|
||||
defaultWidth: "full"
|
||||
})
|
||||
};
|
||||
|
||||
// lib/locale/fi/_lib/formatRelative.js
|
||||
var formatRelativeLocale = {
|
||||
lastWeek: "'viime' eeee 'klo' p",
|
||||
yesterday: "'eilen klo' p",
|
||||
today: "'t\xE4n\xE4\xE4n klo' p",
|
||||
tomorrow: "'huomenna klo' p",
|
||||
nextWeek: "'ensi' eeee 'klo' p",
|
||||
other: "P"
|
||||
};
|
||||
var formatRelative = function formatRelative(token, _date, _baseDate, _options) {return formatRelativeLocale[token];};
|
||||
|
||||
// lib/locale/_lib/buildLocalizeFn.js
|
||||
function buildLocalizeFn(args) {
|
||||
return function (value, options) {
|
||||
var context = options !== null && options !== void 0 && options.context ? String(options.context) : "standalone";
|
||||
var valuesArray;
|
||||
if (context === "formatting" && args.formattingValues) {
|
||||
var defaultWidth = args.defaultFormattingWidth || args.defaultWidth;
|
||||
var width = options !== null && options !== void 0 && options.width ? String(options.width) : defaultWidth;
|
||||
valuesArray = args.formattingValues[width] || args.formattingValues[defaultWidth];
|
||||
} else {
|
||||
var _defaultWidth = args.defaultWidth;
|
||||
var _width = options !== null && options !== void 0 && options.width ? String(options.width) : args.defaultWidth;
|
||||
valuesArray = args.values[_width] || args.values[_defaultWidth];
|
||||
}
|
||||
var index = args.argumentCallback ? args.argumentCallback(value) : value;
|
||||
return valuesArray[index];
|
||||
};
|
||||
}
|
||||
|
||||
// lib/locale/fi/_lib/localize.js
|
||||
var eraValues = {
|
||||
narrow: ["eaa.", "jaa."],
|
||||
abbreviated: ["eaa.", "jaa."],
|
||||
wide: ["ennen ajanlaskun alkua", "j\xE4lkeen ajanlaskun alun"]
|
||||
};
|
||||
var quarterValues = {
|
||||
narrow: ["1", "2", "3", "4"],
|
||||
abbreviated: ["Q1", "Q2", "Q3", "Q4"],
|
||||
wide: ["1. kvartaali", "2. kvartaali", "3. kvartaali", "4. kvartaali"]
|
||||
};
|
||||
var monthValues = {
|
||||
narrow: ["T", "H", "M", "H", "T", "K", "H", "E", "S", "L", "M", "J"],
|
||||
abbreviated: [
|
||||
"tammi",
|
||||
"helmi",
|
||||
"maalis",
|
||||
"huhti",
|
||||
"touko",
|
||||
"kes\xE4",
|
||||
"hein\xE4",
|
||||
"elo",
|
||||
"syys",
|
||||
"loka",
|
||||
"marras",
|
||||
"joulu"],
|
||||
|
||||
wide: [
|
||||
"tammikuu",
|
||||
"helmikuu",
|
||||
"maaliskuu",
|
||||
"huhtikuu",
|
||||
"toukokuu",
|
||||
"kes\xE4kuu",
|
||||
"hein\xE4kuu",
|
||||
"elokuu",
|
||||
"syyskuu",
|
||||
"lokakuu",
|
||||
"marraskuu",
|
||||
"joulukuu"]
|
||||
|
||||
};
|
||||
var formattingMonthValues = {
|
||||
narrow: monthValues.narrow,
|
||||
abbreviated: monthValues.abbreviated,
|
||||
wide: [
|
||||
"tammikuuta",
|
||||
"helmikuuta",
|
||||
"maaliskuuta",
|
||||
"huhtikuuta",
|
||||
"toukokuuta",
|
||||
"kes\xE4kuuta",
|
||||
"hein\xE4kuuta",
|
||||
"elokuuta",
|
||||
"syyskuuta",
|
||||
"lokakuuta",
|
||||
"marraskuuta",
|
||||
"joulukuuta"]
|
||||
|
||||
};
|
||||
var dayValues = {
|
||||
narrow: ["S", "M", "T", "K", "T", "P", "L"],
|
||||
short: ["su", "ma", "ti", "ke", "to", "pe", "la"],
|
||||
abbreviated: ["sunn.", "maan.", "tiis.", "kesk.", "torst.", "perj.", "la"],
|
||||
wide: [
|
||||
"sunnuntai",
|
||||
"maanantai",
|
||||
"tiistai",
|
||||
"keskiviikko",
|
||||
"torstai",
|
||||
"perjantai",
|
||||
"lauantai"]
|
||||
|
||||
};
|
||||
var formattingDayValues = {
|
||||
narrow: dayValues.narrow,
|
||||
short: dayValues.short,
|
||||
abbreviated: dayValues.abbreviated,
|
||||
wide: [
|
||||
"sunnuntaina",
|
||||
"maanantaina",
|
||||
"tiistaina",
|
||||
"keskiviikkona",
|
||||
"torstaina",
|
||||
"perjantaina",
|
||||
"lauantaina"]
|
||||
|
||||
};
|
||||
var dayPeriodValues = {
|
||||
narrow: {
|
||||
am: "ap",
|
||||
pm: "ip",
|
||||
midnight: "keskiy\xF6",
|
||||
noon: "keskip\xE4iv\xE4",
|
||||
morning: "ap",
|
||||
afternoon: "ip",
|
||||
evening: "illalla",
|
||||
night: "y\xF6ll\xE4"
|
||||
},
|
||||
abbreviated: {
|
||||
am: "ap",
|
||||
pm: "ip",
|
||||
midnight: "keskiy\xF6",
|
||||
noon: "keskip\xE4iv\xE4",
|
||||
morning: "ap",
|
||||
afternoon: "ip",
|
||||
evening: "illalla",
|
||||
night: "y\xF6ll\xE4"
|
||||
},
|
||||
wide: {
|
||||
am: "ap",
|
||||
pm: "ip",
|
||||
midnight: "keskiy\xF6ll\xE4",
|
||||
noon: "keskip\xE4iv\xE4ll\xE4",
|
||||
morning: "aamup\xE4iv\xE4ll\xE4",
|
||||
afternoon: "iltap\xE4iv\xE4ll\xE4",
|
||||
evening: "illalla",
|
||||
night: "y\xF6ll\xE4"
|
||||
}
|
||||
};
|
||||
var ordinalNumber = function ordinalNumber(dirtyNumber, _options) {
|
||||
var number = Number(dirtyNumber);
|
||||
return number + ".";
|
||||
};
|
||||
var localize = {
|
||||
ordinalNumber: ordinalNumber,
|
||||
era: buildLocalizeFn({
|
||||
values: eraValues,
|
||||
defaultWidth: "wide"
|
||||
}),
|
||||
quarter: buildLocalizeFn({
|
||||
values: quarterValues,
|
||||
defaultWidth: "wide",
|
||||
argumentCallback: function argumentCallback(quarter) {return quarter - 1;}
|
||||
}),
|
||||
month: buildLocalizeFn({
|
||||
values: monthValues,
|
||||
defaultWidth: "wide",
|
||||
formattingValues: formattingMonthValues,
|
||||
defaultFormattingWidth: "wide"
|
||||
}),
|
||||
day: buildLocalizeFn({
|
||||
values: dayValues,
|
||||
defaultWidth: "wide",
|
||||
formattingValues: formattingDayValues,
|
||||
defaultFormattingWidth: "wide"
|
||||
}),
|
||||
dayPeriod: buildLocalizeFn({
|
||||
values: dayPeriodValues,
|
||||
defaultWidth: "wide"
|
||||
})
|
||||
};
|
||||
|
||||
// lib/locale/_lib/buildMatchFn.js
|
||||
function buildMatchFn(args) {
|
||||
return function (string) {var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
||||
var width = options.width;
|
||||
var matchPattern = width && args.matchPatterns[width] || args.matchPatterns[args.defaultMatchWidth];
|
||||
var matchResult = string.match(matchPattern);
|
||||
if (!matchResult) {
|
||||
return null;
|
||||
}
|
||||
var matchedString = matchResult[0];
|
||||
var parsePatterns = width && args.parsePatterns[width] || args.parsePatterns[args.defaultParseWidth];
|
||||
var key = Array.isArray(parsePatterns) ? findIndex(parsePatterns, function (pattern) {return pattern.test(matchedString);}) : findKey(parsePatterns, function (pattern) {return pattern.test(matchedString);});
|
||||
var value;
|
||||
value = args.valueCallback ? args.valueCallback(key) : key;
|
||||
value = options.valueCallback ? options.valueCallback(value) : value;
|
||||
var rest = string.slice(matchedString.length);
|
||||
return { value: value, rest: rest };
|
||||
};
|
||||
}
|
||||
function findKey(object, predicate) {
|
||||
for (var key in object) {
|
||||
if (Object.prototype.hasOwnProperty.call(object, key) && predicate(object[key])) {
|
||||
return key;
|
||||
}
|
||||
}
|
||||
return;
|
||||
}
|
||||
function findIndex(array, predicate) {
|
||||
for (var key = 0; key < array.length; key++) {
|
||||
if (predicate(array[key])) {
|
||||
return key;
|
||||
}
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
// lib/locale/_lib/buildMatchPatternFn.js
|
||||
function buildMatchPatternFn(args) {
|
||||
return function (string) {var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
||||
var matchResult = string.match(args.matchPattern);
|
||||
if (!matchResult)
|
||||
return null;
|
||||
var matchedString = matchResult[0];
|
||||
var parseResult = string.match(args.parsePattern);
|
||||
if (!parseResult)
|
||||
return null;
|
||||
var value = args.valueCallback ? args.valueCallback(parseResult[0]) : parseResult[0];
|
||||
value = options.valueCallback ? options.valueCallback(value) : value;
|
||||
var rest = string.slice(matchedString.length);
|
||||
return { value: value, rest: rest };
|
||||
};
|
||||
}
|
||||
|
||||
// lib/locale/fi/_lib/match.js
|
||||
var matchOrdinalNumberPattern = /^(\d+)(\.)/i;
|
||||
var parseOrdinalNumberPattern = /\d+/i;
|
||||
var matchEraPatterns = {
|
||||
narrow: /^(e|j)/i,
|
||||
abbreviated: /^(eaa.|jaa.)/i,
|
||||
wide: /^(ennen ajanlaskun alkua|jälkeen ajanlaskun alun)/i
|
||||
};
|
||||
var parseEraPatterns = {
|
||||
any: [/^e/i, /^j/i]
|
||||
};
|
||||
var matchQuarterPatterns = {
|
||||
narrow: /^[1234]/i,
|
||||
abbreviated: /^q[1234]/i,
|
||||
wide: /^[1234]\.? kvartaali/i
|
||||
};
|
||||
var parseQuarterPatterns = {
|
||||
any: [/1/i, /2/i, /3/i, /4/i]
|
||||
};
|
||||
var matchMonthPatterns = {
|
||||
narrow: /^[thmkeslj]/i,
|
||||
abbreviated: /^(tammi|helmi|maalis|huhti|touko|kesä|heinä|elo|syys|loka|marras|joulu)/i,
|
||||
wide: /^(tammikuu|helmikuu|maaliskuu|huhtikuu|toukokuu|kesäkuu|heinäkuu|elokuu|syyskuu|lokakuu|marraskuu|joulukuu)(ta)?/i
|
||||
};
|
||||
var parseMonthPatterns = {
|
||||
narrow: [
|
||||
/^t/i,
|
||||
/^h/i,
|
||||
/^m/i,
|
||||
/^h/i,
|
||||
/^t/i,
|
||||
/^k/i,
|
||||
/^h/i,
|
||||
/^e/i,
|
||||
/^s/i,
|
||||
/^l/i,
|
||||
/^m/i,
|
||||
/^j/i],
|
||||
|
||||
any: [
|
||||
/^ta/i,
|
||||
/^hel/i,
|
||||
/^maa/i,
|
||||
/^hu/i,
|
||||
/^to/i,
|
||||
/^k/i,
|
||||
/^hei/i,
|
||||
/^e/i,
|
||||
/^s/i,
|
||||
/^l/i,
|
||||
/^mar/i,
|
||||
/^j/i]
|
||||
|
||||
};
|
||||
var matchDayPatterns = {
|
||||
narrow: /^[smtkpl]/i,
|
||||
short: /^(su|ma|ti|ke|to|pe|la)/i,
|
||||
abbreviated: /^(sunn.|maan.|tiis.|kesk.|torst.|perj.|la)/i,
|
||||
wide: /^(sunnuntai|maanantai|tiistai|keskiviikko|torstai|perjantai|lauantai)(na)?/i
|
||||
};
|
||||
var parseDayPatterns = {
|
||||
narrow: [/^s/i, /^m/i, /^t/i, /^k/i, /^t/i, /^p/i, /^l/i],
|
||||
any: [/^s/i, /^m/i, /^ti/i, /^k/i, /^to/i, /^p/i, /^l/i]
|
||||
};
|
||||
var matchDayPeriodPatterns = {
|
||||
narrow: /^(ap|ip|keskiyö|keskipäivä|aamupäivällä|iltapäivällä|illalla|yöllä)/i,
|
||||
any: /^(ap|ip|keskiyöllä|keskipäivällä|aamupäivällä|iltapäivällä|illalla|yöllä)/i
|
||||
};
|
||||
var parseDayPeriodPatterns = {
|
||||
any: {
|
||||
am: /^ap/i,
|
||||
pm: /^ip/i,
|
||||
midnight: /^keskiyö/i,
|
||||
noon: /^keskipäivä/i,
|
||||
morning: /aamupäivällä/i,
|
||||
afternoon: /iltapäivällä/i,
|
||||
evening: /illalla/i,
|
||||
night: /yöllä/i
|
||||
}
|
||||
};
|
||||
var match = {
|
||||
ordinalNumber: buildMatchPatternFn({
|
||||
matchPattern: matchOrdinalNumberPattern,
|
||||
parsePattern: parseOrdinalNumberPattern,
|
||||
valueCallback: function valueCallback(value) {return parseInt(value, 10);}
|
||||
}),
|
||||
era: buildMatchFn({
|
||||
matchPatterns: matchEraPatterns,
|
||||
defaultMatchWidth: "wide",
|
||||
parsePatterns: parseEraPatterns,
|
||||
defaultParseWidth: "any"
|
||||
}),
|
||||
quarter: buildMatchFn({
|
||||
matchPatterns: matchQuarterPatterns,
|
||||
defaultMatchWidth: "wide",
|
||||
parsePatterns: parseQuarterPatterns,
|
||||
defaultParseWidth: "any",
|
||||
valueCallback: function valueCallback(index) {return 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"
|
||||
})
|
||||
};
|
||||
|
||||
// lib/locale/fi.js
|
||||
var fi = {
|
||||
code: "fi",
|
||||
formatDistance: formatDistance,
|
||||
formatLong: formatLong,
|
||||
formatRelative: formatRelative,
|
||||
localize: localize,
|
||||
match: match,
|
||||
options: {
|
||||
weekStartsOn: 1,
|
||||
firstWeekContainsDate: 4
|
||||
}
|
||||
};
|
||||
|
||||
// lib/locale/fi/cdn.js
|
||||
window.dateFns = _objectSpread(_objectSpread({},
|
||||
window.dateFns), {}, {
|
||||
locale: _objectSpread(_objectSpread({}, (_window$dateFns =
|
||||
window.dateFns) === null || _window$dateFns === void 0 ? void 0 : _window$dateFns.locale), {}, {
|
||||
fi: fi }) });
|
||||
|
||||
|
||||
|
||||
//# debugId=79CA48FD1996640664756E2164756E21
|
||||
|
||||
//# sourceMappingURL=cdn.js.map
|
||||
})();
|
1
node_modules/date-fns/locale/fi/cdn.js.map
generated
vendored
Normal file
1
node_modules/date-fns/locale/fi/cdn.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
3
node_modules/date-fns/locale/fi/cdn.min.js
generated
vendored
Normal file
3
node_modules/date-fns/locale/fi/cdn.min.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
10
node_modules/date-fns/locale/fi/cdn.min.js.map
generated
vendored
Normal file
10
node_modules/date-fns/locale/fi/cdn.min.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user