custom.py 491 B

1234567891011121314151617181920212223
  1. """
  2. ja custom locale file.
  3. """
  4. from __future__ import annotations
  5. translations = {
  6. "units": {"few_second": "数秒"},
  7. # Relative time
  8. "ago": "{} 前に",
  9. "from_now": "今から {}",
  10. "after": "{0} 後",
  11. "before": "{0} 前",
  12. # Date formats
  13. "date_formats": {
  14. "LTS": "h:mm:ss A",
  15. "LT": "h:mm A",
  16. "L": "MM/DD/YYYY",
  17. "LL": "MMMM D, YYYY",
  18. "LLL": "MMMM D, YYYY h:mm A",
  19. "LLLL": "dddd, MMMM D, YYYY h:mm A",
  20. },
  21. }