Files
klz-cables.com/.pnpm-store/v10/files/94/df8c8f5ac2768e3d1fc97b086fd1005f0a804625e3254601ef58dd415cf6478d50082b02086ab9e912ca96449b466f2b9bb261c3dd244cb75e305e229aa0b2
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
807 B
Plaintext

import { formatDistance } from "./el/_lib/formatDistance.js";
import { formatLong } from "./el/_lib/formatLong.js";
import { formatRelative } from "./el/_lib/formatRelative.js";
import { localize } from "./el/_lib/localize.js";
import { match } from "./el/_lib/match.js";
/**
* @category Locales
* @summary Greek locale.
* @language Greek
* @iso-639-2 ell
* @author Fanis Katsimpas [@fanixk](https://github.com/fanixk)
* @author Theodoros Orfanidis [@teoulas](https://github.com/teoulas)
*/
export const el = {
code: "el",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default el;