custom.py 568 B

12345678910111213141516171819202122232425
  1. """
  2. cs custom locale file.
  3. """
  4. from __future__ import annotations
  5. translations = {
  6. "units": {"few_second": "pár vteřin"},
  7. # Relative time
  8. "ago": "{} zpět",
  9. "from_now": "za {}",
  10. "after": "{0} po",
  11. "before": "{0} zpět",
  12. # Ordinals
  13. "ordinal": {"one": ".", "two": ".", "few": ".", "other": "."},
  14. # Date formats
  15. "date_formats": {
  16. "LTS": "h:mm:ss",
  17. "LT": "h:mm",
  18. "L": "DD. M. YYYY",
  19. "LL": "D. MMMM, YYYY",
  20. "LLL": "D. MMMM, YYYY h:mm",
  21. "LLLL": "dddd, D. MMMM, YYYY h:mm",
  22. },
  23. }