aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/date-fns/locale/lt/_lib/formatDistance/index.js
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2025-06-28 17:26:46 -0700
committerPinapelz <yukais@pinapelz.com>2025-06-28 17:43:56 -0700
commite4fa1e69e7ebfb627c7198fd1a9881e9327ec4d4 (patch)
tree06284a538a6008eca75051399e47db4e5d50301c /node_modules/date-fns/locale/lt/_lib/formatDistance/index.js
initial commit: scaffolding
Diffstat (limited to 'node_modules/date-fns/locale/lt/_lib/formatDistance/index.js')
-rw-r--r--node_modules/date-fns/locale/lt/_lib/formatDistance/index.js147
1 files changed, 147 insertions, 0 deletions
diff --git a/node_modules/date-fns/locale/lt/_lib/formatDistance/index.js b/node_modules/date-fns/locale/lt/_lib/formatDistance/index.js
new file mode 100644
index 0000000..abd5992
--- /dev/null
+++ b/node_modules/date-fns/locale/lt/_lib/formatDistance/index.js
@@ -0,0 +1,147 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.default = void 0;
+var translations = {
+ xseconds_other: 'sekundė_sekundžių_sekundes',
+ xminutes_one: 'minutė_minutės_minutę',
+ xminutes_other: 'minutės_minučių_minutes',
+ xhours_one: 'valanda_valandos_valandą',
+ xhours_other: 'valandos_valandų_valandas',
+ xdays_one: 'diena_dienos_dieną',
+ xdays_other: 'dienos_dienų_dienas',
+ xweeks_one: 'savaitė_savaitės_savaitę',
+ xweeks_other: 'savaitės_savaičių_savaites',
+ xmonths_one: 'mėnuo_mėnesio_mėnesį',
+ xmonths_other: 'mėnesiai_mėnesių_mėnesius',
+ xyears_one: 'metai_metų_metus',
+ xyears_other: 'metai_metų_metus',
+ about: 'apie',
+ over: 'daugiau nei',
+ almost: 'beveik',
+ lessthan: 'mažiau nei'
+};
+var translateSeconds = function translateSeconds(_number, addSuffix, _key, isFuture) {
+ if (!addSuffix) {
+ return 'kelios sekundės';
+ } else {
+ return isFuture ? 'kelių sekundžių' : 'kelias sekundes';
+ }
+};
+var translateSingular = function translateSingular(_number, addSuffix, key, isFuture) {
+ return !addSuffix ? forms(key)[0] : isFuture ? forms(key)[1] : forms(key)[2];
+};
+var translate = function translate(number, addSuffix, key, isFuture) {
+ var result = number + ' ';
+ if (number === 1) {
+ return result + translateSingular(number, addSuffix, key, isFuture);
+ } else if (!addSuffix) {
+ return result + (special(number) ? forms(key)[1] : forms(key)[0]);
+ } else {
+ if (isFuture) {
+ return result + forms(key)[1];
+ } else {
+ return result + (special(number) ? forms(key)[1] : forms(key)[2]);
+ }
+ }
+};
+function special(number) {
+ return number % 10 === 0 || number > 10 && number < 20;
+}
+function forms(key) {
+ return translations[key].split('_');
+}
+var formatDistanceLocale = {
+ lessThanXSeconds: {
+ one: translateSeconds,
+ other: translate
+ },
+ xSeconds: {
+ one: translateSeconds,
+ other: translate
+ },
+ halfAMinute: 'pusė minutės',
+ lessThanXMinutes: {
+ one: translateSingular,
+ other: translate
+ },
+ xMinutes: {
+ one: translateSingular,
+ other: translate
+ },
+ aboutXHours: {
+ one: translateSingular,
+ other: translate
+ },
+ xHours: {
+ one: translateSingular,
+ other: translate
+ },
+ xDays: {
+ one: translateSingular,
+ other: translate
+ },
+ aboutXWeeks: {
+ one: translateSingular,
+ other: translate
+ },
+ xWeeks: {
+ one: translateSingular,
+ other: translate
+ },
+ aboutXMonths: {
+ one: translateSingular,
+ other: translate
+ },
+ xMonths: {
+ one: translateSingular,
+ other: translate
+ },
+ aboutXYears: {
+ one: translateSingular,
+ other: translate
+ },
+ xYears: {
+ one: translateSingular,
+ other: translate
+ },
+ overXYears: {
+ one: translateSingular,
+ other: translate
+ },
+ almostXYears: {
+ one: translateSingular,
+ other: translate
+ }
+};
+var formatDistance = function formatDistance(token, count, options) {
+ var adverb = token.match(/about|over|almost|lessthan/i);
+ var unit = adverb ? token.replace(adverb[0], '') : token;
+ var isFuture = (options === null || options === void 0 ? void 0 : options.comparison) !== undefined && options.comparison > 0;
+ var result;
+ var tokenValue = formatDistanceLocale[token];
+ if (typeof tokenValue === 'string') {
+ result = tokenValue;
+ } else if (count === 1) {
+ result = tokenValue.one(count, (options === null || options === void 0 ? void 0 : options.addSuffix) === true, unit.toLowerCase() + '_one', isFuture);
+ } else {
+ result = tokenValue.other(count, (options === null || options === void 0 ? void 0 : options.addSuffix) === true, unit.toLowerCase() + '_other', isFuture);
+ }
+ if (adverb) {
+ var _key2 = adverb[0].toLowerCase();
+ result = translations[_key2] + ' ' + result;
+ }
+ if (options !== null && options !== void 0 && options.addSuffix) {
+ if (options.comparison && options.comparison > 0) {
+ return 'po ' + result;
+ } else {
+ return 'prieš ' + result;
+ }
+ }
+ return result;
+};
+var _default = formatDistance;
+exports.default = _default;
+module.exports = exports.default; \ No newline at end of file
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage