index.js 950 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. * @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 Ismail Demirbilek [@dbtek]{@link https://github.com/dbtek}
  15. * @author İsmail Kayar [@ikayar]{@link https://github.com/ikayar}
  16. *
  17. *
  18. */
  19. var locale = {
  20. code: 'tr',
  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: 1
  31. }
  32. };
  33. export default locale;