UNPKG

985 BJavaScriptView Raw
1import { formatDistance } from "./de/_lib/formatDistance.js";
2import { formatLong } from "./de/_lib/formatLong.js";
3import { formatRelative } from "./de/_lib/formatRelative.js";
4import { localize } from "./de/_lib/localize.js";
5import { match } from "./de/_lib/match.js";
6
7/**
8 * @category Locales
9 * @summary German locale.
10 * @language German
11 * @iso-639-2 deu
12 * @author Thomas Eilmsteiner [@DeMuu](https://github.com/DeMuu)
13 * @author Asia [@asia-t](https://github.com/asia-t)
14 * @author Van Vuong Ngo [@vanvuongngo](https://github.com/vanvuongngo)
15 * @author RomanErnst [@pex](https://github.com/pex)
16 * @author Philipp Keck [@Philipp91](https://github.com/Philipp91)
17 */
18export const de = {
19 code: "de",
20 formatDistance: formatDistance,
21 formatLong: formatLong,
22 formatRelative: formatRelative,
23 localize: localize,
24 match: match,
25 options: {
26 weekStartsOn: 1 /* Monday */,
27 firstWeekContainsDate: 4,
28 },
29};
30
31// Fallback for modularized imports:
32export default de;