aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/date-fns/locale/ka
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/ka
parent864ce67d89c77d8ef9c3361f80d619853abcf91c (diff)
remove dev node_modules (oops)
Diffstat (limited to 'node_modules/date-fns/locale/ka')
-rw-r--r--node_modules/date-fns/locale/ka/_lib/formatDistance/index.js105
-rw-r--r--node_modules/date-fns/locale/ka/_lib/formatLong/index.js43
-rw-r--r--node_modules/date-fns/locale/ka/_lib/formatRelative/index.js20
-rw-r--r--node_modules/date-fns/locale/ka/_lib/localize/index.js136
-rw-r--r--node_modules/date-fns/locale/ka/_lib/match/index.js101
-rw-r--r--node_modules/date-fns/locale/ka/index.d.ts4
-rw-r--r--node_modules/date-fns/locale/ka/index.js36
-rw-r--r--node_modules/date-fns/locale/ka/index.js.flow35
-rw-r--r--node_modules/date-fns/locale/ka/package.json5
9 files changed, 0 insertions, 485 deletions
diff --git a/node_modules/date-fns/locale/ka/_lib/formatDistance/index.js b/node_modules/date-fns/locale/ka/_lib/formatDistance/index.js
deleted file mode 100644
index 4f1cbb6..0000000
--- a/node_modules/date-fns/locale/ka/_lib/formatDistance/index.js
+++ /dev/null
@@ -1,105 +0,0 @@
-"use strict";
-
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-exports.default = void 0;
-var formatDistanceLocale = {
- lessThanXSeconds: {
- past: '{{count}} წამზე ნაკლები ხნის წინ',
- present: '{{count}} წამზე ნაკლები',
- future: '{{count}} წამზე ნაკლებში'
- },
- xSeconds: {
- past: '{{count}} წამის წინ',
- present: '{{count}} წამი',
- future: '{{count}} წამში'
- },
- halfAMinute: {
- past: 'ნახევარი წუთის წინ',
- present: 'ნახევარი წუთი',
- future: 'ნახევარი წუთში'
- },
- lessThanXMinutes: {
- past: '{{count}} წუთზე ნაკლები ხნის წინ',
- present: '{{count}} წუთზე ნაკლები',
- future: '{{count}} წუთზე ნაკლებში'
- },
- xMinutes: {
- past: '{{count}} წუთის წინ',
- present: '{{count}} წუთი',
- future: '{{count}} წუთში'
- },
- aboutXHours: {
- past: 'დაახლოებით {{count}} საათის წინ',
- present: 'დაახლოებით {{count}} საათი',
- future: 'დაახლოებით {{count}} საათში'
- },
- xHours: {
- past: '{{count}} საათის წინ',
- present: '{{count}} საათი',
- future: '{{count}} საათში'
- },
- xDays: {
- past: '{{count}} დღის წინ',
- present: '{{count}} დღე',
- future: '{{count}} დღეში'
- },
- aboutXWeeks: {
- past: 'დაახლოებით {{count}} კვირას წინ',
- present: 'დაახლოებით {{count}} კვირა',
- future: 'დაახლოებით {{count}} კვირაში'
- },
- xWeeks: {
- past: '{{count}} კვირას კვირა',
- present: '{{count}} კვირა',
- future: '{{count}} კვირაში'
- },
- aboutXMonths: {
- past: 'დაახლოებით {{count}} თვის წინ',
- present: 'დაახლოებით {{count}} თვე',
- future: 'დაახლოებით {{count}} თვეში'
- },
- xMonths: {
- past: '{{count}} თვის წინ',
- present: '{{count}} თვე',
- future: '{{count}} თვეში'
- },
- aboutXYears: {
- past: 'დაახლოებით {{count}} წლის წინ',
- present: 'დაახლოებით {{count}} წელი',
- future: 'დაახლოებით {{count}} წელში'
- },
- xYears: {
- past: '{{count}} წლის წინ',
- present: '{{count}} წელი',
- future: '{{count}} წელში'
- },
- overXYears: {
- past: '{{count}} წელზე მეტი ხნის წინ',
- present: '{{count}} წელზე მეტი',
- future: '{{count}} წელზე მეტი ხნის შემდეგ'
- },
- almostXYears: {
- past: 'თითქმის {{count}} წლის წინ',
- present: 'თითქმის {{count}} წელი',
- future: 'თითქმის {{count}} წელში'
- }
-};
-var formatDistance = function formatDistance(token, count, options) {
- var result;
- var tokenValue = formatDistanceLocale[token];
- if (typeof tokenValue === 'string') {
- result = tokenValue;
- } else if (options !== null && options !== void 0 && options.addSuffix && options.comparison && options.comparison > 0) {
- result = tokenValue.future.replace('{{count}}', String(count));
- } else if (options !== null && options !== void 0 && options.addSuffix) {
- result = tokenValue.past.replace('{{count}}', String(count));
- } else {
- result = tokenValue.present.replace('{{count}}', String(count));
- }
- 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/ka/_lib/formatLong/index.js b/node_modules/date-fns/locale/ka/_lib/formatLong/index.js
deleted file mode 100644
index 5554721..0000000
--- a/node_modules/date-fns/locale/ka/_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, do MMMM, y',
- long: 'do, MMMM, y',
- medium: 'd, MMM, y',
- short: 'dd/MM/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}} {{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/ka/_lib/formatRelative/index.js b/node_modules/date-fns/locale/ka/_lib/formatRelative/index.js
deleted file mode 100644
index d54cce9..0000000
--- a/node_modules/date-fns/locale/ka/_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 p'-ზე'",
- yesterday: "'გუშინ' p'-ზე'",
- today: "'დღეს' p'-ზე'",
- tomorrow: "'ხვალ' p'-ზე'",
- nextWeek: "'შემდეგი' eeee 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/ka/_lib/localize/index.js b/node_modules/date-fns/locale/ka/_lib/localize/index.js
deleted file mode 100644
index 7e81260..0000000
--- a/node_modules/date-fns/locale/ka/_lib/localize/index.js
+++ /dev/null
@@ -1,136 +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: ['ჩ.წ-მდე', 'ჩ.წ'],
- abbreviated: ['ჩვ.წ-მდე', 'ჩვ.წ'],
- wide: ['ჩვენს წელთაღრიცხვამდე', 'ჩვენი წელთაღრიცხვით']
-};
-var quarterValues = {
- narrow: ['1', '2', '3', '4'],
- abbreviated: ['1-ლი კვ', '2-ე კვ', '3-ე კვ', '4-ე კვ'],
- wide: ['1-ლი კვარტალი', '2-ე კვარტალი', '3-ე კვარტალი', '4-ე კვარტალი']
-};
-
-// 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: ['ია', 'თე', 'მა', 'აპ', 'მს', 'ვნ', 'ვლ', 'აგ', 'სე', 'ოქ', 'ნო', 'დე'],
- abbreviated: ['იან', 'თებ', 'მარ', 'აპრ', 'მაი', 'ივნ', 'ივლ', 'აგვ', 'სექ', 'ოქტ', 'ნოე', 'დეკ'],
- wide: ['იანვარი', 'თებერვალი', 'მარტი', 'აპრილი', 'მაისი', 'ივნისი', 'ივლისი', 'აგვისტო', 'სექტემბერი', 'ოქტომბერი', 'ნოემბერი', 'დეკემბერი']
-};
-var dayValues = {
- narrow: ['კვ', 'ორ', 'სა', 'ოთ', 'ხუ', 'პა', 'შა'],
- short: ['კვი', 'ორშ', 'სამ', 'ოთხ', 'ხუთ', 'პარ', 'შაბ'],
- abbreviated: ['კვი', 'ორშ', 'სამ', 'ოთხ', 'ხუთ', 'პარ', 'შაბ'],
- wide: ['კვირა', 'ორშაბათი', 'სამშაბათი', 'ოთხშაბათი', 'ხუთშაბათი', 'პარასკევი', 'შაბათი']
-};
-var dayPeriodValues = {
- narrow: {
- am: 'a',
- pm: 'p',
- midnight: 'შუაღამე',
- noon: 'შუადღე',
- morning: 'დილა',
- afternoon: 'საღამო',
- evening: 'საღამო',
- night: 'ღამე'
- },
- abbreviated: {
- am: 'AM',
- pm: 'PM',
- midnight: 'შუაღამე',
- noon: 'შუადღე',
- morning: 'დილა',
- afternoon: 'საღამო',
- evening: 'საღამო',
- night: 'ღამე'
- },
- wide: {
- am: 'a.m.',
- pm: 'p.m.',
- midnight: 'შუაღამე',
- noon: 'შუადღე',
- morning: 'დილა',
- afternoon: 'საღამო',
- evening: 'საღამო',
- night: 'ღამე'
- }
-};
-var formattingDayPeriodValues = {
- narrow: {
- am: 'a',
- pm: 'p',
- midnight: 'შუაღამით',
- noon: 'შუადღისას',
- morning: 'დილით',
- afternoon: 'ნაშუადღევს',
- evening: 'საღამოს',
- night: 'ღამით'
- },
- abbreviated: {
- am: 'AM',
- pm: 'PM',
- midnight: 'შუაღამით',
- noon: 'შუადღისას',
- morning: 'დილით',
- afternoon: 'ნაშუადღევს',
- evening: 'საღამოს',
- night: 'ღამით'
- },
- wide: {
- am: 'a.m.',
- pm: 'p.m.',
- midnight: 'შუაღამით',
- noon: 'შუადღისას',
- morning: 'დილით',
- afternoon: 'ნაშუადღევს',
- evening: 'საღამოს',
- night: 'ღამით'
- }
-};
-var ordinalNumber = function ordinalNumber(dirtyNumber) {
- var number = Number(dirtyNumber);
- if (number === 1) {
- return number + '-ლი';
- }
- 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/ka/_lib/match/index.js b/node_modules/date-fns/locale/ka/_lib/match/index.js
deleted file mode 100644
index 31421e2..0000000
--- a/node_modules/date-fns/locale/ka/_lib/match/index.js
+++ /dev/null
@@ -1,101 +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: /^(ჩვ?\.წ)/i,
- abbreviated: /^(ჩვ?\.წ)/i,
- wide: /^(ჩვენს წელთაღრიცხვამდე|ქრისტეშობამდე|ჩვენი წელთაღრიცხვით|ქრისტეშობიდან)/i
-};
-var parseEraPatterns = {
- any: [/^(ჩვენს წელთაღრიცხვამდე|ქრისტეშობამდე)/i, /^(ჩვენი წელთაღრიცხვით|ქრისტეშობიდან)/i]
-};
-var matchQuarterPatterns = {
- narrow: /^[1234]/i,
- abbreviated: /^[1234]-(ლი|ე)? კვ/i,
- wide: /^[1234]-(ლი|ე)? კვარტალი/i
-};
-var parseQuarterPatterns = {
- any: [/1/i, /2/i, /3/i, /4/i]
-};
-var matchMonthPatterns = {
- any: /^(ია|თე|მა|აპ|მს|ვნ|ვლ|აგ|სე|ოქ|ნო|დე)/i
-};
-var parseMonthPatterns = {
- any: [/^ია/i, /^თ/i, /^მარ/i, /^აპ/i, /^მაი/i, /^ი?ვნ/i, /^ი?ვლ/i, /^აგ/i, /^ს/i, /^ო/i, /^ნ/i, /^დ/i]
-};
-var matchDayPatterns = {
- narrow: /^(კვ|ორ|სა|ოთ|ხუ|პა|შა)/i,
- short: /^(კვი|ორშ|სამ|ოთხ|ხუთ|პარ|შაბ)/i,
- wide: /^(კვირა|ორშაბათი|სამშაბათი|ოთხშაბათი|ხუთშაბათი|პარასკევი|შაბათი)/i
-};
-var parseDayPatterns = {
- any: [/^კვ/i, /^ორ/i, /^სა/i, /^ოთ/i, /^ხუ/i, /^პა/i, /^შა/i]
-};
-var matchDayPeriodPatterns = {
- any: /^([ap]\.?\s?m\.?|შუაღ|დილ)/i
-};
-var parseDayPeriodPatterns = {
- any: {
- am: /^a/i,
- pm: /^p/i,
- midnight: /^შუაღ/i,
- noon: /^შუადღ/i,
- morning: /^დილ/i,
- afternoon: /ნაშუადღევს/i,
- evening: /საღამო/i,
- night: /ღამ/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: 'any',
- 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
diff --git a/node_modules/date-fns/locale/ka/index.d.ts b/node_modules/date-fns/locale/ka/index.d.ts
deleted file mode 100644
index c0be71a..0000000
--- a/node_modules/date-fns/locale/ka/index.d.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-// This file is generated automatically by `scripts/build/typings.js`. Please, don't change it.
-
-import { ka } from 'date-fns/locale'
-export default ka
diff --git a/node_modules/date-fns/locale/ka/index.js b/node_modules/date-fns/locale/ka/index.js
deleted file mode 100644
index fc1b674..0000000
--- a/node_modules/date-fns/locale/ka/index.js
+++ /dev/null
@@ -1,36 +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/formatDistance/index.js"));
-var _index2 = _interopRequireDefault(require("./_lib/formatLong/index.js"));
-var _index3 = _interopRequireDefault(require("./_lib/formatRelative/index.js"));
-var _index4 = _interopRequireDefault(require("./_lib/localize/index.js"));
-var _index5 = _interopRequireDefault(require("./_lib/match/index.js"));
-/**
- * @type {Locale}
- * @category Locales
- * @summary Georgian locale.
- * @language Georgian
- * @iso-639-2 geo
- * @author Lado Lomidze [@Landish]{@link https://github.com/Landish}
- * @author Nick Shvelidze [@shvelo]{@link https://github.com/shvelo}
- */
-var locale = {
- code: 'ka',
- formatDistance: _index.default,
- formatLong: _index2.default,
- formatRelative: _index3.default,
- localize: _index4.default,
- match: _index5.default,
- options: {
- weekStartsOn: 1 /* Monday */,
- firstWeekContainsDate: 1
- }
-};
-var _default = locale;
-exports.default = _default;
-module.exports = exports.default; \ No newline at end of file
diff --git a/node_modules/date-fns/locale/ka/index.js.flow b/node_modules/date-fns/locale/ka/index.js.flow
deleted file mode 100644
index b9dfe66..0000000
--- a/node_modules/date-fns/locale/ka/index.js.flow
+++ /dev/null
@@ -1,35 +0,0 @@
-// @flow
-// This file is generated automatically by `scripts/build/typings.js`. Please, don't change it.
-
-export type Locale = {
- code?: string,
- formatDistance?: (...args: Array<any>) => any,
- formatRelative?: (...args: Array<any>) => any,
- localize?: {
- ordinalNumber: (...args: Array<any>) => any,
- era: (...args: Array<any>) => any,
- quarter: (...args: Array<any>) => any,
- month: (...args: Array<any>) => any,
- day: (...args: Array<any>) => any,
- dayPeriod: (...args: Array<any>) => any,
- },
- formatLong?: {
- date: (...args: Array<any>) => any,
- time: (...args: Array<any>) => any,
- dateTime: (...args: Array<any>) => any,
- },
- match?: {
- ordinalNumber: (...args: Array<any>) => any,
- era: (...args: Array<any>) => any,
- quarter: (...args: Array<any>) => any,
- month: (...args: Array<any>) => any,
- day: (...args: Array<any>) => any,
- dayPeriod: (...args: Array<any>) => any,
- },
- options?: {
- weekStartsOn?: 0 | 1 | 2 | 3 | 4 | 5 | 6,
- firstWeekContainsDate?: 1 | 2 | 3 | 4 | 5 | 6 | 7,
- },
-}
-
-declare module.exports: Locale
diff --git a/node_modules/date-fns/locale/ka/package.json b/node_modules/date-fns/locale/ka/package.json
deleted file mode 100644
index 9ec0879..0000000
--- a/node_modules/date-fns/locale/ka/package.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "sideEffects": false,
- "module": "../../esm/locale/ka/index.js",
- "typings": "../../typings.d.ts"
-} \ No newline at end of file
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage