(self, code: str, translations: Dict[str, Dict[str, str]])
| 480 | """Locale implementation using tornado's CSV translation format.""" |
| 481 | |
| 482 | def __init__(self, code: str, translations: Dict[str, Dict[str, str]]) -> None: |
| 483 | self.translations = translations |
| 484 | super().__init__(code) |
| 485 | |
| 486 | def translate( |
| 487 | self, |