1234567891011121314151617181920212223242526272829 |
- import { formatDistance } from "./pt/_lib/formatDistance.js";
- import { formatLong } from "./pt/_lib/formatLong.js";
- import { formatRelative } from "./pt/_lib/formatRelative.js";
- import { localize } from "./pt/_lib/localize.js";
- import { match } from "./pt/_lib/match.js";
- /**
- * @category Locales
- * @summary Portuguese locale.
- * @language Portuguese
- * @iso-639-2 por
- * @author Dário Freire [@dfreire](https://github.com/dfreire)
- * @author Adrián de la Rosa [@adrm](https://github.com/adrm)
- */
- export const pt = {
- code: "pt",
- formatDistance: formatDistance,
- formatLong: formatLong,
- formatRelative: formatRelative,
- localize: localize,
- match: match,
- options: {
- weekStartsOn: 1 /* Monday */,
- firstWeekContainsDate: 4,
- },
- };
- // Fallback for modularized imports:
- export default pt;
|