v1.0 with SW PWA enabled
This commit is contained in:
2
frontend/node_modules/date-fns/locale/ms/_lib/formatDistance.d.mts
generated
vendored
Normal file
2
frontend/node_modules/date-fns/locale/ms/_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/ms/_lib/formatDistance.d.ts
generated
vendored
Normal file
2
frontend/node_modules/date-fns/locale/ms/_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/ms/_lib/formatDistance.js
generated
vendored
Normal file
105
frontend/node_modules/date-fns/locale/ms/_lib/formatDistance.js
generated
vendored
Normal file
@ -0,0 +1,105 @@
|
||||
"use strict";
|
||||
exports.formatDistance = void 0;
|
||||
|
||||
const formatDistanceLocale = {
|
||||
lessThanXSeconds: {
|
||||
one: "kurang dari 1 saat",
|
||||
other: "kurang dari {{count}} saat",
|
||||
},
|
||||
|
||||
xSeconds: {
|
||||
one: "1 saat",
|
||||
other: "{{count}} saat",
|
||||
},
|
||||
|
||||
halfAMinute: "setengah minit",
|
||||
|
||||
lessThanXMinutes: {
|
||||
one: "kurang dari 1 minit",
|
||||
other: "kurang dari {{count}} minit",
|
||||
},
|
||||
|
||||
xMinutes: {
|
||||
one: "1 minit",
|
||||
other: "{{count}} minit",
|
||||
},
|
||||
|
||||
aboutXHours: {
|
||||
one: "sekitar 1 jam",
|
||||
other: "sekitar {{count}} jam",
|
||||
},
|
||||
|
||||
xHours: {
|
||||
one: "1 jam",
|
||||
other: "{{count}} jam",
|
||||
},
|
||||
|
||||
xDays: {
|
||||
one: "1 hari",
|
||||
other: "{{count}} hari",
|
||||
},
|
||||
|
||||
aboutXWeeks: {
|
||||
one: "sekitar 1 minggu",
|
||||
other: "sekitar {{count}} minggu",
|
||||
},
|
||||
|
||||
xWeeks: {
|
||||
one: "1 minggu",
|
||||
other: "{{count}} minggu",
|
||||
},
|
||||
|
||||
aboutXMonths: {
|
||||
one: "sekitar 1 bulan",
|
||||
other: "sekitar {{count}} bulan",
|
||||
},
|
||||
|
||||
xMonths: {
|
||||
one: "1 bulan",
|
||||
other: "{{count}} bulan",
|
||||
},
|
||||
|
||||
aboutXYears: {
|
||||
one: "sekitar 1 tahun",
|
||||
other: "sekitar {{count}} tahun",
|
||||
},
|
||||
|
||||
xYears: {
|
||||
one: "1 tahun",
|
||||
other: "{{count}} tahun",
|
||||
},
|
||||
|
||||
overXYears: {
|
||||
one: "lebih dari 1 tahun",
|
||||
other: "lebih dari {{count}} tahun",
|
||||
},
|
||||
|
||||
almostXYears: {
|
||||
one: "hampir 1 tahun",
|
||||
other: "hampir {{count}} tahun",
|
||||
},
|
||||
};
|
||||
|
||||
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}}", String(count));
|
||||
}
|
||||
|
||||
if (options?.addSuffix) {
|
||||
if (options.comparison && options.comparison > 0) {
|
||||
return "dalam masa " + result;
|
||||
} else {
|
||||
return result + " yang lalu";
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
};
|
||||
exports.formatDistance = formatDistance;
|
||||
101
frontend/node_modules/date-fns/locale/ms/_lib/formatDistance.mjs
generated
vendored
Normal file
101
frontend/node_modules/date-fns/locale/ms/_lib/formatDistance.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
const formatDistanceLocale = {
|
||||
lessThanXSeconds: {
|
||||
one: "kurang dari 1 saat",
|
||||
other: "kurang dari {{count}} saat",
|
||||
},
|
||||
|
||||
xSeconds: {
|
||||
one: "1 saat",
|
||||
other: "{{count}} saat",
|
||||
},
|
||||
|
||||
halfAMinute: "setengah minit",
|
||||
|
||||
lessThanXMinutes: {
|
||||
one: "kurang dari 1 minit",
|
||||
other: "kurang dari {{count}} minit",
|
||||
},
|
||||
|
||||
xMinutes: {
|
||||
one: "1 minit",
|
||||
other: "{{count}} minit",
|
||||
},
|
||||
|
||||
aboutXHours: {
|
||||
one: "sekitar 1 jam",
|
||||
other: "sekitar {{count}} jam",
|
||||
},
|
||||
|
||||
xHours: {
|
||||
one: "1 jam",
|
||||
other: "{{count}} jam",
|
||||
},
|
||||
|
||||
xDays: {
|
||||
one: "1 hari",
|
||||
other: "{{count}} hari",
|
||||
},
|
||||
|
||||
aboutXWeeks: {
|
||||
one: "sekitar 1 minggu",
|
||||
other: "sekitar {{count}} minggu",
|
||||
},
|
||||
|
||||
xWeeks: {
|
||||
one: "1 minggu",
|
||||
other: "{{count}} minggu",
|
||||
},
|
||||
|
||||
aboutXMonths: {
|
||||
one: "sekitar 1 bulan",
|
||||
other: "sekitar {{count}} bulan",
|
||||
},
|
||||
|
||||
xMonths: {
|
||||
one: "1 bulan",
|
||||
other: "{{count}} bulan",
|
||||
},
|
||||
|
||||
aboutXYears: {
|
||||
one: "sekitar 1 tahun",
|
||||
other: "sekitar {{count}} tahun",
|
||||
},
|
||||
|
||||
xYears: {
|
||||
one: "1 tahun",
|
||||
other: "{{count}} tahun",
|
||||
},
|
||||
|
||||
overXYears: {
|
||||
one: "lebih dari 1 tahun",
|
||||
other: "lebih dari {{count}} tahun",
|
||||
},
|
||||
|
||||
almostXYears: {
|
||||
one: "hampir 1 tahun",
|
||||
other: "hampir {{count}} tahun",
|
||||
},
|
||||
};
|
||||
|
||||
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}}", String(count));
|
||||
}
|
||||
|
||||
if (options?.addSuffix) {
|
||||
if (options.comparison && options.comparison > 0) {
|
||||
return "dalam masa " + result;
|
||||
} else {
|
||||
return result + " yang lalu";
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
};
|
||||
2
frontend/node_modules/date-fns/locale/ms/_lib/formatLong.d.mts
generated
vendored
Normal file
2
frontend/node_modules/date-fns/locale/ms/_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/ms/_lib/formatLong.d.ts
generated
vendored
Normal file
2
frontend/node_modules/date-fns/locale/ms/_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/ms/_lib/formatLong.js
generated
vendored
Normal file
41
frontend/node_modules/date-fns/locale/ms/_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 yyyy",
|
||||
long: "d MMMM yyyy",
|
||||
medium: "d MMM yyyy",
|
||||
short: "d/M/yyyy",
|
||||
};
|
||||
|
||||
const timeFormats = {
|
||||
full: "HH.mm.ss",
|
||||
long: "HH.mm.ss",
|
||||
medium: "HH.mm",
|
||||
short: "HH.mm",
|
||||
};
|
||||
|
||||
const dateTimeFormats = {
|
||||
full: "{{date}} 'pukul' {{time}}",
|
||||
long: "{{date}} 'pukul' {{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/ms/_lib/formatLong.mjs
generated
vendored
Normal file
39
frontend/node_modules/date-fns/locale/ms/_lib/formatLong.mjs
generated
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
import { buildFormatLongFn } from "../../_lib/buildFormatLongFn.mjs";
|
||||
|
||||
const dateFormats = {
|
||||
full: "EEEE, d MMMM yyyy",
|
||||
long: "d MMMM yyyy",
|
||||
medium: "d MMM yyyy",
|
||||
short: "d/M/yyyy",
|
||||
};
|
||||
|
||||
const timeFormats = {
|
||||
full: "HH.mm.ss",
|
||||
long: "HH.mm.ss",
|
||||
medium: "HH.mm",
|
||||
short: "HH.mm",
|
||||
};
|
||||
|
||||
const dateTimeFormats = {
|
||||
full: "{{date}} 'pukul' {{time}}",
|
||||
long: "{{date}} 'pukul' {{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/ms/_lib/formatRelative.d.mts
generated
vendored
Normal file
2
frontend/node_modules/date-fns/locale/ms/_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/ms/_lib/formatRelative.d.ts
generated
vendored
Normal file
2
frontend/node_modules/date-fns/locale/ms/_lib/formatRelative.d.ts
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
import type { FormatRelativeFn } from "../../types.js";
|
||||
export declare const formatRelative: FormatRelativeFn;
|
||||
15
frontend/node_modules/date-fns/locale/ms/_lib/formatRelative.js
generated
vendored
Normal file
15
frontend/node_modules/date-fns/locale/ms/_lib/formatRelative.js
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
"use strict";
|
||||
exports.formatRelative = void 0;
|
||||
|
||||
const formatRelativeLocale = {
|
||||
lastWeek: "eeee 'lepas pada jam' p",
|
||||
yesterday: "'Semalam pada jam' p",
|
||||
today: "'Hari ini pada jam' p",
|
||||
tomorrow: "'Esok pada jam' p",
|
||||
nextWeek: "eeee 'pada jam' p",
|
||||
other: "P",
|
||||
};
|
||||
|
||||
const formatRelative = (token, _date, _baseDate, _options) =>
|
||||
formatRelativeLocale[token];
|
||||
exports.formatRelative = formatRelative;
|
||||
11
frontend/node_modules/date-fns/locale/ms/_lib/formatRelative.mjs
generated
vendored
Normal file
11
frontend/node_modules/date-fns/locale/ms/_lib/formatRelative.mjs
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
const formatRelativeLocale = {
|
||||
lastWeek: "eeee 'lepas pada jam' p",
|
||||
yesterday: "'Semalam pada jam' p",
|
||||
today: "'Hari ini pada jam' p",
|
||||
tomorrow: "'Esok pada jam' p",
|
||||
nextWeek: "eeee 'pada jam' p",
|
||||
other: "P",
|
||||
};
|
||||
|
||||
export const formatRelative = (token, _date, _baseDate, _options) =>
|
||||
formatRelativeLocale[token];
|
||||
2
frontend/node_modules/date-fns/locale/ms/_lib/localize.d.mts
generated
vendored
Normal file
2
frontend/node_modules/date-fns/locale/ms/_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/ms/_lib/localize.d.ts
generated
vendored
Normal file
2
frontend/node_modules/date-fns/locale/ms/_lib/localize.d.ts
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
import type { Localize } from "../../types.js";
|
||||
export declare const localize: Localize;
|
||||
164
frontend/node_modules/date-fns/locale/ms/_lib/localize.js
generated
vendored
Normal file
164
frontend/node_modules/date-fns/locale/ms/_lib/localize.js
generated
vendored
Normal file
@ -0,0 +1,164 @@
|
||||
"use strict";
|
||||
exports.localize = void 0;
|
||||
var _index = require("../../_lib/buildLocalizeFn.js");
|
||||
|
||||
// Most data for localization are taken from this page
|
||||
// https://www.unicode.org/cldr/charts/32/summary/ms.html
|
||||
const eraValues = {
|
||||
narrow: ["SM", "M"],
|
||||
abbreviated: ["SM", "M"],
|
||||
wide: ["Sebelum Masihi", "Masihi"],
|
||||
};
|
||||
|
||||
const quarterValues = {
|
||||
narrow: ["1", "2", "3", "4"],
|
||||
abbreviated: ["S1", "S2", "S3", "S4"],
|
||||
wide: ["Suku pertama", "Suku kedua", "Suku ketiga", "Suku keempat"],
|
||||
};
|
||||
|
||||
// Note: in Malay, 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", "F", "M", "A", "M", "J", "J", "O", "S", "O", "N", "D"],
|
||||
abbreviated: [
|
||||
"Jan",
|
||||
"Feb",
|
||||
"Mac",
|
||||
"Apr",
|
||||
"Mei",
|
||||
"Jun",
|
||||
"Jul",
|
||||
"Ogo",
|
||||
"Sep",
|
||||
"Okt",
|
||||
"Nov",
|
||||
"Dis",
|
||||
],
|
||||
|
||||
wide: [
|
||||
"Januari",
|
||||
"Februari",
|
||||
"Mac",
|
||||
"April",
|
||||
"Mei",
|
||||
"Jun",
|
||||
"Julai",
|
||||
"Ogos",
|
||||
"September",
|
||||
"Oktober",
|
||||
"November",
|
||||
"Disember",
|
||||
],
|
||||
};
|
||||
|
||||
const dayValues = {
|
||||
narrow: ["A", "I", "S", "R", "K", "J", "S"],
|
||||
short: ["Ahd", "Isn", "Sel", "Rab", "Kha", "Jum", "Sab"],
|
||||
abbreviated: ["Ahd", "Isn", "Sel", "Rab", "Kha", "Jum", "Sab"],
|
||||
wide: ["Ahad", "Isnin", "Selasa", "Rabu", "Khamis", "Jumaat", "Sabtu"],
|
||||
};
|
||||
|
||||
const dayPeriodValues = {
|
||||
narrow: {
|
||||
am: "am",
|
||||
pm: "pm",
|
||||
midnight: "tgh malam",
|
||||
noon: "tgh hari",
|
||||
morning: "pagi",
|
||||
afternoon: "tengah hari",
|
||||
evening: "petang",
|
||||
night: "malam",
|
||||
},
|
||||
abbreviated: {
|
||||
am: "AM",
|
||||
pm: "PM",
|
||||
midnight: "tengah malam",
|
||||
noon: "tengah hari",
|
||||
morning: "pagi",
|
||||
afternoon: "tengah hari",
|
||||
evening: "petang",
|
||||
night: "malam",
|
||||
},
|
||||
wide: {
|
||||
am: "a.m.",
|
||||
pm: "p.m.",
|
||||
midnight: "tengah malam",
|
||||
noon: "tengah hari",
|
||||
morning: "pagi",
|
||||
afternoon: "tengah hari",
|
||||
evening: "petang",
|
||||
night: "malam",
|
||||
},
|
||||
};
|
||||
|
||||
const formattingDayPeriodValues = {
|
||||
narrow: {
|
||||
am: "am",
|
||||
pm: "pm",
|
||||
midnight: "tengah malam",
|
||||
noon: "tengah hari",
|
||||
morning: "pagi",
|
||||
afternoon: "tengah hari",
|
||||
evening: "petang",
|
||||
night: "malam",
|
||||
},
|
||||
abbreviated: {
|
||||
am: "AM",
|
||||
pm: "PM",
|
||||
midnight: "tengah malam",
|
||||
noon: "tengah hari",
|
||||
morning: "pagi",
|
||||
afternoon: "tengah hari",
|
||||
evening: "petang",
|
||||
night: "malam",
|
||||
},
|
||||
wide: {
|
||||
am: "a.m.",
|
||||
pm: "p.m.",
|
||||
midnight: "tengah malam",
|
||||
noon: "tengah hari",
|
||||
morning: "pagi",
|
||||
afternoon: "tengah hari",
|
||||
evening: "petang",
|
||||
night: "malam",
|
||||
},
|
||||
};
|
||||
|
||||
const ordinalNumber = (dirtyNumber, _options) => {
|
||||
// Can't use "pertama", "kedua" because can't be parsed
|
||||
return "ke-" + Number(dirtyNumber);
|
||||
};
|
||||
|
||||
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",
|
||||
}),
|
||||
});
|
||||
162
frontend/node_modules/date-fns/locale/ms/_lib/localize.mjs
generated
vendored
Normal file
162
frontend/node_modules/date-fns/locale/ms/_lib/localize.mjs
generated
vendored
Normal file
@ -0,0 +1,162 @@
|
||||
import { buildLocalizeFn } from "../../_lib/buildLocalizeFn.mjs";
|
||||
|
||||
// Most data for localization are taken from this page
|
||||
// https://www.unicode.org/cldr/charts/32/summary/ms.html
|
||||
const eraValues = {
|
||||
narrow: ["SM", "M"],
|
||||
abbreviated: ["SM", "M"],
|
||||
wide: ["Sebelum Masihi", "Masihi"],
|
||||
};
|
||||
|
||||
const quarterValues = {
|
||||
narrow: ["1", "2", "3", "4"],
|
||||
abbreviated: ["S1", "S2", "S3", "S4"],
|
||||
wide: ["Suku pertama", "Suku kedua", "Suku ketiga", "Suku keempat"],
|
||||
};
|
||||
|
||||
// Note: in Malay, 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", "F", "M", "A", "M", "J", "J", "O", "S", "O", "N", "D"],
|
||||
abbreviated: [
|
||||
"Jan",
|
||||
"Feb",
|
||||
"Mac",
|
||||
"Apr",
|
||||
"Mei",
|
||||
"Jun",
|
||||
"Jul",
|
||||
"Ogo",
|
||||
"Sep",
|
||||
"Okt",
|
||||
"Nov",
|
||||
"Dis",
|
||||
],
|
||||
|
||||
wide: [
|
||||
"Januari",
|
||||
"Februari",
|
||||
"Mac",
|
||||
"April",
|
||||
"Mei",
|
||||
"Jun",
|
||||
"Julai",
|
||||
"Ogos",
|
||||
"September",
|
||||
"Oktober",
|
||||
"November",
|
||||
"Disember",
|
||||
],
|
||||
};
|
||||
|
||||
const dayValues = {
|
||||
narrow: ["A", "I", "S", "R", "K", "J", "S"],
|
||||
short: ["Ahd", "Isn", "Sel", "Rab", "Kha", "Jum", "Sab"],
|
||||
abbreviated: ["Ahd", "Isn", "Sel", "Rab", "Kha", "Jum", "Sab"],
|
||||
wide: ["Ahad", "Isnin", "Selasa", "Rabu", "Khamis", "Jumaat", "Sabtu"],
|
||||
};
|
||||
|
||||
const dayPeriodValues = {
|
||||
narrow: {
|
||||
am: "am",
|
||||
pm: "pm",
|
||||
midnight: "tgh malam",
|
||||
noon: "tgh hari",
|
||||
morning: "pagi",
|
||||
afternoon: "tengah hari",
|
||||
evening: "petang",
|
||||
night: "malam",
|
||||
},
|
||||
abbreviated: {
|
||||
am: "AM",
|
||||
pm: "PM",
|
||||
midnight: "tengah malam",
|
||||
noon: "tengah hari",
|
||||
morning: "pagi",
|
||||
afternoon: "tengah hari",
|
||||
evening: "petang",
|
||||
night: "malam",
|
||||
},
|
||||
wide: {
|
||||
am: "a.m.",
|
||||
pm: "p.m.",
|
||||
midnight: "tengah malam",
|
||||
noon: "tengah hari",
|
||||
morning: "pagi",
|
||||
afternoon: "tengah hari",
|
||||
evening: "petang",
|
||||
night: "malam",
|
||||
},
|
||||
};
|
||||
|
||||
const formattingDayPeriodValues = {
|
||||
narrow: {
|
||||
am: "am",
|
||||
pm: "pm",
|
||||
midnight: "tengah malam",
|
||||
noon: "tengah hari",
|
||||
morning: "pagi",
|
||||
afternoon: "tengah hari",
|
||||
evening: "petang",
|
||||
night: "malam",
|
||||
},
|
||||
abbreviated: {
|
||||
am: "AM",
|
||||
pm: "PM",
|
||||
midnight: "tengah malam",
|
||||
noon: "tengah hari",
|
||||
morning: "pagi",
|
||||
afternoon: "tengah hari",
|
||||
evening: "petang",
|
||||
night: "malam",
|
||||
},
|
||||
wide: {
|
||||
am: "a.m.",
|
||||
pm: "p.m.",
|
||||
midnight: "tengah malam",
|
||||
noon: "tengah hari",
|
||||
morning: "pagi",
|
||||
afternoon: "tengah hari",
|
||||
evening: "petang",
|
||||
night: "malam",
|
||||
},
|
||||
};
|
||||
|
||||
const ordinalNumber = (dirtyNumber, _options) => {
|
||||
// Can't use "pertama", "kedua" because can't be parsed
|
||||
return "ke-" + Number(dirtyNumber);
|
||||
};
|
||||
|
||||
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/ms/_lib/match.d.mts
generated
vendored
Normal file
2
frontend/node_modules/date-fns/locale/ms/_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/ms/_lib/match.d.ts
generated
vendored
Normal file
2
frontend/node_modules/date-fns/locale/ms/_lib/match.d.ts
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
import type { Match } from "../../types.js";
|
||||
export declare const match: Match;
|
||||
135
frontend/node_modules/date-fns/locale/ms/_lib/match.js
generated
vendored
Normal file
135
frontend/node_modules/date-fns/locale/ms/_lib/match.js
generated
vendored
Normal file
@ -0,0 +1,135 @@
|
||||
"use strict";
|
||||
exports.match = void 0;
|
||||
|
||||
var _index = require("../../_lib/buildMatchFn.js");
|
||||
var _index2 = require("../../_lib/buildMatchPatternFn.js");
|
||||
|
||||
const matchOrdinalNumberPattern = /^ke-(\d+)?/i;
|
||||
const parseOrdinalNumberPattern = /petama|\d+/i;
|
||||
|
||||
const matchEraPatterns = {
|
||||
narrow: /^(sm|m)/i,
|
||||
abbreviated: /^(s\.?\s?m\.?|m\.?)/i,
|
||||
wide: /^(sebelum masihi|masihi)/i,
|
||||
};
|
||||
const parseEraPatterns = {
|
||||
any: [/^s/i, /^(m)/i],
|
||||
};
|
||||
|
||||
const matchQuarterPatterns = {
|
||||
narrow: /^[1234]/i,
|
||||
abbreviated: /^S[1234]/i,
|
||||
wide: /Suku (pertama|kedua|ketiga|keempat)/i,
|
||||
};
|
||||
const parseQuarterPatterns = {
|
||||
any: [/pertama|1/i, /kedua|2/i, /ketiga|3/i, /keempat|4/i],
|
||||
};
|
||||
|
||||
const matchMonthPatterns = {
|
||||
narrow: /^[jfmasond]/i,
|
||||
abbreviated: /^(jan|feb|mac|apr|mei|jun|jul|ogo|sep|okt|nov|dis)/i,
|
||||
wide: /^(januari|februari|mac|april|mei|jun|julai|ogos|september|oktober|november|disember)/i,
|
||||
};
|
||||
const parseMonthPatterns = {
|
||||
narrow: [
|
||||
/^j/i,
|
||||
/^f/i,
|
||||
/^m/i,
|
||||
/^a/i,
|
||||
/^m/i,
|
||||
/^j/i,
|
||||
/^j/i,
|
||||
/^o/i,
|
||||
/^s/i,
|
||||
/^o/i,
|
||||
/^n/i,
|
||||
/^d/i,
|
||||
],
|
||||
|
||||
any: [
|
||||
/^ja/i,
|
||||
/^f/i,
|
||||
/^ma/i,
|
||||
/^ap/i,
|
||||
/^me/i,
|
||||
/^jun/i,
|
||||
/^jul/i,
|
||||
/^og/i,
|
||||
/^s/i,
|
||||
/^ok/i,
|
||||
/^n/i,
|
||||
/^d/i,
|
||||
],
|
||||
};
|
||||
|
||||
const matchDayPatterns = {
|
||||
narrow: /^[aisrkj]/i,
|
||||
short: /^(ahd|isn|sel|rab|kha|jum|sab)/i,
|
||||
abbreviated: /^(ahd|isn|sel|rab|kha|jum|sab)/i,
|
||||
wide: /^(ahad|isnin|selasa|rabu|khamis|jumaat|sabtu)/i,
|
||||
};
|
||||
const parseDayPatterns = {
|
||||
narrow: [/^a/i, /^i/i, /^s/i, /^r/i, /^k/i, /^j/i, /^s/i],
|
||||
any: [/^a/i, /^i/i, /^se/i, /^r/i, /^k/i, /^j/i, /^sa/i],
|
||||
};
|
||||
|
||||
const matchDayPeriodPatterns = {
|
||||
narrow: /^(am|pm|tengah malam|tengah hari|pagi|petang|malam)/i,
|
||||
any: /^([ap]\.?\s?m\.?|tengah malam|tengah hari|pagi|petang|malam)/i,
|
||||
};
|
||||
const parseDayPeriodPatterns = {
|
||||
any: {
|
||||
am: /^a/i,
|
||||
pm: /^pm/i,
|
||||
midnight: /^tengah m/i,
|
||||
noon: /^tengah h/i,
|
||||
morning: /pa/i,
|
||||
afternoon: /tengah h/i,
|
||||
evening: /pe/i,
|
||||
night: /m/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",
|
||||
}),
|
||||
});
|
||||
132
frontend/node_modules/date-fns/locale/ms/_lib/match.mjs
generated
vendored
Normal file
132
frontend/node_modules/date-fns/locale/ms/_lib/match.mjs
generated
vendored
Normal file
@ -0,0 +1,132 @@
|
||||
import { buildMatchFn } from "../../_lib/buildMatchFn.mjs";
|
||||
import { buildMatchPatternFn } from "../../_lib/buildMatchPatternFn.mjs";
|
||||
|
||||
const matchOrdinalNumberPattern = /^ke-(\d+)?/i;
|
||||
const parseOrdinalNumberPattern = /petama|\d+/i;
|
||||
|
||||
const matchEraPatterns = {
|
||||
narrow: /^(sm|m)/i,
|
||||
abbreviated: /^(s\.?\s?m\.?|m\.?)/i,
|
||||
wide: /^(sebelum masihi|masihi)/i,
|
||||
};
|
||||
const parseEraPatterns = {
|
||||
any: [/^s/i, /^(m)/i],
|
||||
};
|
||||
|
||||
const matchQuarterPatterns = {
|
||||
narrow: /^[1234]/i,
|
||||
abbreviated: /^S[1234]/i,
|
||||
wide: /Suku (pertama|kedua|ketiga|keempat)/i,
|
||||
};
|
||||
const parseQuarterPatterns = {
|
||||
any: [/pertama|1/i, /kedua|2/i, /ketiga|3/i, /keempat|4/i],
|
||||
};
|
||||
|
||||
const matchMonthPatterns = {
|
||||
narrow: /^[jfmasond]/i,
|
||||
abbreviated: /^(jan|feb|mac|apr|mei|jun|jul|ogo|sep|okt|nov|dis)/i,
|
||||
wide: /^(januari|februari|mac|april|mei|jun|julai|ogos|september|oktober|november|disember)/i,
|
||||
};
|
||||
const parseMonthPatterns = {
|
||||
narrow: [
|
||||
/^j/i,
|
||||
/^f/i,
|
||||
/^m/i,
|
||||
/^a/i,
|
||||
/^m/i,
|
||||
/^j/i,
|
||||
/^j/i,
|
||||
/^o/i,
|
||||
/^s/i,
|
||||
/^o/i,
|
||||
/^n/i,
|
||||
/^d/i,
|
||||
],
|
||||
|
||||
any: [
|
||||
/^ja/i,
|
||||
/^f/i,
|
||||
/^ma/i,
|
||||
/^ap/i,
|
||||
/^me/i,
|
||||
/^jun/i,
|
||||
/^jul/i,
|
||||
/^og/i,
|
||||
/^s/i,
|
||||
/^ok/i,
|
||||
/^n/i,
|
||||
/^d/i,
|
||||
],
|
||||
};
|
||||
|
||||
const matchDayPatterns = {
|
||||
narrow: /^[aisrkj]/i,
|
||||
short: /^(ahd|isn|sel|rab|kha|jum|sab)/i,
|
||||
abbreviated: /^(ahd|isn|sel|rab|kha|jum|sab)/i,
|
||||
wide: /^(ahad|isnin|selasa|rabu|khamis|jumaat|sabtu)/i,
|
||||
};
|
||||
const parseDayPatterns = {
|
||||
narrow: [/^a/i, /^i/i, /^s/i, /^r/i, /^k/i, /^j/i, /^s/i],
|
||||
any: [/^a/i, /^i/i, /^se/i, /^r/i, /^k/i, /^j/i, /^sa/i],
|
||||
};
|
||||
|
||||
const matchDayPeriodPatterns = {
|
||||
narrow: /^(am|pm|tengah malam|tengah hari|pagi|petang|malam)/i,
|
||||
any: /^([ap]\.?\s?m\.?|tengah malam|tengah hari|pagi|petang|malam)/i,
|
||||
};
|
||||
const parseDayPeriodPatterns = {
|
||||
any: {
|
||||
am: /^a/i,
|
||||
pm: /^pm/i,
|
||||
midnight: /^tengah m/i,
|
||||
noon: /^tengah h/i,
|
||||
morning: /pa/i,
|
||||
afternoon: /tengah h/i,
|
||||
evening: /pe/i,
|
||||
night: /m/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