aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/date-fns/esm/locale/es
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/es
parent864ce67d89c77d8ef9c3361f80d619853abcf91c (diff)
remove dev node_modules (oops)
Diffstat (limited to 'node_modules/date-fns/esm/locale/es')
-rw-r--r--node_modules/date-fns/esm/locale/es/_lib/formatDistance/index.js83
-rw-r--r--node_modules/date-fns/esm/locale/es/_lib/formatLong/index.js34
-rw-r--r--node_modules/date-fns/esm/locale/es/_lib/formatRelative/index.js24
-rw-r--r--node_modules/date-fns/esm/locale/es/_lib/localize/index.js119
-rw-r--r--node_modules/date-fns/esm/locale/es/_lib/match/index.js99
-rw-r--r--node_modules/date-fns/esm/locale/es/index.d.ts4
-rw-r--r--node_modules/date-fns/esm/locale/es/index.js30
-rw-r--r--node_modules/date-fns/esm/locale/es/index.js.flow35
-rw-r--r--node_modules/date-fns/esm/locale/es/package.json4
9 files changed, 0 insertions, 432 deletions
diff --git a/node_modules/date-fns/esm/locale/es/_lib/formatDistance/index.js b/node_modules/date-fns/esm/locale/es/_lib/formatDistance/index.js
deleted file mode 100644
index cd55233..0000000
--- a/node_modules/date-fns/esm/locale/es/_lib/formatDistance/index.js
+++ /dev/null
@@ -1,83 +0,0 @@
-var formatDistanceLocale = {
- lessThanXSeconds: {
- one: 'menos de un segundo',
- other: 'menos de {{count}} segundos'
- },
- xSeconds: {
- one: '1 segundo',
- other: '{{count}} segundos'
- },
- halfAMinute: 'medio minuto',
- lessThanXMinutes: {
- one: 'menos de un minuto',
- other: 'menos de {{count}} minutos'
- },
- xMinutes: {
- one: '1 minuto',
- other: '{{count}} minutos'
- },
- aboutXHours: {
- one: 'alrededor de 1 hora',
- other: 'alrededor de {{count}} horas'
- },
- xHours: {
- one: '1 hora',
- other: '{{count}} horas'
- },
- xDays: {
- one: '1 día',
- other: '{{count}} días'
- },
- aboutXWeeks: {
- one: 'alrededor de 1 semana',
- other: 'alrededor de {{count}} semanas'
- },
- xWeeks: {
- one: '1 semana',
- other: '{{count}} semanas'
- },
- aboutXMonths: {
- one: 'alrededor de 1 mes',
- other: 'alrededor de {{count}} meses'
- },
- xMonths: {
- one: '1 mes',
- other: '{{count}} meses'
- },
- aboutXYears: {
- one: 'alrededor de 1 año',
- other: 'alrededor de {{count}} años'
- },
- xYears: {
- one: '1 año',
- other: '{{count}} años'
- },
- overXYears: {
- one: 'más de 1 año',
- other: 'más de {{count}} años'
- },
- almostXYears: {
- one: 'casi 1 año',
- other: 'casi {{count}} años'
- }
-};
-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}}', count.toString());
- }
- if (options !== null && options !== void 0 && options.addSuffix) {
- if (options.comparison && options.comparison > 0) {
- return 'en ' + result;
- } else {
- return 'hace ' + result;
- }
- }
- return result;
-};
-export default formatDistance; \ No newline at end of file
diff --git a/node_modules/date-fns/esm/locale/es/_lib/formatLong/index.js b/node_modules/date-fns/esm/locale/es/_lib/formatLong/index.js
deleted file mode 100644
index 1375c91..0000000
--- a/node_modules/date-fns/esm/locale/es/_lib/formatLong/index.js
+++ /dev/null
@@ -1,34 +0,0 @@
-import buildFormatLongFn from "../../../_lib/buildFormatLongFn/index.js";
-var dateFormats = {
- full: "EEEE, d 'de' MMMM 'de' y",
- long: "d 'de' MMMM 'de' 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}} 'a las' {{time}}",
- long: "{{date}} 'a las' {{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/es/_lib/formatRelative/index.js b/node_modules/date-fns/esm/locale/es/_lib/formatRelative/index.js
deleted file mode 100644
index aecf5cd..0000000
--- a/node_modules/date-fns/esm/locale/es/_lib/formatRelative/index.js
+++ /dev/null
@@ -1,24 +0,0 @@
-var formatRelativeLocale = {
- lastWeek: "'el' eeee 'pasado a la' p",
- yesterday: "'ayer a la' p",
- today: "'hoy a la' p",
- tomorrow: "'mañana a la' p",
- nextWeek: "eeee 'a la' p",
- other: 'P'
-};
-var formatRelativeLocalePlural = {
- lastWeek: "'el' eeee 'pasado a las' p",
- yesterday: "'ayer a las' p",
- today: "'hoy a las' p",
- tomorrow: "'mañana a las' p",
- nextWeek: "eeee 'a las' p",
- other: 'P'
-};
-var formatRelative = function formatRelative(token, date, _baseDate, _options) {
- if (date.getUTCHours() !== 1) {
- return formatRelativeLocalePlural[token];
- } else {
- return formatRelativeLocale[token];
- }
-};
-export default formatRelative; \ No newline at end of file
diff --git a/node_modules/date-fns/esm/locale/es/_lib/localize/index.js b/node_modules/date-fns/esm/locale/es/_lib/localize/index.js
deleted file mode 100644
index 00028ca..0000000
--- a/node_modules/date-fns/esm/locale/es/_lib/localize/index.js
+++ /dev/null
@@ -1,119 +0,0 @@
-import buildLocalizeFn from "../../../_lib/buildLocalizeFn/index.js";
-var eraValues = {
- narrow: ['AC', 'DC'],
- abbreviated: ['AC', 'DC'],
- wide: ['antes de cristo', 'después de cristo']
-};
-var quarterValues = {
- narrow: ['1', '2', '3', '4'],
- abbreviated: ['T1', 'T2', 'T3', 'T4'],
- wide: ['1º trimestre', '2º trimestre', '3º trimestre', '4º trimestre']
-};
-var monthValues = {
- narrow: ['e', 'f', 'm', 'a', 'm', 'j', 'j', 'a', 's', 'o', 'n', 'd'],
- abbreviated: ['ene', 'feb', 'mar', 'abr', 'may', 'jun', 'jul', 'ago', 'sep', 'oct', 'nov', 'dic'],
- wide: ['enero', 'febrero', 'marzo', 'abril', 'mayo', 'junio', 'julio', 'agosto', 'septiembre', 'octubre', 'noviembre', 'diciembre']
-};
-var dayValues = {
- narrow: ['d', 'l', 'm', 'm', 'j', 'v', 's'],
- short: ['do', 'lu', 'ma', 'mi', 'ju', 'vi', 'sá'],
- abbreviated: ['dom', 'lun', 'mar', 'mié', 'jue', 'vie', 'sáb'],
- wide: ['domingo', 'lunes', 'martes', 'miércoles', 'jueves', 'viernes', 'sábado']
-};
-var dayPeriodValues = {
- narrow: {
- am: 'a',
- pm: 'p',
- midnight: 'mn',
- noon: 'md',
- morning: 'mañana',
- afternoon: 'tarde',
- evening: 'tarde',
- night: 'noche'
- },
- abbreviated: {
- am: 'AM',
- pm: 'PM',
- midnight: 'medianoche',
- noon: 'mediodia',
- morning: 'mañana',
- afternoon: 'tarde',
- evening: 'tarde',
- night: 'noche'
- },
- wide: {
- am: 'a.m.',
- pm: 'p.m.',
- midnight: 'medianoche',
- noon: 'mediodia',
- morning: 'mañana',
- afternoon: 'tarde',
- evening: 'tarde',
- night: 'noche'
- }
-};
-var formattingDayPeriodValues = {
- narrow: {
- am: 'a',
- pm: 'p',
- midnight: 'mn',
- noon: 'md',
- morning: 'de la mañana',
- afternoon: 'de la tarde',
- evening: 'de la tarde',
- night: 'de la noche'
- },
- abbreviated: {
- am: 'AM',
- pm: 'PM',
- midnight: 'medianoche',
- noon: 'mediodia',
- morning: 'de la mañana',
- afternoon: 'de la tarde',
- evening: 'de la tarde',
- night: 'de la noche'
- },
- wide: {
- am: 'a.m.',
- pm: 'p.m.',
- midnight: 'medianoche',
- noon: 'mediodia',
- morning: 'de la mañana',
- afternoon: 'de la tarde',
- evening: 'de la tarde',
- night: 'de la noche'
- }
-};
-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 Number(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/es/_lib/match/index.js b/node_modules/date-fns/esm/locale/es/_lib/match/index.js
deleted file mode 100644
index 93fa36e..0000000
--- a/node_modules/date-fns/esm/locale/es/_lib/match/index.js
+++ /dev/null
@@ -1,99 +0,0 @@
-import buildMatchPatternFn from "../../../_lib/buildMatchPatternFn/index.js";
-import buildMatchFn from "../../../_lib/buildMatchFn/index.js";
-var matchOrdinalNumberPattern = /^(\d+)(º)?/i;
-var parseOrdinalNumberPattern = /\d+/i;
-var matchEraPatterns = {
- narrow: /^(ac|dc|a|d)/i,
- abbreviated: /^(a\.?\s?c\.?|a\.?\s?e\.?\s?c\.?|d\.?\s?c\.?|e\.?\s?c\.?)/i,
- wide: /^(antes de cristo|antes de la era com[uú]n|despu[eé]s de cristo|era com[uú]n)/i
-};
-var parseEraPatterns = {
- any: [/^ac/i, /^dc/i],
- wide: [/^(antes de cristo|antes de la era com[uú]n)/i, /^(despu[eé]s de cristo|era com[uú]n)/i]
-};
-var matchQuarterPatterns = {
- narrow: /^[1234]/i,
- abbreviated: /^T[1234]/i,
- wide: /^[1234](º)? trimestre/i
-};
-var parseQuarterPatterns = {
- any: [/1/i, /2/i, /3/i, /4/i]
-};
-var matchMonthPatterns = {
- narrow: /^[efmajsond]/i,
- abbreviated: /^(ene|feb|mar|abr|may|jun|jul|ago|sep|oct|nov|dic)/i,
- wide: /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i
-};
-var parseMonthPatterns = {
- narrow: [/^e/i, /^f/i, /^m/i, /^a/i, /^m/i, /^j/i, /^j/i, /^a/i, /^s/i, /^o/i, /^n/i, /^d/i],
- any: [/^en/i, /^feb/i, /^mar/i, /^abr/i, /^may/i, /^jun/i, /^jul/i, /^ago/i, /^sep/i, /^oct/i, /^nov/i, /^dic/i]
-};
-var matchDayPatterns = {
- narrow: /^[dlmjvs]/i,
- short: /^(do|lu|ma|mi|ju|vi|s[áa])/i,
- abbreviated: /^(dom|lun|mar|mi[ée]|jue|vie|s[áa]b)/i,
- wide: /^(domingo|lunes|martes|mi[ée]rcoles|jueves|viernes|s[áa]bado)/i
-};
-var parseDayPatterns = {
- narrow: [/^d/i, /^l/i, /^m/i, /^m/i, /^j/i, /^v/i, /^s/i],
- any: [/^do/i, /^lu/i, /^ma/i, /^mi/i, /^ju/i, /^vi/i, /^sa/i]
-};
-var matchDayPeriodPatterns = {
- narrow: /^(a|p|mn|md|(de la|a las) (mañana|tarde|noche))/i,
- any: /^([ap]\.?\s?m\.?|medianoche|mediodia|(de la|a las) (mañana|tarde|noche))/i
-};
-var parseDayPeriodPatterns = {
- any: {
- am: /^a/i,
- pm: /^p/i,
- midnight: /^mn/i,
- noon: /^md/i,
- morning: /mañana/i,
- afternoon: /tarde/i,
- evening: /tarde/i,
- night: /noche/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/es/index.d.ts b/node_modules/date-fns/esm/locale/es/index.d.ts
deleted file mode 100644
index 8b0431e..0000000
--- a/node_modules/date-fns/esm/locale/es/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 { es } from 'date-fns/locale'
-export default es
diff --git a/node_modules/date-fns/esm/locale/es/index.js b/node_modules/date-fns/esm/locale/es/index.js
deleted file mode 100644
index cd69093..0000000
--- a/node_modules/date-fns/esm/locale/es/index.js
+++ /dev/null
@@ -1,30 +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 Spanish locale.
- * @language Spanish
- * @iso-639-2 spa
- * @author Juan Angosto [@juanangosto]{@link https://github.com/juanangosto}
- * @author Guillermo Grau [@guigrpa]{@link https://github.com/guigrpa}
- * @author Fernando Agüero [@fjaguero]{@link https://github.com/fjaguero}
- * @author Gastón Haro [@harogaston]{@link https://github.com/harogaston}
- * @author Yago Carballo [@YagoCarballo]{@link https://github.com/YagoCarballo}
- */
-var locale = {
- code: 'es',
- formatDistance: formatDistance,
- formatLong: formatLong,
- formatRelative: formatRelative,
- localize: localize,
- match: match,
- options: {
- weekStartsOn: 1 /* Monday */,
- firstWeekContainsDate: 1
- }
-};
-export default locale; \ No newline at end of file
diff --git a/node_modules/date-fns/esm/locale/es/index.js.flow b/node_modules/date-fns/esm/locale/es/index.js.flow
deleted file mode 100644
index b9dfe66..0000000
--- a/node_modules/date-fns/esm/locale/es/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/es/package.json b/node_modules/date-fns/esm/locale/es/package.json
deleted file mode 100644
index a7398d8..0000000
--- a/node_modules/date-fns/esm/locale/es/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