summaryrefslogtreecommitdiff
path: root/date-fns/src/locale/es/_lib
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2021-08-23 16:46:06 -0300
committerSebastian <sebasjm@gmail.com>2021-08-23 16:48:30 -0300
commit38acabfa6089ab8ac469c12b5f55022fb96935e5 (patch)
tree453dbf70000cc5e338b06201af1eaca8343f8f73 /date-fns/src/locale/es/_lib
parentf26125e039143b92dc0d84e7775f508ab0cdcaa8 (diff)
downloadnode-vendor-38acabfa6089ab8ac469c12b5f55022fb96935e5.tar.gz
node-vendor-38acabfa6089ab8ac469c12b5f55022fb96935e5.tar.bz2
node-vendor-38acabfa6089ab8ac469c12b5f55022fb96935e5.zip
added web vendorsHEADmaster
Diffstat (limited to 'date-fns/src/locale/es/_lib')
-rw-r--r--date-fns/src/locale/es/_lib/formatDistance/index.js101
-rw-r--r--date-fns/src/locale/es/_lib/formatLong/index.js41
-rw-r--r--date-fns/src/locale/es/_lib/formatRelative/index.js24
-rw-r--r--date-fns/src/locale/es/_lib/localize/index.js166
-rw-r--r--date-fns/src/locale/es/_lib/match/index.js141
5 files changed, 473 insertions, 0 deletions
diff --git a/date-fns/src/locale/es/_lib/formatDistance/index.js b/date-fns/src/locale/es/_lib/formatDistance/index.js
new file mode 100644
index 0000000..512e30e
--- /dev/null
+++ b/date-fns/src/locale/es/_lib/formatDistance/index.js
@@ -0,0 +1,101 @@
+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'
+ }
+}
+
+export default function formatDistance(token, count, options) {
+ options = options || {}
+
+ var result
+ if (typeof formatDistanceLocale[token] === 'string') {
+ result = formatDistanceLocale[token]
+ } else if (count === 1) {
+ result = formatDistanceLocale[token].one
+ } else {
+ result = formatDistanceLocale[token].other.replace('{{count}}', count)
+ }
+
+ if (options.addSuffix) {
+ if (options.comparison > 0) {
+ return 'en ' + result
+ } else {
+ return 'hace ' + result
+ }
+ }
+
+ return result
+}
diff --git a/date-fns/src/locale/es/_lib/formatLong/index.js b/date-fns/src/locale/es/_lib/formatLong/index.js
new file mode 100644
index 0000000..3edd81e
--- /dev/null
+++ b/date-fns/src/locale/es/_lib/formatLong/index.js
@@ -0,0 +1,41 @@
+import buildFormatLongFn from '../../../_lib/buildFormatLongFn/index'
+
+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
diff --git a/date-fns/src/locale/es/_lib/formatRelative/index.js b/date-fns/src/locale/es/_lib/formatRelative/index.js
new file mode 100644
index 0000000..6323dc1
--- /dev/null
+++ b/date-fns/src/locale/es/_lib/formatRelative/index.js
@@ -0,0 +1,24 @@
+var formatRelativeLocale = {
+ lastWeek: "'el' eeee 'pasado a la' LT",
+ 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'
+}
+
+export default function formatRelative(token, date, _baseDate, _options) {
+ if (date.getUTCHours() !== 1) {
+ return formatRelativeLocalePlural[token]
+ }
+ return formatRelativeLocale[token]
+}
diff --git a/date-fns/src/locale/es/_lib/localize/index.js b/date-fns/src/locale/es/_lib/localize/index.js
new file mode 100644
index 0000000..ffdd1a9
--- /dev/null
+++ b/date-fns/src/locale/es/_lib/localize/index.js
@@ -0,0 +1,166 @@
+import buildLocalizeFn from '../../../_lib/buildLocalizeFn/index'
+
+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', 'sa'],
+ 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'
+ }
+}
+
+function ordinalNumber(dirtyNumber) {
+ var number = Number(dirtyNumber)
+ return number + 'º'
+}
+
+var localize = {
+ ordinalNumber: ordinalNumber,
+
+ era: buildLocalizeFn({
+ values: eraValues,
+ defaultWidth: 'wide'
+ }),
+
+ quarter: buildLocalizeFn({
+ values: quarterValues,
+ defaultWidth: 'wide',
+ argumentCallback: function(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
diff --git a/date-fns/src/locale/es/_lib/match/index.js b/date-fns/src/locale/es/_lib/match/index.js
new file mode 100644
index 0000000..3c9cf1a
--- /dev/null
+++ b/date-fns/src/locale/es/_lib/match/index.js
@@ -0,0 +1,141 @@
+import buildMatchPatternFn from '../../../_lib/buildMatchPatternFn/index'
+import buildMatchFn from '../../../_lib/buildMatchFn/index'
+
+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|sa)/i,
+ abbreviated: /^(dom|lun|mar|mie|jue|vie|sab)/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(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(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