te.js 748 B

12345678910111213141516171819202122232425262728
  1. import { formatDistance } from "./te/_lib/formatDistance.js";
  2. import { formatLong } from "./te/_lib/formatLong.js";
  3. import { formatRelative } from "./te/_lib/formatRelative.js";
  4. import { localize } from "./te/_lib/localize.js";
  5. import { match } from "./te/_lib/match.js";
  6. /**
  7. * @category Locales
  8. * @summary Telugu locale
  9. * @language Telugu
  10. * @iso-639-2 tel
  11. * @author Kranthi Lakum [@kranthilakum](https://github.com/kranthilakum)
  12. */
  13. export const te = {
  14. code: "te",
  15. formatDistance: formatDistance,
  16. formatLong: formatLong,
  17. formatRelative: formatRelative,
  18. localize: localize,
  19. match: match,
  20. options: {
  21. weekStartsOn: 0 /* Sunday */,
  22. firstWeekContainsDate: 1,
  23. },
  24. };
  25. // Fallback for modularized imports:
  26. export default te;