custom.py 543 B

12345678910111213141516171819202122232425
  1. """
  2. it custom locale file.
  3. """
  4. from __future__ import annotations
  5. translations = {
  6. "units": {"few_second": "alcuni secondi"},
  7. # Relative Time
  8. "ago": "{0} fa",
  9. "from_now": "in {0}",
  10. "after": "{0} dopo",
  11. "before": "{0} prima",
  12. # Ordinals
  13. "ordinal": {"other": "°"},
  14. # Date formats
  15. "date_formats": {
  16. "LTS": "H:mm:ss",
  17. "LT": "H:mm",
  18. "L": "DD/MM/YYYY",
  19. "LL": "D MMMM YYYY",
  20. "LLL": "D MMMM YYYY [alle] H:mm",
  21. "LLLL": "dddd, D MMMM YYYY [alle] H:mm",
  22. },
  23. }