UNPKG

808 BJavaScriptView Raw
1import { formatDistance } from "./de/_lib/formatDistance.js";
2import { formatLong } from "./de/_lib/formatLong.js";
3import { formatRelative } from "./de/_lib/formatRelative.js";
4import { match } from "./de/_lib/match.js";
5
6// difference to 'de' locale
7import { localize } from "./de-AT/_lib/localize.js";
8
9/**
10 * @category Locales
11 * @summary German locale (Austria).
12 * @language German
13 * @iso-639-2 deu
14 * @author Christoph Tobias Stenglein [@cstenglein](https://github.com/cstenglein)
15 */
16export const deAT = {
17 code: "de-AT",
18 formatDistance: formatDistance,
19 formatLong: formatLong,
20 formatRelative: formatRelative,
21 localize: localize,
22 match: match,
23 options: {
24 weekStartsOn: 1 /* Monday */,
25 firstWeekContainsDate: 4,
26 },
27};
28
29// Fallback for modularized imports:
30export default deAT;