index.js 887 B

12345678910111213141516171819202122232425262728293031323334
  1. import formatDistance from "./_lib/formatDistance/index.js";
  2. import formatLong from "./_lib/formatLong/index.js";
  3. import formatRelative from "./_lib/formatRelative/index.js";
  4. import localize from "./_lib/localize/index.js";
  5. import match from "./_lib/match/index.js";
  6. /**
  7. * @type {Locale}
  8. * @category Locales
  9. *
  10. * @summary Hungarian locale.
  11. * @language Hungarian
  12. *
  13. * @iso-639-2 hun
  14. *
  15. * @author Pavlo Shpak [@pshpak]{@link https://github.com/pshpak}
  16. * @author Eduardo Pardo [@eduardopsll]{@link https://github.com/eduardopsll}
  17. * @author Zoltan Szepesi [@twodcube]{@link https://github.com/twodcube}
  18. */
  19. var locale = {
  20. code: 'hu',
  21. formatDistance: formatDistance,
  22. formatLong: formatLong,
  23. formatRelative: formatRelative,
  24. localize: localize,
  25. match: match,
  26. options: {
  27. weekStartsOn: 1
  28. /* Monday */
  29. ,
  30. firstWeekContainsDate: 4
  31. }
  32. };
  33. export default locale;