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

29 lines
766 B
Plaintext

import { formatDistance } from "./kn/_lib/formatDistance.js";
import { formatLong } from "./kn/_lib/formatLong.js";
import { formatRelative } from "./kn/_lib/formatRelative.js";
import { localize } from "./kn/_lib/localize.js";
import { match } from "./kn/_lib/match.js";
/**
* @category Locales
* @summary Kannada locale (India).
* @language Kannada
* @iso-639-2 kan
* @author Manjunatha Gouli [@developergouli](https://github.com/developergouli)
*/
export const kn = {
code: "kn",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default kn;