index.js 1014 B

1234567891011121314151617181920212223242526272829303132
  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. * @summary Turkish locale.
  10. * @language Turkish
  11. * @iso-639-2 tur
  12. * @author Alpcan Aydın [@alpcanaydin]{@link https://github.com/alpcanaydin}
  13. * @author Berkay Sargın [@berkaey]{@link https://github.com/berkaey}
  14. * @author Fatih Bulut [@bulutfatih]{@link https://github.com/bulutfatih}
  15. * @author Ismail Demirbilek [@dbtek]{@link https://github.com/dbtek}
  16. * @author İsmail Kayar [@ikayar]{@link https://github.com/ikayar}
  17. *
  18. *
  19. */
  20. var locale = {
  21. code: 'tr',
  22. formatDistance: formatDistance,
  23. formatLong: formatLong,
  24. formatRelative: formatRelative,
  25. localize: localize,
  26. match: match,
  27. options: {
  28. weekStartsOn: 1 /* Monday */,
  29. firstWeekContainsDate: 1
  30. }
  31. };
  32. export default locale;