aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/date-fns/esm/locale/et
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/esm/locale/et
parent864ce67d89c77d8ef9c3361f80d619853abcf91c (diff)
remove dev node_modules (oops)
Diffstat (limited to 'node_modules/date-fns/esm/locale/et')
-rw-r--r--node_modules/date-fns/esm/locale/et/_lib/formatDistance/index.js176
-rw-r--r--node_modules/date-fns/esm/locale/et/_lib/formatLong/index.js34
-rw-r--r--node_modules/date-fns/esm/locale/et/_lib/formatRelative/index.js12
-rw-r--r--node_modules/date-fns/esm/locale/et/_lib/localize/index.js123
-rw-r--r--node_modules/date-fns/esm/locale/et/_lib/match/index.js96
-rw-r--r--node_modules/date-fns/esm/locale/et/index.d.ts4
-rw-r--r--node_modules/date-fns/esm/locale/et/index.js26
-rw-r--r--node_modules/date-fns/esm/locale/et/index.js.flow35
-rw-r--r--node_modules/date-fns/esm/locale/et/package.json4
9 files changed, 0 insertions, 510 deletions
diff --git a/node_modules/date-fns/esm/locale/et/_lib/formatDistance/index.js b/node_modules/date-fns/esm/locale/et/_lib/formatDistance/index.js
deleted file mode 100644
index 4fdce02..0000000
--- a/node_modules/date-fns/esm/locale/et/_lib/formatDistance/index.js
+++ /dev/null
@@ -1,176 +0,0 @@
-var formatDistanceLocale = {
- lessThanXSeconds: {
- standalone: {
- one: 'vähem kui üks sekund',
- other: 'vähem kui {{count}} sekundit'
- },
- withPreposition: {
- one: 'vähem kui ühe sekundi',
- other: 'vähem kui {{count}} sekundi'
- }
- },
- xSeconds: {
- standalone: {
- one: 'üks sekund',
- other: '{{count}} sekundit'
- },
- withPreposition: {
- one: 'ühe sekundi',
- other: '{{count}} sekundi'
- }
- },
- halfAMinute: {
- standalone: 'pool minutit',
- withPreposition: 'poole minuti'
- },
- lessThanXMinutes: {
- standalone: {
- one: 'vähem kui üks minut',
- other: 'vähem kui {{count}} minutit'
- },
- withPreposition: {
- one: 'vähem kui ühe minuti',
- other: 'vähem kui {{count}} minuti'
- }
- },
- xMinutes: {
- standalone: {
- one: 'üks minut',
- other: '{{count}} minutit'
- },
- withPreposition: {
- one: 'ühe minuti',
- other: '{{count}} minuti'
- }
- },
- aboutXHours: {
- standalone: {
- one: 'umbes üks tund',
- other: 'umbes {{count}} tundi'
- },
- withPreposition: {
- one: 'umbes ühe tunni',
- other: 'umbes {{count}} tunni'
- }
- },
- xHours: {
- standalone: {
- one: 'üks tund',
- other: '{{count}} tundi'
- },
- withPreposition: {
- one: 'ühe tunni',
- other: '{{count}} tunni'
- }
- },
- xDays: {
- standalone: {
- one: 'üks päev',
- other: '{{count}} päeva'
- },
- withPreposition: {
- one: 'ühe päeva',
- other: '{{count}} päeva'
- }
- },
- aboutXWeeks: {
- standalone: {
- one: 'umbes üks nädal',
- other: 'umbes {{count}} nädalat'
- },
- withPreposition: {
- one: 'umbes ühe nädala',
- other: 'umbes {{count}} nädala'
- }
- },
- xWeeks: {
- standalone: {
- one: 'üks nädal',
- other: '{{count}} nädalat'
- },
- withPreposition: {
- one: 'ühe nädala',
- other: '{{count}} nädala'
- }
- },
- aboutXMonths: {
- standalone: {
- one: 'umbes üks kuu',
- other: 'umbes {{count}} kuud'
- },
- withPreposition: {
- one: 'umbes ühe kuu',
- other: 'umbes {{count}} kuu'
- }
- },
- xMonths: {
- standalone: {
- one: 'üks kuu',
- other: '{{count}} kuud'
- },
- withPreposition: {
- one: 'ühe kuu',
- other: '{{count}} kuu'
- }
- },
- aboutXYears: {
- standalone: {
- one: 'umbes üks aasta',
- other: 'umbes {{count}} aastat'
- },
- withPreposition: {
- one: 'umbes ühe aasta',
- other: 'umbes {{count}} aasta'
- }
- },
- xYears: {
- standalone: {
- one: 'üks aasta',
- other: '{{count}} aastat'
- },
- withPreposition: {
- one: 'ühe aasta',
- other: '{{count}} aasta'
- }
- },
- overXYears: {
- standalone: {
- one: 'rohkem kui üks aasta',
- other: 'rohkem kui {{count}} aastat'
- },
- withPreposition: {
- one: 'rohkem kui ühe aasta',
- other: 'rohkem kui {{count}} aasta'
- }
- },
- almostXYears: {
- standalone: {
- one: 'peaaegu üks aasta',
- other: 'peaaegu {{count}} aastat'
- },
- withPreposition: {
- one: 'peaaegu ühe aasta',
- other: 'peaaegu {{count}} aasta'
- }
- }
-};
-var formatDistance = function formatDistance(token, count, options) {
- var usageGroup = options !== null && options !== void 0 && options.addSuffix ? formatDistanceLocale[token].withPreposition : formatDistanceLocale[token].standalone;
- var result;
- if (typeof usageGroup === 'string') {
- result = usageGroup;
- } else if (count === 1) {
- result = usageGroup.one;
- } else {
- result = usageGroup.other.replace('{{count}}', String(count));
- }
- if (options !== null && options !== void 0 && options.addSuffix) {
- if (options.comparison && options.comparison > 0) {
- return result + ' pärast';
- } else {
- return result + ' eest';
- }
- }
- return result;
-};
-export default formatDistance; \ No newline at end of file
diff --git a/node_modules/date-fns/esm/locale/et/_lib/formatLong/index.js b/node_modules/date-fns/esm/locale/et/_lib/formatLong/index.js
deleted file mode 100644
index a96046e..0000000
--- a/node_modules/date-fns/esm/locale/et/_lib/formatLong/index.js
+++ /dev/null
@@ -1,34 +0,0 @@
-import buildFormatLongFn from "../../../_lib/buildFormatLongFn/index.js";
-var dateFormats = {
- full: 'EEEE, d. MMMM y',
- long: 'd. MMMM y',
- medium: 'd. MMM y',
- short: 'dd.MM.y'
-};
-var timeFormats = {
- full: 'HH:mm:ss zzzz',
- long: 'HH:mm:ss z',
- medium: 'HH:mm:ss',
- short: 'HH:mm'
-};
-var dateTimeFormats = {
- full: "{{date}} 'kell' {{time}}",
- long: "{{date}} 'kell' {{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/et/_lib/formatRelative/index.js b/node_modules/date-fns/esm/locale/et/_lib/formatRelative/index.js
deleted file mode 100644
index d3278db..0000000
--- a/node_modules/date-fns/esm/locale/et/_lib/formatRelative/index.js
+++ /dev/null
@@ -1,12 +0,0 @@
-var formatRelativeLocale = {
- lastWeek: "'eelmine' eeee 'kell' p",
- yesterday: "'eile kell' p",
- today: "'täna kell' p",
- tomorrow: "'homme kell' p",
- nextWeek: "'järgmine' eeee 'kell' 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/et/_lib/localize/index.js b/node_modules/date-fns/esm/locale/et/_lib/localize/index.js
deleted file mode 100644
index 96894c2..0000000
--- a/node_modules/date-fns/esm/locale/et/_lib/localize/index.js
+++ /dev/null
@@ -1,123 +0,0 @@
-import buildLocalizeFn from "../../../_lib/buildLocalizeFn/index.js";
-var eraValues = {
- narrow: ['e.m.a', 'm.a.j'],
- abbreviated: ['e.m.a', 'm.a.j'],
- wide: ['enne meie ajaarvamist', 'meie ajaarvamise järgi']
-};
-var quarterValues = {
- narrow: ['1', '2', '3', '4'],
- abbreviated: ['K1', 'K2', 'K3', 'K4'],
- wide: ['1. kvartal', '2. kvartal', '3. kvartal', '4. kvartal']
-};
-var monthValues = {
- narrow: ['J', 'V', 'M', 'A', 'M', 'J', 'J', 'A', 'S', 'O', 'N', 'D'],
- abbreviated: ['jaan', 'veebr', 'märts', 'apr', 'mai', 'juuni', 'juuli', 'aug', 'sept', 'okt', 'nov', 'dets'],
- wide: ['jaanuar', 'veebruar', 'märts', 'aprill', 'mai', 'juuni', 'juuli', 'august', 'september', 'oktoober', 'november', 'detsember']
-};
-var dayValues = {
- narrow: ['P', 'E', 'T', 'K', 'N', 'R', 'L'],
- short: ['P', 'E', 'T', 'K', 'N', 'R', 'L'],
- abbreviated: ['pühap.', 'esmasp.', 'teisip.', 'kolmap.', 'neljap.', 'reede.', 'laup.'],
- wide: ['pühapäev', 'esmaspäev', 'teisipäev', 'kolmapäev', 'neljapäev', 'reede', 'laupäev']
-};
-var dayPeriodValues = {
- narrow: {
- am: 'AM',
- pm: 'PM',
- midnight: 'kesköö',
- noon: 'keskpäev',
- morning: 'hommik',
- afternoon: 'pärastlõuna',
- evening: 'õhtu',
- night: 'öö'
- },
- abbreviated: {
- am: 'AM',
- pm: 'PM',
- midnight: 'kesköö',
- noon: 'keskpäev',
- morning: 'hommik',
- afternoon: 'pärastlõuna',
- evening: 'õhtu',
- night: 'öö'
- },
- wide: {
- am: 'AM',
- pm: 'PM',
- midnight: 'kesköö',
- noon: 'keskpäev',
- morning: 'hommik',
- afternoon: 'pärastlõuna',
- evening: 'õhtu',
- night: 'öö'
- }
-};
-var formattingDayPeriodValues = {
- narrow: {
- am: 'AM',
- pm: 'PM',
- midnight: 'keskööl',
- noon: 'keskpäeval',
- morning: 'hommikul',
- afternoon: 'pärastlõunal',
- evening: 'õhtul',
- night: 'öösel'
- },
- abbreviated: {
- am: 'AM',
- pm: 'PM',
- midnight: 'keskööl',
- noon: 'keskpäeval',
- morning: 'hommikul',
- afternoon: 'pärastlõunal',
- evening: 'õhtul',
- night: 'öösel'
- },
- wide: {
- am: 'AM',
- pm: 'PM',
- midnight: 'keskööl',
- noon: 'keskpäeval',
- morning: 'hommikul',
- afternoon: 'pärastlõunal',
- evening: 'õhtul',
- night: 'öösel'
- }
-};
-var ordinalNumber = function ordinalNumber(dirtyNumber, _options) {
- var number = Number(dirtyNumber);
- return number + '.';
-};
-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',
- formattingValues: monthValues,
- defaultFormattingWidth: 'wide'
- }),
- day: buildLocalizeFn({
- values: dayValues,
- defaultWidth: 'wide',
- formattingValues: dayValues,
- defaultFormattingWidth: '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/et/_lib/match/index.js b/node_modules/date-fns/esm/locale/et/_lib/match/index.js
deleted file mode 100644
index f5a8cf6..0000000
--- a/node_modules/date-fns/esm/locale/et/_lib/match/index.js
+++ /dev/null
@@ -1,96 +0,0 @@
-import buildMatchFn from "../../../_lib/buildMatchFn/index.js";
-import buildMatchPatternFn from "../../../_lib/buildMatchPatternFn/index.js";
-var matchOrdinalNumberPattern = /^\d+\./i;
-var parseOrdinalNumberPattern = /\d+/i;
-var matchEraPatterns = {
- narrow: /^(e\.m\.a|m\.a\.j|eKr|pKr)/i,
- abbreviated: /^(e\.m\.a|m\.a\.j|eKr|pKr)/i,
- wide: /^(enne meie ajaarvamist|meie ajaarvamise järgi|enne Kristust|pärast Kristust)/i
-};
-var parseEraPatterns = {
- any: [/^e/i, /^(m|p)/i]
-};
-var matchQuarterPatterns = {
- narrow: /^[1234]/i,
- abbreviated: /^K[1234]/i,
- wide: /^[1234](\.)? kvartal/i
-};
-var parseQuarterPatterns = {
- any: [/1/i, /2/i, /3/i, /4/i]
-};
-var matchMonthPatterns = {
- narrow: /^[jvmasond]/i,
- abbreviated: /^(jaan|veebr|märts|apr|mai|juuni|juuli|aug|sept|okt|nov|dets)/i,
- wide: /^(jaanuar|veebruar|märts|aprill|mai|juuni|juuli|august|september|oktoober|november|detsember)/i
-};
-var parseMonthPatterns = {
- narrow: [/^j/i, /^v/i, /^m/i, /^a/i, /^m/i, /^j/i, /^j/i, /^a/i, /^s/i, /^o/i, /^n/i, /^d/i],
- any: [/^ja/i, /^v/i, /^mär/i, /^ap/i, /^mai/i, /^juun/i, /^juul/i, /^au/i, /^s/i, /^o/i, /^n/i, /^d/i]
-};
-var matchDayPatterns = {
- narrow: /^[petknrl]/i,
- short: /^[petknrl]/i,
- abbreviated: /^(püh?|esm?|tei?|kolm?|nel?|ree?|laup?)\.?/i,
- wide: /^(pühapäev|esmaspäev|teisipäev|kolmapäev|neljapäev|reede|laupäev)/i
-};
-var parseDayPatterns = {
- any: [/^p/i, /^e/i, /^t/i, /^k/i, /^n/i, /^r/i, /^l/i]
-};
-var matchDayPeriodPatterns = {
- any: /^(am|pm|keskööl?|keskpäev(al)?|hommik(ul)?|pärastlõunal?|õhtul?|öö(sel)?)/i
-};
-var parseDayPeriodPatterns = {
- any: {
- am: /^a/i,
- pm: /^p/i,
- midnight: /^keskö/i,
- noon: /^keskp/i,
- morning: /hommik/i,
- afternoon: /pärastlõuna/i,
- evening: /õhtu/i,
- night: /öö/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
diff --git a/node_modules/date-fns/esm/locale/et/index.d.ts b/node_modules/date-fns/esm/locale/et/index.d.ts
deleted file mode 100644
index debd0b9..0000000
--- a/node_modules/date-fns/esm/locale/et/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 { et } from 'date-fns/locale'
-export default et
diff --git a/node_modules/date-fns/esm/locale/et/index.js b/node_modules/date-fns/esm/locale/et/index.js
deleted file mode 100644
index 52128fc..0000000
--- a/node_modules/date-fns/esm/locale/et/index.js
+++ /dev/null
@@ -1,26 +0,0 @@
-import formatDistance from "./_lib/formatDistance/index.js";
-import formatLong from "./_lib/formatLong/index.js";
-import formatRelative from "./_lib/formatRelative/index.js";
-import localize from "./_lib/localize/index.js";
-import match from "./_lib/match/index.js";
-/**
- * @type {Locale}
- * @category Locales
- * @summary Estonian locale.
- * @language Estonian
- * @iso-639-2 est
- * @author Priit Hansen [@HansenPriit]{@link https://github.com/priithansen}
- */
-var locale = {
- code: 'et',
- formatDistance: formatDistance,
- formatLong: formatLong,
- formatRelative: formatRelative,
- localize: localize,
- match: match,
- options: {
- weekStartsOn: 1 /* Monday */,
- firstWeekContainsDate: 4
- }
-};
-export default locale; \ No newline at end of file
diff --git a/node_modules/date-fns/esm/locale/et/index.js.flow b/node_modules/date-fns/esm/locale/et/index.js.flow
deleted file mode 100644
index b9dfe66..0000000
--- a/node_modules/date-fns/esm/locale/et/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/esm/locale/et/package.json b/node_modules/date-fns/esm/locale/et/package.json
deleted file mode 100644
index a7398d8..0000000
--- a/node_modules/date-fns/esm/locale/et/package.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "sideEffects": false,
- "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