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
30 lines
800 B
Plaintext
30 lines
800 B
Plaintext
import { formatDistance } from "./fr/_lib/formatDistance.mjs";
|
|
import { formatLong } from "./fr/_lib/formatLong.mjs";
|
|
import { formatRelative } from "./fr/_lib/formatRelative.mjs";
|
|
import { localize } from "./fr/_lib/localize.mjs";
|
|
import { match } from "./fr/_lib/match.mjs";
|
|
|
|
/**
|
|
* @category Locales
|
|
* @summary French locale.
|
|
* @language French
|
|
* @iso-639-2 fra
|
|
* @author Jean Dupouy [@izeau](https://github.com/izeau)
|
|
* @author François B [@fbonzon](https://github.com/fbonzon)
|
|
*/
|
|
export const fr = {
|
|
code: "fr",
|
|
formatDistance: formatDistance,
|
|
formatLong: formatLong,
|
|
formatRelative: formatRelative,
|
|
localize: localize,
|
|
match: match,
|
|
options: {
|
|
weekStartsOn: 1 /* Monday */,
|
|
firstWeekContainsDate: 4,
|
|
},
|
|
};
|
|
|
|
// Fallback for modularized imports:
|
|
export default fr;
|