Source: locale/ar-DZ/index.js

  1. import formatDistance from './_lib/formatDistance/index'
  2. import formatLong from './_lib/formatLong/index'
  3. import formatRelative from './_lib/formatRelative/index'
  4. import localize from './_lib/localize/index'
  5. import match from './_lib/match/index'
  6. /**
  7. * @type {Locale}
  8. * @category Locales
  9. * @summary Arabic locale (Modern Standard Arabic ).
  10. * @language Modern Standard Arabic (Algeria) [ar-dz]
  11. * @iso-639-2 ara
  12. * @author Badreddine Boumaza [@badre429]{@link https://github.com/badre429}
  13. * @author Ahmed ElShahat [@elshahat]{@link https://github.com/elshahat}
  14. */
  15. var locale = {
  16. code: 'ar-DZ',
  17. formatDistance: formatDistance,
  18. formatLong: formatLong,
  19. formatRelative: formatRelative,
  20. localize: localize,
  21. match: match,
  22. options: {
  23. weekStartsOn: 0 /* Sunday */,
  24. firstWeekContainsDate: 1
  25. }
  26. }
  27. export default locale