tr.js 1014 B

12345678910111213141516171819202122232425262728293031323334
  1. import { formatDistance } from "./tr/_lib/formatDistance.js";
  2. import { formatLong } from "./tr/_lib/formatLong.js";
  3. import { formatRelative } from "./tr/_lib/formatRelative.js";
  4. import { localize } from "./tr/_lib/localize.js";
  5. import { match } from "./tr/_lib/match.js";
  6. /**
  7. * @category Locales
  8. * @summary Turkish locale.
  9. * @language Turkish
  10. * @iso-639-2 tur
  11. * @author Alpcan Aydın [@alpcanaydin](https://github.com/alpcanaydin)
  12. * @author Berkay Sargın [@berkaey](https://github.com/berkaey)
  13. * @author Fatih Bulut [@bulutfatih](https://github.com/bulutfatih)
  14. * @author Ismail Demirbilek [@dbtek](https://github.com/dbtek)
  15. * @author İsmail Kayar [@ikayar](https://github.com/ikayar)
  16. *
  17. *
  18. */
  19. export const tr = {
  20. code: "tr",
  21. formatDistance: formatDistance,
  22. formatLong: formatLong,
  23. formatRelative: formatRelative,
  24. localize: localize,
  25. match: match,
  26. options: {
  27. weekStartsOn: 1 /* Monday */,
  28. firstWeekContainsDate: 1,
  29. },
  30. };
  31. // Fallback for modularized imports:
  32. export default tr;