Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
83
VApp/node_modules/date-fns/esm/locale/pt-BR/_lib/formatDistance/index.js
generated
vendored
Normal file
83
VApp/node_modules/date-fns/esm/locale/pt-BR/_lib/formatDistance/index.js
generated
vendored
Normal file
@ -0,0 +1,83 @@
|
||||
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;
|
34
VApp/node_modules/date-fns/esm/locale/pt-BR/_lib/formatLong/index.js
generated
vendored
Normal file
34
VApp/node_modules/date-fns/esm/locale/pt-BR/_lib/formatLong/index.js
generated
vendored
Normal file
@ -0,0 +1,34 @@
|
||||
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;
|
20
VApp/node_modules/date-fns/esm/locale/pt-BR/_lib/formatRelative/index.js
generated
vendored
Normal file
20
VApp/node_modules/date-fns/esm/locale/pt-BR/_lib/formatRelative/index.js
generated
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
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;
|
122
VApp/node_modules/date-fns/esm/locale/pt-BR/_lib/localize/index.js
generated
vendored
Normal file
122
VApp/node_modules/date-fns/esm/locale/pt-BR/_lib/localize/index.js
generated
vendored
Normal file
@ -0,0 +1,122 @@
|
||||
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;
|
100
VApp/node_modules/date-fns/esm/locale/pt-BR/_lib/match/index.js
generated
vendored
Normal file
100
VApp/node_modules/date-fns/esm/locale/pt-BR/_lib/match/index.js
generated
vendored
Normal file
@ -0,0 +1,100 @@
|
||||
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;
|
Reference in New Issue
Block a user