custom.py 476 B

12345678910111213141516171819202122
  1. """
  2. nn custom locale file.
  3. """
  4. from __future__ import annotations
  5. translations = {
  6. # Relative time
  7. "after": "{0} etter",
  8. "before": "{0} før",
  9. # Ordinals
  10. "ordinal": {"one": ".", "two": ".", "few": ".", "other": "."},
  11. # Date formats
  12. "date_formats": {
  13. "LTS": "HH:mm:ss",
  14. "LT": "HH:mm",
  15. "LLLL": "dddd Do MMMM YYYY HH:mm",
  16. "LLL": "Do MMMM YYYY HH:mm",
  17. "LL": "Do MMMM YYYY",
  18. "L": "DD.MM.YYYY",
  19. },
  20. }