aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/date-fns/esm/locale/sq/_lib
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2025-06-28 17:26:46 -0700
committerPinapelz <yukais@pinapelz.com>2025-06-28 17:43:56 -0700
commite4fa1e69e7ebfb627c7198fd1a9881e9327ec4d4 (patch)
tree06284a538a6008eca75051399e47db4e5d50301c /node_modules/date-fns/esm/locale/sq/_lib
initial commit: scaffolding
Diffstat (limited to 'node_modules/date-fns/esm/locale/sq/_lib')
-rw-r--r--node_modules/date-fns/esm/locale/sq/_lib/formatDistance/index.js83
-rw-r--r--node_modules/date-fns/esm/locale/sq/_lib/formatLong/index.js34
-rw-r--r--node_modules/date-fns/esm/locale/sq/_lib/formatRelative/index.js12
-rw-r--r--node_modules/date-fns/esm/locale/sq/_lib/localize/index.js127
-rw-r--r--node_modules/date-fns/esm/locale/sq/_lib/match/index.js98
5 files changed, 354 insertions, 0 deletions
diff --git a/node_modules/date-fns/esm/locale/sq/_lib/formatDistance/index.js b/node_modules/date-fns/esm/locale/sq/_lib/formatDistance/index.js
new file mode 100644
index 0000000..2cbf6e5
--- /dev/null
+++ b/node_modules/date-fns/esm/locale/sq/_lib/formatDistance/index.js
@@ -0,0 +1,83 @@
+var formatDistanceLocale = {
+ lessThanXSeconds: {
+ one: 'më pak se një sekondë',
+ other: 'më pak se {{count}} sekonda'
+ },
+ xSeconds: {
+ one: '1 sekondë',
+ other: '{{count}} sekonda'
+ },
+ halfAMinute: 'gjysëm minuti',
+ lessThanXMinutes: {
+ one: 'më pak se një minute',
+ other: 'më pak se {{count}} minuta'
+ },
+ xMinutes: {
+ one: '1 minutë',
+ other: '{{count}} minuta'
+ },
+ aboutXHours: {
+ one: 'rreth 1 orë',
+ other: 'rreth {{count}} orë'
+ },
+ xHours: {
+ one: '1 orë',
+ other: '{{count}} orë'
+ },
+ xDays: {
+ one: '1 ditë',
+ other: '{{count}} ditë'
+ },
+ aboutXWeeks: {
+ one: 'rreth 1 javë',
+ other: 'rreth {{count}} javë'
+ },
+ xWeeks: {
+ one: '1 javë',
+ other: '{{count}} javë'
+ },
+ aboutXMonths: {
+ one: 'rreth 1 muaj',
+ other: 'rreth {{count}} muaj'
+ },
+ xMonths: {
+ one: '1 muaj',
+ other: '{{count}} muaj'
+ },
+ aboutXYears: {
+ one: 'rreth 1 vit',
+ other: 'rreth {{count}} vite'
+ },
+ xYears: {
+ one: '1 vit',
+ other: '{{count}} vite'
+ },
+ overXYears: {
+ one: 'mbi 1 vit',
+ other: 'mbi {{count}} vite'
+ },
+ almostXYears: {
+ one: 'pothuajse 1 vit',
+ other: 'pothuajse {{count}} vite'
+ }
+};
+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 {
+ result = tokenValue.other.replace('{{count}}', String(count));
+ }
+ if (options !== null && options !== void 0 && options.addSuffix) {
+ if (options.comparison && options.comparison > 0) {
+ return 'në ' + result;
+ } else {
+ return result + ' më parë';
+ }
+ }
+ return result;
+};
+export default formatDistance; \ No newline at end of file
diff --git a/node_modules/date-fns/esm/locale/sq/_lib/formatLong/index.js b/node_modules/date-fns/esm/locale/sq/_lib/formatLong/index.js
new file mode 100644
index 0000000..96c238f
--- /dev/null
+++ b/node_modules/date-fns/esm/locale/sq/_lib/formatLong/index.js
@@ -0,0 +1,34 @@
+import buildFormatLongFn from "../../../_lib/buildFormatLongFn/index.js";
+var dateFormats = {
+ full: 'EEEE, MMMM do, y',
+ long: 'MMMM do, y',
+ medium: 'MMM d, y',
+ short: 'MM/dd/yyyy'
+};
+var timeFormats = {
+ full: 'h:mm:ss a zzzz',
+ long: 'h:mm:ss a z',
+ medium: 'h:mm:ss a',
+ short: 'h:mm a'
+};
+var dateTimeFormats = {
+ full: "{{date}} 'në' {{time}}",
+ long: "{{date}} 'në' {{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'
+ })
+};
+export default formatLong; \ No newline at end of file
diff --git a/node_modules/date-fns/esm/locale/sq/_lib/formatRelative/index.js b/node_modules/date-fns/esm/locale/sq/_lib/formatRelative/index.js
new file mode 100644
index 0000000..d6d2f95
--- /dev/null
+++ b/node_modules/date-fns/esm/locale/sq/_lib/formatRelative/index.js
@@ -0,0 +1,12 @@
+var formatRelativeLocale = {
+ lastWeek: "'të' eeee 'e shkuar në' p",
+ yesterday: "'dje në' p",
+ today: "'sot në' p",
+ tomorrow: "'nesër në' p",
+ nextWeek: "eeee 'at' p",
+ other: 'P'
+};
+var formatRelative = function formatRelative(token, _date, _baseDate, _options) {
+ return formatRelativeLocale[token];
+};
+export default formatRelative; \ No newline at end of file
diff --git a/node_modules/date-fns/esm/locale/sq/_lib/localize/index.js b/node_modules/date-fns/esm/locale/sq/_lib/localize/index.js
new file mode 100644
index 0000000..4d82f3b
--- /dev/null
+++ b/node_modules/date-fns/esm/locale/sq/_lib/localize/index.js
@@ -0,0 +1,127 @@
+import buildLocalizeFn from "../../../_lib/buildLocalizeFn/index.js";
+var eraValues = {
+ narrow: ['P', 'M'],
+ abbreviated: ['PK', 'MK'],
+ wide: ['Para Krishtit', 'Mbas Krishtit']
+};
+var 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.
+var 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']
+};
+var 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ë']
+};
+var 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ë'
+ }
+};
+var 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ë'
+ }
+};
+var ordinalNumber = function ordinalNumber(dirtyNumber, options) {
+ var number = Number(dirtyNumber);
+ if ((options === null || options === void 0 ? void 0 : options.unit) === 'hour') return String(number);
+ if (number === 1) return number + '-rë';
+ if (number === 4) return number + 't';
+ return number + '-të';
+};
+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'
+ }),
+ day: buildLocalizeFn({
+ values: dayValues,
+ defaultWidth: 'wide'
+ }),
+ dayPeriod: buildLocalizeFn({
+ values: dayPeriodValues,
+ defaultWidth: 'wide',
+ formattingValues: formattingDayPeriodValues,
+ defaultFormattingWidth: 'wide'
+ })
+};
+export default localize; \ No newline at end of file
diff --git a/node_modules/date-fns/esm/locale/sq/_lib/match/index.js b/node_modules/date-fns/esm/locale/sq/_lib/match/index.js
new file mode 100644
index 0000000..e9887cc
--- /dev/null
+++ b/node_modules/date-fns/esm/locale/sq/_lib/match/index.js
@@ -0,0 +1,98 @@
+import buildMatchFn from "../../../_lib/buildMatchFn/index.js";
+import buildMatchPatternFn from "../../../_lib/buildMatchPatternFn/index.js";
+var matchOrdinalNumberPattern = /^(\d+)(-rë|-të|t|)?/i;
+var parseOrdinalNumberPattern = /\d+/i;
+var matchEraPatterns = {
+ narrow: /^(p|m)/i,
+ abbreviated: /^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,
+ wide: /^(para krishtit|mbas krishtit)/i
+};
+var parseEraPatterns = {
+ any: [/^b/i, /^(p|m)/i]
+};
+var matchQuarterPatterns = {
+ narrow: /^[1234]/i,
+ abbreviated: /^q[1234]/i,
+ wide: /^[1234]-mujori (i{1,3}|iv)/i
+};
+var parseQuarterPatterns = {
+ any: [/1/i, /2/i, /3/i, /4/i]
+};
+var matchMonthPatterns = {
+ narrow: /^[jsmpqkftnd]/i,
+ abbreviated: /^(jan|shk|mar|pri|maj|qer|kor|gus|sht|tet|nën|dhj)/i,
+ wide: /^(janar|shkurt|mars|prill|maj|qershor|korrik|gusht|shtator|tetor|nëntor|dhjetor)/i
+};
+var parseMonthPatterns = {
+ narrow: [/^j/i, /^s/i, /^m/i, /^p/i, /^m/i, /^q/i, /^k/i, /^g/i, /^s/i, /^t/i, /^n/i, /^d/i],
+ any: [/^ja/i, /^shk/i, /^mar/i, /^pri/i, /^maj/i, /^qer/i, /^kor/i, /^gu/i, /^sht/i, /^tet/i, /^n/i, /^d/i]
+};
+var matchDayPatterns = {
+ narrow: /^[dhmeps]/i,
+ short: /^(di|hë|ma|më|en|pr|sh)/i,
+ abbreviated: /^(die|hën|mar|mër|enj|pre|sht)/i,
+ wide: /^(dielë|hënë|martë|mërkurë|enjte|premte|shtunë)/i
+};
+var parseDayPatterns = {
+ narrow: [/^d/i, /^h/i, /^m/i, /^m/i, /^e/i, /^p/i, /^s/i],
+ any: [/^d/i, /^h/i, /^ma/i, /^më/i, /^e/i, /^p/i, /^s/i]
+};
+var matchDayPeriodPatterns = {
+ narrow: /^(p|m|me|në (mëngjes|mbasdite|mbrëmje|mesnatë))/i,
+ any: /^([pm]\.?\s?d\.?|drek|në (mëngjes|mbasdite|mbrëmje|mesnatë))/i
+};
+var parseDayPeriodPatterns = {
+ any: {
+ am: /^p/i,
+ pm: /^m/i,
+ midnight: /^me/i,
+ noon: /^dr/i,
+ morning: /mëngjes/i,
+ afternoon: /mbasdite/i,
+ evening: /mbrëmje/i,
+ night: /natë/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'
+ })
+};
+export default match; \ No newline at end of file
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage