aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/date-fns/locale/mt/_lib
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2025-06-29 11:49:28 -0700
committerPinapelz <yukais@pinapelz.com>2025-06-29 11:49:28 -0700
commitd55b767039605256c736166a942a9138e3eacfd7 (patch)
tree947063b634c50d438a794325f13275e134aa5993 /node_modules/date-fns/locale/mt/_lib
parent864ce67d89c77d8ef9c3361f80d619853abcf91c (diff)
remove dev node_modules (oops)
Diffstat (limited to 'node_modules/date-fns/locale/mt/_lib')
-rw-r--r--node_modules/date-fns/locale/mt/_lib/formatDistance/index.js97
-rw-r--r--node_modules/date-fns/locale/mt/_lib/formatLong/index.js43
-rw-r--r--node_modules/date-fns/locale/mt/_lib/formatRelative/index.js20
-rw-r--r--node_modules/date-fns/locale/mt/_lib/localize/index.js128
-rw-r--r--node_modules/date-fns/locale/mt/_lib/match/index.js107
5 files changed, 0 insertions, 395 deletions
diff --git a/node_modules/date-fns/locale/mt/_lib/formatDistance/index.js b/node_modules/date-fns/locale/mt/_lib/formatDistance/index.js
deleted file mode 100644
index bc569f5..0000000
--- a/node_modules/date-fns/locale/mt/_lib/formatDistance/index.js
+++ /dev/null
@@ -1,97 +0,0 @@
-"use strict";
-
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-exports.default = void 0;
-var formatDistanceLocale = {
- lessThanXSeconds: {
- one: 'inqas minn sekonda',
- other: 'inqas minn {{count}} sekondi'
- },
- xSeconds: {
- one: 'sekonda',
- other: '{{count}} sekondi'
- },
- halfAMinute: 'nofs minuta',
- lessThanXMinutes: {
- one: 'inqas minn minuta',
- other: 'inqas minn {{count}} minuti'
- },
- xMinutes: {
- one: 'minuta',
- other: '{{count}} minuti'
- },
- aboutXHours: {
- one: 'madwar siegħa',
- other: 'madwar {{count}} siegħat'
- },
- xHours: {
- one: 'siegħa',
- other: '{{count}} siegħat'
- },
- xDays: {
- one: 'ġurnata',
- other: '{{count}} ġranet'
- },
- aboutXWeeks: {
- one: 'madwar ġimgħa',
- other: 'madwar {{count}} ġimgħat'
- },
- xWeeks: {
- one: 'ġimgħa',
- other: '{{count}} ġimgħat'
- },
- aboutXMonths: {
- one: 'madwar xahar',
- other: 'madwar {{count}} xhur'
- },
- xMonths: {
- one: 'xahar',
- other: '{{count}} xhur'
- },
- aboutXYears: {
- one: 'madwar sena',
- two: 'madwar sentejn',
- other: 'madwar {{count}} snin'
- },
- xYears: {
- one: 'sena',
- two: 'sentejn',
- other: '{{count}} snin'
- },
- overXYears: {
- one: 'aktar minn sena',
- two: 'aktar minn sentejn',
- other: 'aktar minn {{count}} snin'
- },
- almostXYears: {
- one: 'kważi sena',
- two: 'kważi sentejn',
- other: 'kważi {{count}} snin'
- }
-};
-var formatDistance = function formatDistance(token, count, options) {
- var result;
- var tokenValue = formatDistanceLocale[token];
- if (typeof tokenValue === 'string') {
- result = tokenValue;
- } else if (count === 1) {
- result = tokenValue.one;
- } else if (count === 2 && tokenValue.two) {
- result = tokenValue.two;
- } else {
- result = tokenValue.other.replace('{{count}}', String(count));
- }
- if (options !== null && options !== void 0 && options.addSuffix) {
- if (options.comparison && options.comparison > 0) {
- return "f'" + result;
- } else {
- return result + ' ilu';
- }
- }
- return result;
-};
-var _default = formatDistance;
-exports.default = _default;
-module.exports = exports.default; \ No newline at end of file
diff --git a/node_modules/date-fns/locale/mt/_lib/formatLong/index.js b/node_modules/date-fns/locale/mt/_lib/formatLong/index.js
deleted file mode 100644
index 8b4182a..0000000
--- a/node_modules/date-fns/locale/mt/_lib/formatLong/index.js
+++ /dev/null
@@ -1,43 +0,0 @@
-"use strict";
-
-var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-exports.default = void 0;
-var _index = _interopRequireDefault(require("../../../_lib/buildFormatLongFn/index.js"));
-var dateFormats = {
- full: 'EEEE, d MMMM yyyy',
- long: 'd MMMM yyyy',
- medium: 'd MMM yyyy',
- short: 'dd/MM/yyyy'
-};
-var timeFormats = {
- full: 'HH:mm:ss zzzz',
- long: 'HH:mm:ss z',
- medium: 'HH:mm:ss',
- short: 'HH:mm'
-};
-var dateTimeFormats = {
- full: '{{date}} {{time}}',
- long: '{{date}} {{time}}',
- medium: '{{date}} {{time}}',
- short: '{{date}} {{time}}'
-};
-var formatLong = {
- date: (0, _index.default)({
- formats: dateFormats,
- defaultWidth: 'full'
- }),
- time: (0, _index.default)({
- formats: timeFormats,
- defaultWidth: 'full'
- }),
- dateTime: (0, _index.default)({
- formats: dateTimeFormats,
- defaultWidth: 'full'
- })
-};
-var _default = formatLong;
-exports.default = _default;
-module.exports = exports.default; \ No newline at end of file
diff --git a/node_modules/date-fns/locale/mt/_lib/formatRelative/index.js b/node_modules/date-fns/locale/mt/_lib/formatRelative/index.js
deleted file mode 100644
index 906caf1..0000000
--- a/node_modules/date-fns/locale/mt/_lib/formatRelative/index.js
+++ /dev/null
@@ -1,20 +0,0 @@
-"use strict";
-
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-exports.default = void 0;
-var formatRelativeLocale = {
- lastWeek: "eeee 'li għadda' 'fil-'p",
- yesterday: "'Il-bieraħ fil-'p",
- today: "'Illum fil-'p",
- tomorrow: "'Għada fil-'p",
- nextWeek: "eeee 'fil-'p",
- other: 'P'
-};
-var formatRelative = function formatRelative(token, _date, _baseDate, _options) {
- return formatRelativeLocale[token];
-};
-var _default = formatRelative;
-exports.default = _default;
-module.exports = exports.default; \ No newline at end of file
diff --git a/node_modules/date-fns/locale/mt/_lib/localize/index.js b/node_modules/date-fns/locale/mt/_lib/localize/index.js
deleted file mode 100644
index e431688..0000000
--- a/node_modules/date-fns/locale/mt/_lib/localize/index.js
+++ /dev/null
@@ -1,128 +0,0 @@
-"use strict";
-
-var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-exports.default = void 0;
-var _index = _interopRequireDefault(require("../../../_lib/buildLocalizeFn/index.js"));
-var eraValues = {
- narrow: ['Q', 'W'],
- abbreviated: ['QK', 'WK'],
- wide: ['qabel Kristu', 'wara Kristu']
-};
-var quarterValues = {
- narrow: ['1', '2', '3', '4'],
- abbreviated: ['K1', 'K2', 'K3', 'K4'],
- wide: ['1. kwart', '2. kwart', '3. kwart', '4. kwart']
-};
-var monthValues = {
- narrow: ['J', 'F', 'M', 'A', 'M', 'Ġ', 'L', 'A', 'S', 'O', 'N', 'D'],
- abbreviated: ['Jan', 'Fra', 'Mar', 'Apr', 'Mej', 'Ġun', 'Lul', 'Aww', 'Set', 'Ott', 'Nov', 'Diċ'],
- wide: ['Jannar', 'Frar', 'Marzu', 'April', 'Mejju', 'Ġunju', 'Lulju', 'Awwissu', 'Settembru', 'Ottubru', 'Novembru', 'Diċembru']
-};
-var dayValues = {
- narrow: ['Ħ', 'T', 'T', 'E', 'Ħ', 'Ġ', 'S'],
- short: ['Ħa', 'Tn', 'Tl', 'Er', 'Ħa', 'Ġi', 'Si'],
- abbreviated: ['Ħad', 'Tne', 'Tli', 'Erb', 'Ħam', 'Ġim', 'Sib'],
- wide: ['Il-Ħadd', 'It-Tnejn', 'It-Tlieta', 'L-Erbgħa', 'Il-Ħamis', 'Il-Ġimgħa', 'Is-Sibt']
-};
-var dayPeriodValues = {
- narrow: {
- am: 'a',
- pm: 'p',
- midnight: 'nofsillejl',
- noon: 'nofsinhar',
- morning: 'għodwa',
- afternoon: 'wara nofsinhar',
- evening: 'filgħaxija',
- night: 'lejl'
- },
- abbreviated: {
- am: 'AM',
- pm: 'PM',
- midnight: 'nofsillejl',
- noon: 'nofsinhar',
- morning: 'għodwa',
- afternoon: 'wara nofsinhar',
- evening: 'filgħaxija',
- night: 'lejl'
- },
- wide: {
- am: 'a.m.',
- pm: 'p.m.',
- midnight: 'nofsillejl',
- noon: 'nofsinhar',
- morning: 'għodwa',
- afternoon: 'wara nofsinhar',
- evening: 'filgħaxija',
- night: 'lejl'
- }
-};
-var formattingDayPeriodValues = {
- narrow: {
- am: 'a',
- pm: 'p',
- midnight: "f'nofsillejl",
- noon: "f'nofsinhar",
- morning: 'filgħodu',
- afternoon: 'wara nofsinhar',
- evening: 'filgħaxija',
- night: 'billejl'
- },
- abbreviated: {
- am: 'AM',
- pm: 'PM',
- midnight: "f'nofsillejl",
- noon: "f'nofsinhar",
- morning: 'filgħodu',
- afternoon: 'wara nofsinhar',
- evening: 'filgħaxija',
- night: 'billejl'
- },
- wide: {
- am: 'a.m.',
- pm: 'p.m.',
- midnight: "f'nofsillejl",
- noon: "f'nofsinhar",
- morning: 'filgħodu',
- afternoon: 'wara nofsinhar',
- evening: 'filgħaxija',
- night: 'billejl'
- }
-};
-var ordinalNumber = function ordinalNumber(dirtyNumber, _options) {
- var number = Number(dirtyNumber);
- return number + 'º';
-};
-var localize = {
- ordinalNumber: ordinalNumber,
- era: (0, _index.default)({
- values: eraValues,
- defaultWidth: 'wide'
- }),
- quarter: (0, _index.default)({
- values: quarterValues,
- defaultWidth: 'wide',
- argumentCallback: function argumentCallback(quarter) {
- return quarter - 1;
- }
- }),
- month: (0, _index.default)({
- values: monthValues,
- defaultWidth: 'wide'
- }),
- day: (0, _index.default)({
- values: dayValues,
- defaultWidth: 'wide'
- }),
- dayPeriod: (0, _index.default)({
- values: dayPeriodValues,
- defaultWidth: 'wide',
- formattingValues: formattingDayPeriodValues,
- defaultFormattingWidth: 'wide'
- })
-};
-var _default = localize;
-exports.default = _default;
-module.exports = exports.default; \ No newline at end of file
diff --git a/node_modules/date-fns/locale/mt/_lib/match/index.js b/node_modules/date-fns/locale/mt/_lib/match/index.js
deleted file mode 100644
index 8849aa3..0000000
--- a/node_modules/date-fns/locale/mt/_lib/match/index.js
+++ /dev/null
@@ -1,107 +0,0 @@
-"use strict";
-
-var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-exports.default = void 0;
-var _index = _interopRequireDefault(require("../../../_lib/buildMatchFn/index.js"));
-var _index2 = _interopRequireDefault(require("../../../_lib/buildMatchPatternFn/index.js"));
-var matchOrdinalNumberPattern = /^(\d+)(º)?/i;
-var parseOrdinalNumberPattern = /\d+/i;
-var matchEraPatterns = {
- narrow: /^(q|w)/i,
- abbreviated: /^(q\.?\s?k\.?|b\.?\s?c\.?\s?e\.?|w\.?\s?k\.?)/i,
- wide: /^(qabel kristu|before common era|wara kristu|common era)/i
-};
-var parseEraPatterns = {
- any: [/^(q|b)/i, /^(w|c)/i]
-};
-var matchQuarterPatterns = {
- narrow: /^[1234]/i,
- abbreviated: /^k[1234]/i,
- wide: /^[1234](\.)? kwart/i
-};
-var parseQuarterPatterns = {
- any: [/1/i, /2/i, /3/i, /4/i]
-};
-var matchMonthPatterns = {
- narrow: /^[jfmaglsond]/i,
- abbreviated: /^(jan|fra|mar|apr|mej|ġun|lul|aww|set|ott|nov|diċ)/i,
- wide: /^(jannar|frar|marzu|april|mejju|ġunju|lulju|awwissu|settembru|ottubru|novembru|diċembru)/i
-};
-var parseMonthPatterns = {
- narrow: [/^j/i, /^f/i, /^m/i, /^a/i, /^m/i, /^ġ/i, /^l/i, /^a/i, /^s/i, /^o/i, /^n/i, /^d/i],
- any: [/^ja/i, /^f/i, /^mar/i, /^ap/i, /^mej/i, /^ġ/i, /^l/i, /^aw/i, /^s/i, /^o/i, /^n/i, /^d/i]
-};
-var matchDayPatterns = {
- narrow: /^[ħteġs]/i,
- short: /^(ħa|tn|tl|er|ħa|ġi|si)/i,
- abbreviated: /^(ħad|tne|tli|erb|ħam|ġim|sib)/i,
- wide: /^(il-ħadd|it-tnejn|it-tlieta|l-erbgħa|il-ħamis|il-ġimgħa|is-sibt)/i
-};
-var parseDayPatterns = {
- narrow: [/^ħ/i, /^t/i, /^t/i, /^e/i, /^ħ/i, /^ġ/i, /^s/i],
- any: [/^(il-)?ħad/i, /^(it-)?tn/i, /^(it-)?tl/i, /^(l-)?er/i, /^(il-)?ham/i, /^(il-)?ġi/i, /^(is-)?si/i]
-};
-var matchDayPeriodPatterns = {
- narrow: /^(a|p|f'nofsillejl|f'nofsinhar|(ta') (għodwa|wara nofsinhar|filgħaxija|lejl))/i,
- any: /^([ap]\.?\s?m\.?|f'nofsillejl|f'nofsinhar|(ta') (għodwa|wara nofsinhar|filgħaxija|lejl))/i
-};
-var parseDayPeriodPatterns = {
- any: {
- am: /^a/i,
- pm: /^p/i,
- midnight: /^f'nofsillejl/i,
- noon: /^f'nofsinhar/i,
- morning: /għodwa/i,
- afternoon: /wara(\s.*)nofsinhar/i,
- evening: /filgħaxija/i,
- night: /lejl/i
- }
-};
-var match = {
- ordinalNumber: (0, _index2.default)({
- matchPattern: matchOrdinalNumberPattern,
- parsePattern: parseOrdinalNumberPattern,
- valueCallback: function valueCallback(value) {
- return parseInt(value, 10);
- }
- }),
- era: (0, _index.default)({
- matchPatterns: matchEraPatterns,
- defaultMatchWidth: 'wide',
- parsePatterns: parseEraPatterns,
- defaultParseWidth: 'any'
- }),
- quarter: (0, _index.default)({
- matchPatterns: matchQuarterPatterns,
- defaultMatchWidth: 'wide',
- parsePatterns: parseQuarterPatterns,
- defaultParseWidth: 'any',
- valueCallback: function valueCallback(index) {
- return index + 1;
- }
- }),
- month: (0, _index.default)({
- matchPatterns: matchMonthPatterns,
- defaultMatchWidth: 'wide',
- parsePatterns: parseMonthPatterns,
- defaultParseWidth: 'any'
- }),
- day: (0, _index.default)({
- matchPatterns: matchDayPatterns,
- defaultMatchWidth: 'wide',
- parsePatterns: parseDayPatterns,
- defaultParseWidth: 'any'
- }),
- dayPeriod: (0, _index.default)({
- matchPatterns: matchDayPeriodPatterns,
- defaultMatchWidth: 'any',
- parsePatterns: parseDayPeriodPatterns,
- defaultParseWidth: 'any'
- })
-};
-var _default = match;
-exports.default = _default;
-module.exports = exports.default; \ No newline at end of file
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage