Files
klz-cables.com/.pnpm-store/v10/files/3e/636fcd56cd52f2319443edfb807dd52de85c3678a88ed117892944240f15cd0fdc2c1aeaf86d2eb9611ce98333ce67fafc2c97cda6d06903f7baf9eb2f4551
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

30 lines
810 B
Plaintext

import { formatDistance } from "./ka/_lib/formatDistance.mjs";
import { formatLong } from "./ka/_lib/formatLong.mjs";
import { formatRelative } from "./ka/_lib/formatRelative.mjs";
import { localize } from "./ka/_lib/localize.mjs";
import { match } from "./ka/_lib/match.mjs";
/**
* @category Locales
* @summary Georgian locale.
* @language Georgian
* @iso-639-2 geo
* @author Lado Lomidze [@Landish](https://github.com/Landish)
* @author Nick Shvelidze [@shvelo](https://github.com/shvelo)
*/
export const ka = {
code: "ka",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default ka;