Files
klz-cables.com/.pnpm-store/v10/files/79/bec8ff9c226f69743f24a0b87ffa52f15040b19de4f5b8240b419eb5696bb6509a56dde2c973c2867862c7f97a9ca0691d63271ef0c283df333c6ef7db80e4
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
1013 B
Plaintext

import { formatDistance } from "./ja/_lib/formatDistance.mjs";
import { formatLong } from "./ja/_lib/formatLong.mjs";
import { formatRelative } from "./ja/_lib/formatRelative.mjs";
import { localize } from "./ja/_lib/localize.mjs";
import { match } from "./ja/_lib/match.mjs";
/**
* @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;