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

31 lines
881 B
Plaintext

import { formatDistance } from "./ro/_lib/formatDistance.mjs";
import { formatLong } from "./ro/_lib/formatLong.mjs";
import { formatRelative } from "./ro/_lib/formatRelative.mjs";
import { localize } from "./ro/_lib/localize.mjs";
import { match } from "./ro/_lib/match.mjs";
/**
* @category Locales
* @summary Romanian locale.
* @language Romanian
* @iso-639-2 ron
* @author Sergiu Munteanu [@jsergiu](https://github.com/jsergiu)
* @author Adrian Ocneanu [@aocneanu](https://github.com/aocneanu)
* @author Mihai Ocneanu [@gandesc](https://github.com/gandesc)
*/
export const ro = {
code: "ro",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default ro;