aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/date-fns/esm/locale/pt/_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/esm/locale/pt/_lib
parent864ce67d89c77d8ef9c3361f80d619853abcf91c (diff)
remove dev node_modules (oops)
Diffstat (limited to 'node_modules/date-fns/esm/locale/pt/_lib')
-rw-r--r--node_modules/date-fns/esm/locale/pt/_lib/formatDistance/index.js83
-rw-r--r--node_modules/date-fns/esm/locale/pt/_lib/formatLong/index.js34
-rw-r--r--node_modules/date-fns/esm/locale/pt/_lib/formatRelative/index.js20
-rw-r--r--node_modules/date-fns/esm/locale/pt/_lib/localize/index.js119
-rw-r--r--node_modules/date-fns/esm/locale/pt/_lib/match/index.js99
5 files changed, 0 insertions, 355 deletions
diff --git a/node_modules/date-fns/esm/locale/pt/_lib/formatDistance/index.js b/node_modules/date-fns/esm/locale/pt/_lib/formatDistance/index.js
deleted file mode 100644
index 0d1ad3b..0000000
--- a/node_modules/date-fns/esm/locale/pt/_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: 'aproximadamente 1 hora',
- other: 'aproximadamente {{count}} horas'
- },
- xHours: {
- one: '1 hora',
- other: '{{count}} horas'
- },
- xDays: {
- one: '1 dia',
- other: '{{count}} dias'
- },
- aboutXWeeks: {
- one: 'aproximadamente 1 semana',
- other: 'aproximadamente {{count}} semanas'
- },
- xWeeks: {
- one: '1 semana',
- other: '{{count}} semanas'
- },
- aboutXMonths: {
- one: 'aproximadamente 1 mês',
- other: 'aproximadamente {{count}} meses'
- },
- xMonths: {
- one: '1 mês',
- other: '{{count}} meses'
- },
- aboutXYears: {
- one: 'aproximadamente 1 ano',
- other: 'aproximadamente {{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 'daqui a ' + 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/_lib/formatLong/index.js b/node_modules/date-fns/esm/locale/pt/_lib/formatLong/index.js
deleted file mode 100644
index 161d9d0..0000000
--- a/node_modules/date-fns/esm/locale/pt/_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 'de' MMM 'de' 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}} 'à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/_lib/formatRelative/index.js b/node_modules/date-fns/esm/locale/pt/_lib/formatRelative/index.js
deleted file mode 100644
index 501350c..0000000
--- a/node_modules/date-fns/esm/locale/pt/_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/_lib/localize/index.js b/node_modules/date-fns/esm/locale/pt/_lib/localize/index.js
deleted file mode 100644
index e521f64..0000000
--- a/node_modules/date-fns/esm/locale/pt/_lib/localize/index.js
+++ /dev/null
@@ -1,119 +0,0 @@
-import buildLocalizeFn from "../../../_lib/buildLocalizeFn/index.js";
-var eraValues = {
- narrow: ['aC', 'dC'],
- abbreviated: ['a.C.', 'd.C.'],
- 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', 'sáb'],
- abbreviated: ['dom', 'seg', 'ter', 'qua', 'qui', 'sex', 'sáb'],
- wide: ['domingo', 'segunda-feira', 'terça-feira', 'quarta-feira', 'quinta-feira', 'sexta-feira', 'sábado']
-};
-var dayPeriodValues = {
- narrow: {
- am: 'AM',
- pm: 'PM',
- midnight: 'meia-noite',
- noon: 'meio-dia',
- morning: 'manhã',
- afternoon: 'tarde',
- evening: 'noite',
- night: 'madrugada'
- },
- abbreviated: {
- am: 'AM',
- pm: 'PM',
- midnight: 'meia-noite',
- noon: 'meio-dia',
- morning: 'manhã',
- afternoon: 'tarde',
- evening: 'noite',
- night: 'madrugada'
- },
- wide: {
- am: 'AM',
- pm: 'PM',
- midnight: 'meia-noite',
- noon: 'meio-dia',
- morning: 'manhã',
- afternoon: 'tarde',
- evening: 'noite',
- night: 'madrugada'
- }
-};
-var formattingDayPeriodValues = {
- narrow: {
- am: 'AM',
- pm: 'PM',
- midnight: 'meia-noite',
- noon: 'meio-dia',
- morning: 'da manhã',
- afternoon: 'da tarde',
- evening: 'da noite',
- night: 'da madrugada'
- },
- abbreviated: {
- am: 'AM',
- pm: 'PM',
- midnight: 'meia-noite',
- noon: 'meio-dia',
- morning: 'da manhã',
- afternoon: 'da tarde',
- evening: 'da noite',
- night: 'da madrugada'
- },
- wide: {
- am: 'AM',
- pm: 'PM',
- midnight: 'meia-noite',
- noon: 'meio-dia',
- morning: 'da manhã',
- afternoon: 'da tarde',
- evening: 'da noite',
- night: 'da madrugada'
- }
-};
-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'
- }),
- 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/_lib/match/index.js b/node_modules/date-fns/esm/locale/pt/_lib/match/index.js
deleted file mode 100644
index b122cf2..0000000
--- a/node_modules/date-fns/esm/locale/pt/_lib/match/index.js
+++ /dev/null
@@ -1,99 +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: /^(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 da era comum|depois de cristo|era comum)/i
-};
-var parseEraPatterns = {
- any: [/^ac/i, /^dc/i],
- wide: [/^(antes de cristo|antes da era comum)/i, /^(depois de cristo|era comum)/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: /^[jfmasond]/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, /^f/i, /^mar/i, /^ab/i, /^mai/i, /^jun/i, /^jul/i, /^ag/i, /^s/i, /^o/i, /^n/i, /^d/i]
-};
-var matchDayPatterns = {
- narrow: /^[dstq]/i,
- short: /^(dom|seg|ter|qua|qui|sex|s[áa]b)/i,
- abbreviated: /^(dom|seg|ter|qua|qui|sex|s[áa]b)/i,
- wide: /^(domingo|segunda-?\s?feira|terça-?\s?feira|quarta-?\s?feira|quinta-?\s?feira|sexta-?\s?feira|s[áa]bado)/i
-};
-var parseDayPatterns = {
- narrow: [/^d/i, /^s/i, /^t/i, /^q/i, /^q/i, /^s/i, /^s/i],
- any: [/^d/i, /^seg/i, /^t/i, /^qua/i, /^qui/i, /^sex/i, /^s[áa]/i]
-};
-var matchDayPeriodPatterns = {
- narrow: /^(a|p|meia-?\s?noite|meio-?\s?dia|(da) (manh[ãa]|tarde|noite|madrugada))/i,
- any: /^([ap]\.?\s?m\.?|meia-?\s?noite|meio-?\s?dia|(da) (manh[ãa]|tarde|noite|madrugada))/i
-};
-var parseDayPeriodPatterns = {
- any: {
- am: /^a/i,
- pm: /^p/i,
- midnight: /^meia/i,
- noon: /^meio/i,
- morning: /manh[ãa]/i,
- afternoon: /tarde/i,
- evening: /noite/i,
- night: /madrugada/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
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage