v1.0 with SW PWA enabled
This commit is contained in:
168
frontend/node_modules/date-fns/locale/sq/_lib/localize.js
generated
vendored
Normal file
168
frontend/node_modules/date-fns/locale/sq/_lib/localize.js
generated
vendored
Normal file
@ -0,0 +1,168 @@
|
||||
"use strict";
|
||||
exports.localize = void 0;
|
||||
var _index = require("../../_lib/buildLocalizeFn.js");
|
||||
|
||||
const eraValues = {
|
||||
narrow: ["P", "M"],
|
||||
abbreviated: ["PK", "MK"],
|
||||
wide: ["Para Krishtit", "Mbas Krishtit"],
|
||||
};
|
||||
|
||||
const quarterValues = {
|
||||
narrow: ["1", "2", "3", "4"],
|
||||
abbreviated: ["Q1", "Q2", "Q3", "Q4"],
|
||||
wide: ["4-mujori I", "4-mujori II", "4-mujori III", "4-mujori IV"],
|
||||
};
|
||||
|
||||
// Note: in English, the names of days of the week and months are capitalized.
|
||||
// If you are making a new locale based on this one, check if the same is true for the language you're working on.
|
||||
// Generally, formatted dates should look like they are in the middle of a sentence,
|
||||
// e.g. in Spanish language the weekdays and months should be in the lowercase.
|
||||
const monthValues = {
|
||||
narrow: ["J", "S", "M", "P", "M", "Q", "K", "G", "S", "T", "N", "D"],
|
||||
abbreviated: [
|
||||
"Jan",
|
||||
"Shk",
|
||||
"Mar",
|
||||
"Pri",
|
||||
"Maj",
|
||||
"Qer",
|
||||
"Kor",
|
||||
"Gus",
|
||||
"Sht",
|
||||
"Tet",
|
||||
"Nën",
|
||||
"Dhj",
|
||||
],
|
||||
|
||||
wide: [
|
||||
"Janar",
|
||||
"Shkurt",
|
||||
"Mars",
|
||||
"Prill",
|
||||
"Maj",
|
||||
"Qershor",
|
||||
"Korrik",
|
||||
"Gusht",
|
||||
"Shtator",
|
||||
"Tetor",
|
||||
"Nëntor",
|
||||
"Dhjetor",
|
||||
],
|
||||
};
|
||||
|
||||
const dayValues = {
|
||||
narrow: ["D", "H", "M", "M", "E", "P", "S"],
|
||||
short: ["Di", "Hë", "Ma", "Më", "En", "Pr", "Sh"],
|
||||
abbreviated: ["Die", "Hën", "Mar", "Mër", "Enj", "Pre", "Sht"],
|
||||
wide: ["Dielë", "Hënë", "Martë", "Mërkurë", "Enjte", "Premte", "Shtunë"],
|
||||
};
|
||||
|
||||
const dayPeriodValues = {
|
||||
narrow: {
|
||||
am: "p",
|
||||
pm: "m",
|
||||
midnight: "m",
|
||||
noon: "d",
|
||||
morning: "mëngjes",
|
||||
afternoon: "dite",
|
||||
evening: "mbrëmje",
|
||||
night: "natë",
|
||||
},
|
||||
abbreviated: {
|
||||
am: "PD",
|
||||
pm: "MD",
|
||||
midnight: "mesnëtë",
|
||||
noon: "drek",
|
||||
morning: "mëngjes",
|
||||
afternoon: "mbasdite",
|
||||
evening: "mbrëmje",
|
||||
night: "natë",
|
||||
},
|
||||
wide: {
|
||||
am: "p.d.",
|
||||
pm: "m.d.",
|
||||
midnight: "mesnëtë",
|
||||
noon: "drek",
|
||||
morning: "mëngjes",
|
||||
afternoon: "mbasdite",
|
||||
evening: "mbrëmje",
|
||||
night: "natë",
|
||||
},
|
||||
};
|
||||
|
||||
const formattingDayPeriodValues = {
|
||||
narrow: {
|
||||
am: "p",
|
||||
pm: "m",
|
||||
midnight: "m",
|
||||
noon: "d",
|
||||
morning: "në mëngjes",
|
||||
afternoon: "në mbasdite",
|
||||
evening: "në mbrëmje",
|
||||
night: "në mesnatë",
|
||||
},
|
||||
abbreviated: {
|
||||
am: "PD",
|
||||
pm: "MD",
|
||||
midnight: "mesnatë",
|
||||
noon: "drek",
|
||||
morning: "në mëngjes",
|
||||
afternoon: "në mbasdite",
|
||||
evening: "në mbrëmje",
|
||||
night: "në mesnatë",
|
||||
},
|
||||
wide: {
|
||||
am: "p.d.",
|
||||
pm: "m.d.",
|
||||
midnight: "mesnatë",
|
||||
noon: "drek",
|
||||
morning: "në mëngjes",
|
||||
afternoon: "në mbasdite",
|
||||
evening: "në mbrëmje",
|
||||
night: "në mesnatë",
|
||||
},
|
||||
};
|
||||
|
||||
const ordinalNumber = (dirtyNumber, options) => {
|
||||
const number = Number(dirtyNumber);
|
||||
|
||||
if (options?.unit === "hour") return String(number);
|
||||
|
||||
if (number === 1) return number + "-rë";
|
||||
if (number === 4) return number + "t";
|
||||
|
||||
return number + "-të";
|
||||
};
|
||||
|
||||
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",
|
||||
}),
|
||||
});
|
||||
Reference in New Issue
Block a user