custom.py 445 B

12345678910111213141516171819202122
  1. """
  2. fo custom locale file.
  3. """
  4. from __future__ import annotations
  5. translations = {
  6. # Relative time
  7. "after": "{0} aftaná",
  8. "before": "{0} áðrenn",
  9. # Ordinals
  10. "ordinal": {"other": "."},
  11. # Date formats
  12. "date_formats": {
  13. "LTS": "HH:mm:ss",
  14. "LT": "HH:mm",
  15. "LLLL": "dddd D. MMMM, YYYY HH:mm",
  16. "LLL": "D MMMM YYYY HH:mm",
  17. "LL": "D MMMM YYYY",
  18. "L": "DD/MM/YYYY",
  19. },
  20. }