custom.py 555 B

12345678910111213141516171819202122232425
  1. """
  2. fr custom locale file.
  3. """
  4. from __future__ import annotations
  5. translations = {
  6. "units": {"few_second": "quelques secondes"},
  7. # Relative Time
  8. "ago": "il y a {0}",
  9. "from_now": "dans {0}",
  10. "after": "{0} après",
  11. "before": "{0} avant",
  12. # Ordinals
  13. "ordinal": {"one": "er", "other": "e"},
  14. # Date formats
  15. "date_formats": {
  16. "LTS": "HH:mm:ss",
  17. "LT": "HH:mm",
  18. "LLLL": "dddd D MMMM YYYY HH:mm",
  19. "LLL": "D MMMM YYYY HH:mm",
  20. "LL": "D MMMM YYYY",
  21. "L": "DD/MM/YYYY",
  22. },
  23. }