custom.py 575 B

12345678910111213141516171819202122232425
  1. """
  2. en-gb custom locale file.
  3. """
  4. from __future__ import annotations
  5. translations = {
  6. "units": {"few_second": "a few seconds"},
  7. # Relative time
  8. "ago": "{} ago",
  9. "from_now": "in {}",
  10. "after": "{0} after",
  11. "before": "{0} before",
  12. # Ordinals
  13. "ordinal": {"one": "st", "two": "nd", "few": "rd", "other": "th"},
  14. # Date formats
  15. "date_formats": {
  16. "LTS": "HH:mm:ss",
  17. "LT": "HH:mm",
  18. "L": "DD/MM/YYYY",
  19. "LL": "D MMMM YYYY",
  20. "LLL": "D MMMM YYYY HH:mm",
  21. "LLLL": "dddd, D MMMM YYYY HH:mm",
  22. },
  23. }