Files
klz-cables.com/.pnpm-store/v10/files/06/f29aceb501f9b42d621af2fd96f39609e2f0b90fd86371d6c2559db558718f0d2c70c17633e9c3ce14495e71bd8ee9606dbadc9284ff61263c84460a7edb54
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
759 B
Plaintext

import { formatDistance } from "./gu/_lib/formatDistance.mjs";
import { formatLong } from "./gu/_lib/formatLong.mjs";
import { formatRelative } from "./gu/_lib/formatRelative.mjs";
import { localize } from "./gu/_lib/localize.mjs";
import { match } from "./gu/_lib/match.mjs";
/**
* @category Locales
* @summary Gujarati locale (India).
* @language Gujarati
* @iso-639-2 guj
* @author Manaday Mavani [@ManadayM](https://github.com/manadaym)
*/
export const gu = {
code: "gu",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default gu;