diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-06-29 11:49:28 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-06-29 11:49:28 -0700 |
| commit | d55b767039605256c736166a942a9138e3eacfd7 (patch) | |
| tree | 947063b634c50d438a794325f13275e134aa5993 /node_modules/date-fns/esm/locale/pt-BR | |
| parent | 864ce67d89c77d8ef9c3361f80d619853abcf91c (diff) | |
remove dev node_modules (oops)
Diffstat (limited to 'node_modules/date-fns/esm/locale/pt-BR')
9 files changed, 0 insertions, 429 deletions
diff --git a/node_modules/date-fns/esm/locale/pt-BR/_lib/formatDistance/index.js b/node_modules/date-fns/esm/locale/pt-BR/_lib/formatDistance/index.js deleted file mode 100644 index bde9594..0000000 --- a/node_modules/date-fns/esm/locale/pt-BR/_lib/formatDistance/index.js +++ /dev/null @@ -1,83 +0,0 @@ -var formatDistanceLocale = { - lessThanXSeconds: { - one: 'menos de um segundo', - other: 'menos de {{count}} segundos' - }, - xSeconds: { - one: '1 segundo', - other: '{{count}} segundos' - }, - halfAMinute: 'meio minuto', - lessThanXMinutes: { - one: 'menos de um minuto', - other: 'menos de {{count}} minutos' - }, - xMinutes: { - one: '1 minuto', - other: '{{count}} minutos' - }, - aboutXHours: { - one: 'cerca de 1 hora', - other: 'cerca de {{count}} horas' - }, - xHours: { - one: '1 hora', - other: '{{count}} horas' - }, - xDays: { - one: '1 dia', - other: '{{count}} dias' - }, - aboutXWeeks: { - one: 'cerca de 1 semana', - other: 'cerca de {{count}} semanas' - }, - xWeeks: { - one: '1 semana', - other: '{{count}} semanas' - }, - aboutXMonths: { - one: 'cerca de 1 mês', - other: 'cerca de {{count}} meses' - }, - xMonths: { - one: '1 mês', - other: '{{count}} meses' - }, - aboutXYears: { - one: 'cerca de 1 ano', - other: 'cerca de {{count}} anos' - }, - xYears: { - one: '1 ano', - other: '{{count}} anos' - }, - overXYears: { - one: 'mais de 1 ano', - other: 'mais de {{count}} anos' - }, - almostXYears: { - one: 'quase 1 ano', - other: 'quase {{count}} anos' - } -}; -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}}', String(count)); - } - if (options !== null && options !== void 0 && options.addSuffix) { - if (options.comparison && options.comparison > 0) { - return 'em ' + result; - } else { - return 'há ' + result; - } - } - return result; -}; -export default formatDistance;
\ No newline at end of file diff --git a/node_modules/date-fns/esm/locale/pt-BR/_lib/formatLong/index.js b/node_modules/date-fns/esm/locale/pt-BR/_lib/formatLong/index.js deleted file mode 100644 index 44108a1..0000000 --- a/node_modules/date-fns/esm/locale/pt-BR/_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/yyyy' -}; -var timeFormats = { - full: 'HH:mm:ss zzzz', - long: 'HH:mm:ss z', - medium: 'HH:mm:ss', - short: 'HH:mm' -}; -var dateTimeFormats = { - full: "{{date}} 'às' {{time}}", - long: "{{date}} 'às' {{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/pt-BR/_lib/formatRelative/index.js b/node_modules/date-fns/esm/locale/pt-BR/_lib/formatRelative/index.js deleted file mode 100644 index 501350c..0000000 --- a/node_modules/date-fns/esm/locale/pt-BR/_lib/formatRelative/index.js +++ /dev/null @@ -1,20 +0,0 @@ -var formatRelativeLocale = { - lastWeek: function lastWeek(date) { - var weekday = date.getUTCDay(); - var last = weekday === 0 || weekday === 6 ? 'último' : 'última'; - return "'" + last + "' eeee 'às' p"; - }, - yesterday: "'ontem às' p", - today: "'hoje às' p", - tomorrow: "'amanhã às' p", - nextWeek: "eeee 'às' p", - other: 'P' -}; -var formatRelative = function formatRelative(token, date, _baseDate, _options) { - var format = formatRelativeLocale[token]; - if (typeof format === 'function') { - return format(date); - } - return format; -}; -export default formatRelative;
\ No newline at end of file diff --git a/node_modules/date-fns/esm/locale/pt-BR/_lib/localize/index.js b/node_modules/date-fns/esm/locale/pt-BR/_lib/localize/index.js deleted file mode 100644 index 86b3c24..0000000 --- a/node_modules/date-fns/esm/locale/pt-BR/_lib/localize/index.js +++ /dev/null @@ -1,122 +0,0 @@ -import buildLocalizeFn from "../../../_lib/buildLocalizeFn/index.js"; -var eraValues = { - narrow: ['AC', 'DC'], - abbreviated: ['AC', 'DC'], - wide: ['antes de cristo', 'depois 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: ['j', 'f', 'm', 'a', 'm', 'j', 'j', 'a', 's', 'o', 'n', 'd'], - abbreviated: ['jan', 'fev', 'mar', 'abr', 'mai', 'jun', 'jul', 'ago', 'set', 'out', 'nov', 'dez'], - wide: ['janeiro', 'fevereiro', 'março', 'abril', 'maio', 'junho', 'julho', 'agosto', 'setembro', 'outubro', 'novembro', 'dezembro'] -}; -var dayValues = { - narrow: ['D', 'S', 'T', 'Q', 'Q', 'S', 'S'], - short: ['dom', 'seg', 'ter', 'qua', 'qui', 'sex', 'sab'], - abbreviated: ['domingo', 'segunda', 'terça', 'quarta', 'quinta', 'sexta', 'sábado'], - wide: ['domingo', 'segunda-feira', 'terça-feira', 'quarta-feira', 'quinta-feira', 'sexta-feira', 'sábado'] -}; -var dayPeriodValues = { - narrow: { - am: 'a', - pm: 'p', - midnight: 'mn', - noon: 'md', - morning: 'manhã', - afternoon: 'tarde', - evening: 'tarde', - night: 'noite' - }, - abbreviated: { - am: 'AM', - pm: 'PM', - midnight: 'meia-noite', - noon: 'meio-dia', - morning: 'manhã', - afternoon: 'tarde', - evening: 'tarde', - night: 'noite' - }, - wide: { - am: 'a.m.', - pm: 'p.m.', - midnight: 'meia-noite', - noon: 'meio-dia', - morning: 'manhã', - afternoon: 'tarde', - evening: 'tarde', - night: 'noite' - } -}; -var formattingDayPeriodValues = { - narrow: { - am: 'a', - pm: 'p', - midnight: 'mn', - noon: 'md', - morning: 'da manhã', - afternoon: 'da tarde', - evening: 'da tarde', - night: 'da noite' - }, - abbreviated: { - am: 'AM', - pm: 'PM', - midnight: 'meia-noite', - noon: 'meio-dia', - morning: 'da manhã', - afternoon: 'da tarde', - evening: 'da tarde', - night: 'da noite' - }, - wide: { - am: 'a.m.', - pm: 'p.m.', - midnight: 'meia-noite', - noon: 'meio-dia', - morning: 'da manhã', - afternoon: 'da tarde', - evening: 'da tarde', - night: 'da noite' - } -}; -var ordinalNumber = function ordinalNumber(dirtyNumber, options) { - var number = Number(dirtyNumber); - if ((options === null || options === void 0 ? void 0 : options.unit) === 'week') { - return number + 'ª'; - } - 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' - }), - 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/pt-BR/_lib/match/index.js b/node_modules/date-fns/esm/locale/pt-BR/_lib/match/index.js deleted file mode 100644 index aa56a69..0000000 --- a/node_modules/date-fns/esm/locale/pt-BR/_lib/match/index.js +++ /dev/null @@ -1,100 +0,0 @@ -import buildMatchFn from "../../../_lib/buildMatchFn/index.js"; -import buildMatchPatternFn from "../../../_lib/buildMatchPatternFn/index.js"; -var matchOrdinalNumberPattern = /^(\d+)[ºªo]?/i; -var parseOrdinalNumberPattern = /\d+/i; -var matchEraPatterns = { - narrow: /^(ac|dc|a|d)/i, - abbreviated: /^(a\.?\s?c\.?|d\.?\s?c\.?)/i, - wide: /^(antes de cristo|depois de cristo)/i -}; -var parseEraPatterns = { - any: [/^ac/i, /^dc/i], - wide: [/^antes de cristo/i, /^depois de cristo/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: /^[jfmajsond]/i, - abbreviated: /^(jan|fev|mar|abr|mai|jun|jul|ago|set|out|nov|dez)/i, - wide: /^(janeiro|fevereiro|março|abril|maio|junho|julho|agosto|setembro|outubro|novembro|dezembro)/i -}; -var parseMonthPatterns = { - narrow: [/^j/i, /^f/i, /^m/i, /^a/i, /^m/i, /^j/i, /^j/i, /^a/i, /^s/i, /^o/i, /^n/i, /^d/i], - any: [/^ja/i, /^fev/i, /^mar/i, /^abr/i, /^mai/i, /^jun/i, /^jul/i, /^ago/i, /^set/i, /^out/i, /^nov/i, /^dez/i] -}; -var matchDayPatterns = { - narrow: /^(dom|[23456]ª?|s[aá]b)/i, - short: /^(dom|[23456]ª?|s[aá]b)/i, - abbreviated: /^(dom|seg|ter|qua|qui|sex|s[aá]b)/i, - wide: /^(domingo|(segunda|ter[cç]a|quarta|quinta|sexta)([- ]feira)?|s[aá]bado)/i -}; -var parseDayPatterns = { - short: [/^d/i, /^2/i, /^3/i, /^4/i, /^5/i, /^6/i, /^s[aá]/i], - narrow: [/^d/i, /^2/i, /^3/i, /^4/i, /^5/i, /^6/i, /^s[aá]/i], - any: [/^d/i, /^seg/i, /^t/i, /^qua/i, /^qui/i, /^sex/i, /^s[aá]b/i] -}; -var matchDayPeriodPatterns = { - narrow: /^(a|p|mn|md|(da) (manhã|tarde|noite))/i, - any: /^([ap]\.?\s?m\.?|meia[-\s]noite|meio[-\s]dia|(da) (manhã|tarde|noite))/i -}; -var parseDayPeriodPatterns = { - any: { - am: /^a/i, - pm: /^p/i, - midnight: /^mn|^meia[-\s]noite/i, - noon: /^md|^meio[-\s]dia/i, - morning: /manhã/i, - afternoon: /tarde/i, - evening: /tarde/i, - night: /noite/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/pt-BR/index.d.ts b/node_modules/date-fns/esm/locale/pt-BR/index.d.ts deleted file mode 100644 index e50a0b1..0000000 --- a/node_modules/date-fns/esm/locale/pt-BR/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 { ptBR } from 'date-fns/locale' -export default ptBR diff --git a/node_modules/date-fns/esm/locale/pt-BR/index.js b/node_modules/date-fns/esm/locale/pt-BR/index.js deleted file mode 100644 index ba64027..0000000 --- a/node_modules/date-fns/esm/locale/pt-BR/index.js +++ /dev/null @@ -1,27 +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 Portuguese locale (Brazil). - * @language Portuguese - * @iso-639-2 por - * @author Lucas Duailibe [@duailibe]{@link https://github.com/duailibe} - * @author Yago Carballo [@yagocarballo]{@link https://github.com/YagoCarballo} - */ -var locale = { - code: 'pt-BR', - formatDistance: formatDistance, - formatLong: formatLong, - formatRelative: formatRelative, - localize: localize, - match: match, - options: { - weekStartsOn: 0 /* Sunday */, - firstWeekContainsDate: 1 - } -}; -export default locale;
\ No newline at end of file diff --git a/node_modules/date-fns/esm/locale/pt-BR/index.js.flow b/node_modules/date-fns/esm/locale/pt-BR/index.js.flow deleted file mode 100644 index b9dfe66..0000000 --- a/node_modules/date-fns/esm/locale/pt-BR/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/pt-BR/package.json b/node_modules/date-fns/esm/locale/pt-BR/package.json deleted file mode 100644 index a7398d8..0000000 --- a/node_modules/date-fns/esm/locale/pt-BR/package.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "sideEffects": false, - "typings": "../../../typings.d.ts" -}
\ No newline at end of file |
