Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
187
VApp/node_modules/date-fns/esm/locale/sk/_lib/formatDistance/index.js
generated
vendored
Normal file
187
VApp/node_modules/date-fns/esm/locale/sk/_lib/formatDistance/index.js
generated
vendored
Normal file
@ -0,0 +1,187 @@
|
||||
function declensionGroup(scheme, count) {
|
||||
if (count === 1 && scheme.one) {
|
||||
return scheme.one;
|
||||
}
|
||||
if (count >= 2 && count <= 4 && scheme.twoFour) {
|
||||
return scheme.twoFour;
|
||||
}
|
||||
|
||||
// if count === null || count === 0 || count >= 5
|
||||
return scheme.other;
|
||||
}
|
||||
function declension(scheme, count, time) {
|
||||
var group = declensionGroup(scheme, count);
|
||||
var finalText = group[time];
|
||||
return finalText.replace('{{count}}', String(count));
|
||||
}
|
||||
function extractPreposition(token) {
|
||||
var result = ['lessThan', 'about', 'over', 'almost'].filter(function (preposition) {
|
||||
return !!token.match(new RegExp('^' + preposition));
|
||||
});
|
||||
return result[0];
|
||||
}
|
||||
function prefixPreposition(preposition) {
|
||||
var translation = '';
|
||||
if (preposition === 'almost') {
|
||||
translation = 'takmer';
|
||||
}
|
||||
if (preposition === 'about') {
|
||||
translation = 'približne';
|
||||
}
|
||||
return translation.length > 0 ? translation + ' ' : '';
|
||||
}
|
||||
function suffixPreposition(preposition) {
|
||||
var translation = '';
|
||||
if (preposition === 'lessThan') {
|
||||
translation = 'menej než';
|
||||
}
|
||||
if (preposition === 'over') {
|
||||
translation = 'viac než';
|
||||
}
|
||||
return translation.length > 0 ? translation + ' ' : '';
|
||||
}
|
||||
function lowercaseFirstLetter(string) {
|
||||
return string.charAt(0).toLowerCase() + string.slice(1);
|
||||
}
|
||||
var formatDistanceLocale = {
|
||||
xSeconds: {
|
||||
one: {
|
||||
present: 'sekunda',
|
||||
past: 'sekundou',
|
||||
future: 'sekundu'
|
||||
},
|
||||
twoFour: {
|
||||
present: '{{count}} sekundy',
|
||||
past: '{{count}} sekundami',
|
||||
future: '{{count}} sekundy'
|
||||
},
|
||||
other: {
|
||||
present: '{{count}} sekúnd',
|
||||
past: '{{count}} sekundami',
|
||||
future: '{{count}} sekúnd'
|
||||
}
|
||||
},
|
||||
halfAMinute: {
|
||||
other: {
|
||||
present: 'pol minúty',
|
||||
past: 'pol minútou',
|
||||
future: 'pol minúty'
|
||||
}
|
||||
},
|
||||
xMinutes: {
|
||||
one: {
|
||||
present: 'minúta',
|
||||
past: 'minútou',
|
||||
future: 'minútu'
|
||||
},
|
||||
twoFour: {
|
||||
present: '{{count}} minúty',
|
||||
past: '{{count}} minútami',
|
||||
future: '{{count}} minúty'
|
||||
},
|
||||
other: {
|
||||
present: '{{count}} minút',
|
||||
past: '{{count}} minútami',
|
||||
future: '{{count}} minút'
|
||||
}
|
||||
},
|
||||
xHours: {
|
||||
one: {
|
||||
present: 'hodina',
|
||||
past: 'hodinou',
|
||||
future: 'hodinu'
|
||||
},
|
||||
twoFour: {
|
||||
present: '{{count}} hodiny',
|
||||
past: '{{count}} hodinami',
|
||||
future: '{{count}} hodiny'
|
||||
},
|
||||
other: {
|
||||
present: '{{count}} hodín',
|
||||
past: '{{count}} hodinami',
|
||||
future: '{{count}} hodín'
|
||||
}
|
||||
},
|
||||
xDays: {
|
||||
one: {
|
||||
present: 'deň',
|
||||
past: 'dňom',
|
||||
future: 'deň'
|
||||
},
|
||||
twoFour: {
|
||||
present: '{{count}} dni',
|
||||
past: '{{count}} dňami',
|
||||
future: '{{count}} dni'
|
||||
},
|
||||
other: {
|
||||
present: '{{count}} dní',
|
||||
past: '{{count}} dňami',
|
||||
future: '{{count}} dní'
|
||||
}
|
||||
},
|
||||
xWeeks: {
|
||||
one: {
|
||||
present: 'týždeň',
|
||||
past: 'týždňom',
|
||||
future: 'týždeň'
|
||||
},
|
||||
twoFour: {
|
||||
present: '{{count}} týždne',
|
||||
past: '{{count}} týždňami',
|
||||
future: '{{count}} týždne'
|
||||
},
|
||||
other: {
|
||||
present: '{{count}} týždňov',
|
||||
past: '{{count}} týždňami',
|
||||
future: '{{count}} týždňov'
|
||||
}
|
||||
},
|
||||
xMonths: {
|
||||
one: {
|
||||
present: 'mesiac',
|
||||
past: 'mesiacom',
|
||||
future: 'mesiac'
|
||||
},
|
||||
twoFour: {
|
||||
present: '{{count}} mesiace',
|
||||
past: '{{count}} mesiacmi',
|
||||
future: '{{count}} mesiace'
|
||||
},
|
||||
other: {
|
||||
present: '{{count}} mesiacov',
|
||||
past: '{{count}} mesiacmi',
|
||||
future: '{{count}} mesiacov'
|
||||
}
|
||||
},
|
||||
xYears: {
|
||||
one: {
|
||||
present: 'rok',
|
||||
past: 'rokom',
|
||||
future: 'rok'
|
||||
},
|
||||
twoFour: {
|
||||
present: '{{count}} roky',
|
||||
past: '{{count}} rokmi',
|
||||
future: '{{count}} roky'
|
||||
},
|
||||
other: {
|
||||
present: '{{count}} rokov',
|
||||
past: '{{count}} rokmi',
|
||||
future: '{{count}} rokov'
|
||||
}
|
||||
}
|
||||
};
|
||||
var formatDistance = function formatDistance(token, count, options) {
|
||||
var preposition = extractPreposition(token) || '';
|
||||
var key = lowercaseFirstLetter(token.substring(preposition.length));
|
||||
var scheme = formatDistanceLocale[key];
|
||||
if (!(options !== null && options !== void 0 && options.addSuffix)) {
|
||||
return prefixPreposition(preposition) + suffixPreposition(preposition) + declension(scheme, count, 'present');
|
||||
}
|
||||
if (options.comparison && options.comparison > 0) {
|
||||
return prefixPreposition(preposition) + 'o ' + suffixPreposition(preposition) + declension(scheme, count, 'future');
|
||||
} else {
|
||||
return prefixPreposition(preposition) + 'pred ' + suffixPreposition(preposition) + declension(scheme, count, 'past');
|
||||
}
|
||||
};
|
||||
export default formatDistance;
|
38
VApp/node_modules/date-fns/esm/locale/sk/_lib/formatLong/index.js
generated
vendored
Normal file
38
VApp/node_modules/date-fns/esm/locale/sk/_lib/formatLong/index.js
generated
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
import buildFormatLongFn from "../../../_lib/buildFormatLongFn/index.js"; // https://www.unicode.org/cldr/charts/32/summary/sk.html?hide#1986
|
||||
var dateFormats = {
|
||||
full: 'EEEE d. MMMM y',
|
||||
long: 'd. MMMM y',
|
||||
medium: 'd. M. y',
|
||||
short: 'd. M. y'
|
||||
};
|
||||
|
||||
// https://www.unicode.org/cldr/charts/32/summary/sk.html?hide#2149
|
||||
var timeFormats = {
|
||||
full: 'H:mm:ss zzzz',
|
||||
long: 'H:mm:ss z',
|
||||
medium: 'H:mm:ss',
|
||||
short: 'H:mm'
|
||||
};
|
||||
|
||||
// https://www.unicode.org/cldr/charts/32/summary/sk.html?hide#1994
|
||||
var dateTimeFormats = {
|
||||
full: '{{date}}, {{time}}',
|
||||
long: '{{date}}, {{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;
|
63
VApp/node_modules/date-fns/esm/locale/sk/_lib/formatRelative/index.js
generated
vendored
Normal file
63
VApp/node_modules/date-fns/esm/locale/sk/_lib/formatRelative/index.js
generated
vendored
Normal file
@ -0,0 +1,63 @@
|
||||
import isSameUTCWeek from "../../../../_lib/isSameUTCWeek/index.js";
|
||||
// https://www.unicode.org/cldr/charts/32/summary/sk.html?hide#1308
|
||||
var accusativeWeekdays = ['nedeľu', 'pondelok', 'utorok', 'stredu', 'štvrtok', 'piatok', 'sobotu'];
|
||||
function _lastWeek(day) {
|
||||
var weekday = accusativeWeekdays[day];
|
||||
switch (day) {
|
||||
case 0: /* Sun */
|
||||
case 3: /* Wed */
|
||||
case 6 /* Sat */:
|
||||
return "'minulú " + weekday + " o' p";
|
||||
default:
|
||||
return "'minulý' eeee 'o' p";
|
||||
}
|
||||
}
|
||||
function thisWeek(day) {
|
||||
var weekday = accusativeWeekdays[day];
|
||||
if (day === 4 /* Thu */) {
|
||||
return "'vo' eeee 'o' p";
|
||||
} else {
|
||||
return "'v " + weekday + " o' p";
|
||||
}
|
||||
}
|
||||
function _nextWeek(day) {
|
||||
var weekday = accusativeWeekdays[day];
|
||||
switch (day) {
|
||||
case 0: /* Sun */
|
||||
case 4: /* Wed */
|
||||
case 6 /* Sat */:
|
||||
return "'budúcu " + weekday + " o' p";
|
||||
default:
|
||||
return "'budúci' eeee 'o' p";
|
||||
}
|
||||
}
|
||||
var formatRelativeLocale = {
|
||||
lastWeek: function lastWeek(date, baseDate, options) {
|
||||
var day = date.getUTCDay();
|
||||
if (isSameUTCWeek(date, baseDate, options)) {
|
||||
return thisWeek(day);
|
||||
} else {
|
||||
return _lastWeek(day);
|
||||
}
|
||||
},
|
||||
yesterday: "'včera o' p",
|
||||
today: "'dnes o' p",
|
||||
tomorrow: "'zajtra o' p",
|
||||
nextWeek: function nextWeek(date, baseDate, options) {
|
||||
var day = date.getUTCDay();
|
||||
if (isSameUTCWeek(date, baseDate, options)) {
|
||||
return thisWeek(day);
|
||||
} else {
|
||||
return _nextWeek(day);
|
||||
}
|
||||
},
|
||||
other: 'P'
|
||||
};
|
||||
var formatRelative = function formatRelative(token, date, baseDate, options) {
|
||||
var format = formatRelativeLocale[token];
|
||||
if (typeof format === 'function') {
|
||||
return format(date, baseDate, options);
|
||||
}
|
||||
return format;
|
||||
};
|
||||
export default formatRelative;
|
134
VApp/node_modules/date-fns/esm/locale/sk/_lib/localize/index.js
generated
vendored
Normal file
134
VApp/node_modules/date-fns/esm/locale/sk/_lib/localize/index.js
generated
vendored
Normal file
@ -0,0 +1,134 @@
|
||||
import buildLocalizeFn from "../../../_lib/buildLocalizeFn/index.js"; // https://www.unicode.org/cldr/charts/32/summary/sk.html#1772
|
||||
var eraValues = {
|
||||
narrow: ['pred Kr.', 'po Kr.'],
|
||||
abbreviated: ['pred Kr.', 'po Kr.'],
|
||||
wide: ['pred Kristom', 'po Kristovi']
|
||||
};
|
||||
|
||||
// https://www.unicode.org/cldr/charts/32/summary/sk.html#1780
|
||||
var quarterValues = {
|
||||
narrow: ['1', '2', '3', '4'],
|
||||
abbreviated: ['Q1', 'Q2', 'Q3', 'Q4'],
|
||||
wide: ['1. štvrťrok', '2. štvrťrok', '3. štvrťrok', '4. štvrťrok']
|
||||
};
|
||||
|
||||
// https://www.unicode.org/cldr/charts/32/summary/sk.html#1804
|
||||
var monthValues = {
|
||||
narrow: ['j', 'f', 'm', 'a', 'm', 'j', 'j', 'a', 's', 'o', 'n', 'd'],
|
||||
abbreviated: ['jan', 'feb', 'mar', 'apr', 'máj', 'jún', 'júl', 'aug', 'sep', 'okt', 'nov', 'dec'],
|
||||
wide: ['január', 'február', 'marec', 'apríl', 'máj', 'jún', 'júl', 'august', 'september', 'október', 'november', 'december']
|
||||
};
|
||||
var formattingMonthValues = {
|
||||
narrow: ['j', 'f', 'm', 'a', 'm', 'j', 'j', 'a', 's', 'o', 'n', 'd'],
|
||||
abbreviated: ['jan', 'feb', 'mar', 'apr', 'máj', 'jún', 'júl', 'aug', 'sep', 'okt', 'nov', 'dec'],
|
||||
wide: ['januára', 'februára', 'marca', 'apríla', 'mája', 'júna', 'júla', 'augusta', 'septembra', 'októbra', 'novembra', 'decembra']
|
||||
};
|
||||
|
||||
// https://www.unicode.org/cldr/charts/32/summary/sk.html#1876
|
||||
var dayValues = {
|
||||
narrow: ['n', 'p', 'u', 's', 'š', 'p', 's'],
|
||||
short: ['ne', 'po', 'ut', 'st', 'št', 'pi', 'so'],
|
||||
abbreviated: ['ne', 'po', 'ut', 'st', 'št', 'pi', 'so'],
|
||||
wide: ['nedeľa', 'pondelok', 'utorok', 'streda', 'štvrtok', 'piatok', 'sobota']
|
||||
};
|
||||
|
||||
// https://www.unicode.org/cldr/charts/32/summary/sk.html#1932
|
||||
var dayPeriodValues = {
|
||||
narrow: {
|
||||
am: 'AM',
|
||||
pm: 'PM',
|
||||
midnight: 'poln.',
|
||||
noon: 'pol.',
|
||||
morning: 'ráno',
|
||||
afternoon: 'pop.',
|
||||
evening: 'več.',
|
||||
night: 'noc'
|
||||
},
|
||||
abbreviated: {
|
||||
am: 'AM',
|
||||
pm: 'PM',
|
||||
midnight: 'poln.',
|
||||
noon: 'pol.',
|
||||
morning: 'ráno',
|
||||
afternoon: 'popol.',
|
||||
evening: 'večer',
|
||||
night: 'noc'
|
||||
},
|
||||
wide: {
|
||||
am: 'AM',
|
||||
pm: 'PM',
|
||||
midnight: 'polnoc',
|
||||
noon: 'poludnie',
|
||||
morning: 'ráno',
|
||||
afternoon: 'popoludnie',
|
||||
evening: 'večer',
|
||||
night: 'noc'
|
||||
}
|
||||
};
|
||||
var formattingDayPeriodValues = {
|
||||
narrow: {
|
||||
am: 'AM',
|
||||
pm: 'PM',
|
||||
midnight: 'o poln.',
|
||||
noon: 'nap.',
|
||||
morning: 'ráno',
|
||||
afternoon: 'pop.',
|
||||
evening: 'več.',
|
||||
night: 'v n.'
|
||||
},
|
||||
abbreviated: {
|
||||
am: 'AM',
|
||||
pm: 'PM',
|
||||
midnight: 'o poln.',
|
||||
noon: 'napol.',
|
||||
morning: 'ráno',
|
||||
afternoon: 'popol.',
|
||||
evening: 'večer',
|
||||
night: 'v noci'
|
||||
},
|
||||
wide: {
|
||||
am: 'AM',
|
||||
pm: 'PM',
|
||||
midnight: 'o polnoci',
|
||||
noon: 'napoludnie',
|
||||
morning: 'ráno',
|
||||
afternoon: 'popoludní',
|
||||
evening: 'večer',
|
||||
night: 'v noci'
|
||||
}
|
||||
};
|
||||
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',
|
||||
formattingValues: formattingMonthValues,
|
||||
defaultFormattingWidth: 'wide'
|
||||
}),
|
||||
day: buildLocalizeFn({
|
||||
values: dayValues,
|
||||
defaultWidth: 'wide'
|
||||
}),
|
||||
dayPeriod: buildLocalizeFn({
|
||||
values: dayPeriodValues,
|
||||
defaultWidth: 'wide',
|
||||
formattingValues: formattingDayPeriodValues,
|
||||
defaultFormattingWidth: 'wide'
|
||||
})
|
||||
};
|
||||
export default localize;
|
99
VApp/node_modules/date-fns/esm/locale/sk/_lib/match/index.js
generated
vendored
Normal file
99
VApp/node_modules/date-fns/esm/locale/sk/_lib/match/index.js
generated
vendored
Normal file
@ -0,0 +1,99 @@
|
||||
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: /^(pred Kr\.|pred n\. l\.|po Kr\.|n\. l\.)/i,
|
||||
abbreviated: /^(pred Kr\.|pred n\. l\.|po Kr\.|n\. l\.)/i,
|
||||
wide: /^(pred Kristom|pred na[šs][íi]m letopo[čc]tom|po Kristovi|n[áa][šs]ho letopo[čc]tu)/i
|
||||
};
|
||||
var parseEraPatterns = {
|
||||
any: [/^pr/i, /^(po|n)/i]
|
||||
};
|
||||
var matchQuarterPatterns = {
|
||||
narrow: /^[1234]/i,
|
||||
abbreviated: /^q[1234]/i,
|
||||
wide: /^[1234]\. [šs]tvr[ťt]rok/i
|
||||
};
|
||||
var parseQuarterPatterns = {
|
||||
any: [/1/i, /2/i, /3/i, /4/i]
|
||||
};
|
||||
var matchMonthPatterns = {
|
||||
narrow: /^[jfmasond]/i,
|
||||
abbreviated: /^(jan|feb|mar|apr|m[áa]j|j[úu]n|j[úu]l|aug|sep|okt|nov|dec)/i,
|
||||
wide: /^(janu[áa]ra?|febru[áa]ra?|(marec|marca)|apr[íi]la?|m[áa]ja?|j[úu]na?|j[úu]la?|augusta?|(september|septembra)|(okt[óo]ber|okt[óo]bra)|(november|novembra)|(december|decembra))/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, /^ap/i, /^m[áa]j/i, /^j[úu]n/i, /^j[úu]l/i, /^au/i, /^s/i, /^o/i, /^n/i, /^d/i]
|
||||
};
|
||||
var matchDayPatterns = {
|
||||
narrow: /^[npusšp]/i,
|
||||
short: /^(ne|po|ut|st|št|pi|so)/i,
|
||||
abbreviated: /^(ne|po|ut|st|št|pi|so)/i,
|
||||
wide: /^(nede[ľl]a|pondelok|utorok|streda|[šs]tvrtok|piatok|sobota])/i
|
||||
};
|
||||
var parseDayPatterns = {
|
||||
narrow: [/^n/i, /^p/i, /^u/i, /^s/i, /^š/i, /^p/i, /^s/i],
|
||||
any: [/^n/i, /^po/i, /^u/i, /^st/i, /^(št|stv)/i, /^pi/i, /^so/i]
|
||||
};
|
||||
var matchDayPeriodPatterns = {
|
||||
narrow: /^(am|pm|(o )?poln\.?|(nap\.?|pol\.?)|r[áa]no|pop\.?|ve[čc]\.?|(v n\.?|noc))/i,
|
||||
abbreviated: /^(am|pm|(o )?poln\.?|(napol\.?|pol\.?)|r[áa]no|pop\.?|ve[čc]er|(v )?noci?)/i,
|
||||
any: /^(am|pm|(o )?polnoci?|(na)?poludnie|r[áa]no|popoludn(ie|í|i)|ve[čc]er|(v )?noci?)/i
|
||||
};
|
||||
var parseDayPeriodPatterns = {
|
||||
any: {
|
||||
am: /^am/i,
|
||||
pm: /^pm/i,
|
||||
midnight: /poln/i,
|
||||
noon: /^(nap|(na)?pol(\.|u))/i,
|
||||
morning: /^r[áa]no/i,
|
||||
afternoon: /^pop/i,
|
||||
evening: /^ve[čc]/i,
|
||||
night: /^(noc|v n\.)/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