aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/date-fns/locale/es/_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/es/_lib
parent864ce67d89c77d8ef9c3361f80d619853abcf91c (diff)
remove dev node_modules (oops)
Diffstat (limited to 'node_modules/date-fns/locale/es/_lib')
-rw-r--r--node_modules/date-fns/locale/es/_lib/formatDistance/index.js91
-rw-r--r--node_modules/date-fns/locale/es/_lib/formatLong/index.js43
-rw-r--r--node_modules/date-fns/locale/es/_lib/formatRelative/index.js32
-rw-r--r--node_modules/date-fns/locale/es/_lib/localize/index.js128
-rw-r--r--node_modules/date-fns/locale/es/_lib/match/index.js108
5 files changed, 0 insertions, 402 deletions
diff --git a/node_modules/date-fns/locale/es/_lib/formatDistance/index.js b/node_modules/date-fns/locale/es/_lib/formatDistance/index.js
deleted file mode 100644
index 4d470ce..0000000
--- a/node_modules/date-fns/locale/es/_lib/formatDistance/index.js
+++ /dev/null
@@ -1,91 +0,0 @@
-"use strict";
-
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-exports.default = void 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;
-};
-var _default = formatDistance;
-exports.default = _default;
-module.exports = exports.default; \ No newline at end of file
diff --git a/node_modules/date-fns/locale/es/_lib/formatLong/index.js b/node_modules/date-fns/locale/es/_lib/formatLong/index.js
deleted file mode 100644
index ed660e7..0000000
--- a/node_modules/date-fns/locale/es/_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 '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: (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/es/_lib/formatRelative/index.js b/node_modules/date-fns/locale/es/_lib/formatRelative/index.js
deleted file mode 100644
index 2212b04..0000000
--- a/node_modules/date-fns/locale/es/_lib/formatRelative/index.js
+++ /dev/null
@@ -1,32 +0,0 @@
-"use strict";
-
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-exports.default = void 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];
- }
-};
-var _default = formatRelative;
-exports.default = _default;
-module.exports = exports.default; \ No newline at end of file
diff --git a/node_modules/date-fns/locale/es/_lib/localize/index.js b/node_modules/date-fns/locale/es/_lib/localize/index.js
deleted file mode 100644
index ba86f80..0000000
--- a/node_modules/date-fns/locale/es/_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: ['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: (0, _index.default)({
- values: eraValues,
- defaultWidth: 'wide'
- }),
- quarter: (0, _index.default)({
- values: quarterValues,
- defaultWidth: 'wide',
- argumentCallback: function argumentCallback(quarter) {
- return Number(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/es/_lib/match/index.js b/node_modules/date-fns/locale/es/_lib/match/index.js
deleted file mode 100644
index bfa9aa4..0000000
--- a/node_modules/date-fns/locale/es/_lib/match/index.js
+++ /dev/null
@@ -1,108 +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/buildMatchPatternFn/index.js"));
-var _index2 = _interopRequireDefault(require("../../../_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: (0, _index.default)({
- matchPattern: matchOrdinalNumberPattern,
- parsePattern: parseOrdinalNumberPattern,
- valueCallback: function valueCallback(value) {
- return parseInt(value, 10);
- }
- }),
- era: (0, _index2.default)({
- matchPatterns: matchEraPatterns,
- defaultMatchWidth: 'wide',
- parsePatterns: parseEraPatterns,
- defaultParseWidth: 'any'
- }),
- quarter: (0, _index2.default)({
- matchPatterns: matchQuarterPatterns,
- defaultMatchWidth: 'wide',
- parsePatterns: parseQuarterPatterns,
- defaultParseWidth: 'any',
- valueCallback: function valueCallback(index) {
- return index + 1;
- }
- }),
- month: (0, _index2.default)({
- matchPatterns: matchMonthPatterns,
- defaultMatchWidth: 'wide',
- parsePatterns: parseMonthPatterns,
- defaultParseWidth: 'any'
- }),
- day: (0, _index2.default)({
- matchPatterns: matchDayPatterns,
- defaultMatchWidth: 'wide',
- parsePatterns: parseDayPatterns,
- defaultParseWidth: 'any'
- }),
- dayPeriod: (0, _index2.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