Add japanese ellipsis to japanese chars

This commit is contained in:
Dusk 2024-02-19 19:29:24 +01:00
parent c5511c7c0c
commit c798453637
1 changed files with 2 additions and 1 deletions

View File

@ -16,7 +16,8 @@ def line_should_be_translated(line: str) -> bool:
(0x30A0, 0x30FF), # Katakana
(0xFF00, 0xFFEF), # Full-width Roman characters and symbols
(0x3000, 0x303F), # CJK symbols and punctuation (including 「」)
(8220, 8220), # The character “
(0x201c, 0x201c), # The character “
(0x2026, 0x2026), # The character …
]