custom.py 535 B

123456789101112131415161718192021222324
  1. """
  2. tr custom locale file.
  3. """
  4. from __future__ import annotations
  5. translations = {
  6. # Relative time
  7. "ago": "{} önce",
  8. "from_now": "{} içinde",
  9. "after": "{0} sonra",
  10. "before": "{0} önce",
  11. # Ordinals
  12. "ordinal": {"one": ".", "two": ".", "few": ".", "other": "."},
  13. # Date formats
  14. "date_formats": {
  15. "LTS": "h:mm:ss A",
  16. "LT": "h:mm A",
  17. "L": "MM/DD/YYYY",
  18. "LL": "MMMM D, YYYY",
  19. "LLL": "MMMM D, YYYY h:mm A",
  20. "LLLL": "dddd, MMMM D, YYYY h:mm A",
  21. },
  22. }