Files
klz-cables.com/.pnpm-store/v10/files/c6/8b317599277d6e02ecf8de1a20a44a08303e5f6352d28c04c516927ece9a899b9fb9c28625c4c2689aeecc1d03e2e26a601244c7ab61107dd41345073f9dd1
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

120 lines
2.1 KiB
Plaintext

"use strict";
exports.formatDistance = void 0;
const formatDistanceLocale = {
lessThanXSeconds: {
one: "1秒未満",
other: "{{count}}秒未満",
oneWithSuffix: "約1秒",
otherWithSuffix: "約{{count}}秒",
},
xSeconds: {
one: "1秒",
other: "{{count}}秒",
},
halfAMinute: "30秒",
lessThanXMinutes: {
one: "1分未満",
other: "{{count}}分未満",
oneWithSuffix: "約1分",
otherWithSuffix: "約{{count}}分",
},
xMinutes: {
one: "1分",
other: "{{count}}分",
},
aboutXHours: {
one: "約1時間",
other: "約{{count}}時間",
},
xHours: {
one: "1時間",
other: "{{count}}時間",
},
xDays: {
one: "1日",
other: "{{count}}日",
},
aboutXWeeks: {
one: "約1週間",
other: "約{{count}}週間",
},
xWeeks: {
one: "1週間",
other: "{{count}}週間",
},
aboutXMonths: {
one: "約1か月",
other: "約{{count}}か月",
},
xMonths: {
one: "1か月",
other: "{{count}}か月",
},
aboutXYears: {
one: "約1年",
other: "約{{count}}年",
},
xYears: {
one: "1年",
other: "{{count}}年",
},
overXYears: {
one: "1年以上",
other: "{{count}}年以上",
},
almostXYears: {
one: "1年近く",
other: "{{count}}年近く",
},
};
const formatDistance = (token, count, options) => {
options = options || {};
let result;
const tokenValue = formatDistanceLocale[token];
if (typeof tokenValue === "string") {
result = tokenValue;
} else if (count === 1) {
if (options.addSuffix && tokenValue.oneWithSuffix) {
result = tokenValue.oneWithSuffix;
} else {
result = tokenValue.one;
}
} else {
if (options.addSuffix && tokenValue.otherWithSuffix) {
result = tokenValue.otherWithSuffix.replace("{{count}}", String(count));
} else {
result = tokenValue.other.replace("{{count}}", String(count));
}
}
if (options.addSuffix) {
if (options.comparison && options.comparison > 0) {
return result + "後";
} else {
return result + "前";
}
}
return result;
};
exports.formatDistance = formatDistance;