Files
klz-cables.com/.pnpm-store/v10/files/54/abc9b9003b3362d834e75ebac6345cdd1b8fe6ed9387c4ee93af9bcd817d7ae85a4076745b8d24f21706bc1a7c7706a2141a1a6e569f5758dfc73ab284c4c7
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

33 lines
1008 B
Plaintext

import { formatDistance } from "./ja/_lib/formatDistance.js";
import { formatLong } from "./ja/_lib/formatLong.js";
import { formatRelative } from "./ja/_lib/formatRelative.js";
import { localize } from "./ja/_lib/localize.js";
import { match } from "./ja/_lib/match.js";
/**
* @category Locales
* @summary Japanese locale.
* @language Japanese
* @iso-639-2 jpn
* @author Thomas Eilmsteiner [@DeMuu](https://github.com/DeMuu)
* @author Yamagishi Kazutoshi [@ykzts](https://github.com/ykzts)
* @author Luca Ban [@mesqueeb](https://github.com/mesqueeb)
* @author Terrence Lam [@skyuplam](https://github.com/skyuplam)
* @author Taiki IKeda [@so99ynoodles](https://github.com/so99ynoodles)
*/
export const ja = {
code: "ja",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 0 /* Sunday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default ja;