ar-DZ.js 862 B

1234567891011121314151617181920212223242526272829
  1. import { formatDistance } from "./ar-DZ/_lib/formatDistance.js";
  2. import { formatLong } from "./ar-DZ/_lib/formatLong.js";
  3. import { formatRelative } from "./ar-DZ/_lib/formatRelative.js";
  4. import { localize } from "./ar-DZ/_lib/localize.js";
  5. import { match } from "./ar-DZ/_lib/match.js";
  6. /**
  7. * @category Locales
  8. * @summary Arabic locale (Algerian Arabic).
  9. * @language Algerian Arabic
  10. * @iso-639-2 ara
  11. * @author Badreddine Boumaza [@badre429](https://github.com/badre429)
  12. * @author Ahmed ElShahat [@elshahat](https://github.com/elshahat)
  13. */
  14. export const arDZ = {
  15. code: "ar-DZ",
  16. formatDistance: formatDistance,
  17. formatLong: formatLong,
  18. formatRelative: formatRelative,
  19. localize: localize,
  20. match: match,
  21. options: {
  22. weekStartsOn: 0 /* Sunday */,
  23. firstWeekContainsDate: 1,
  24. },
  25. };
  26. // Fallback for modularized imports:
  27. export default arDZ;