custom.py 539 B

12345678910111213141516171819202122232425
  1. """
  2. nl custom locale file.
  3. """
  4. from __future__ import annotations
  5. translations = {
  6. "units": {"few_second": "enkele seconden"},
  7. # Relative time
  8. "ago": "{} geleden",
  9. "from_now": "over {}",
  10. "after": "{0} later",
  11. "before": "{0} eerder",
  12. # Ordinals
  13. "ordinal": {"other": "e"},
  14. # Date formats
  15. "date_formats": {
  16. "L": "DD-MM-YYYY",
  17. "LL": "D MMMM YYYY",
  18. "LLL": "D MMMM YYYY HH:mm",
  19. "LLLL": "dddd D MMMM YYYY HH:mm",
  20. "LT": "HH:mm",
  21. "LTS": "HH:mm:ss",
  22. },
  23. }