Source: locale/tr/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 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 /* Monday */,
  28. firstWeekContainsDate: 1
  29. }
  30. }
  31. export default locale