1 | import { formatDistance } from "./nl/_lib/formatDistance.js";
|
2 | import { formatLong } from "./nl/_lib/formatLong.js";
|
3 | import { formatRelative } from "./nl/_lib/formatRelative.js";
|
4 | import { localize } from "./nl/_lib/localize.js";
|
5 | import { match } from "./nl/_lib/match.js";
|
6 |
|
7 | /**
|
8 | * @category Locales
|
9 | * @summary Dutch locale.
|
10 | * @language Dutch
|
11 | * @iso-639-2 nld
|
12 | * @author Jorik Tangelder [@jtangelder](https://github.com/jtangelder)
|
13 | * @author Ruben Stolk [@rubenstolk](https://github.com/rubenstolk)
|
14 | * @author Lode Vanhove [@bitcrumb](https://github.com/bitcrumb)
|
15 | * @author Edo Rivai [@edorivai](https://github.com/edorivai)
|
16 | * @author Niels Keurentjes [@curry684](https://github.com/curry684)
|
17 | * @author Stefan Vermaas [@stefanvermaas](https://github.com/stefanvermaas)
|
18 | */
|
19 | export const nl = {
|
20 | code: "nl",
|
21 | formatDistance: formatDistance,
|
22 | formatLong: formatLong,
|
23 | formatRelative: formatRelative,
|
24 | localize: localize,
|
25 | match: match,
|
26 | options: {
|
27 | weekStartsOn: 1 /* Monday */,
|
28 | firstWeekContainsDate: 4,
|
29 | },
|
30 | };
|
31 |
|
32 | // Fallback for modularized imports:
|
33 | export default nl;
|