From c7984536377c9274fe7823fc1211ecb966eb2547 Mon Sep 17 00:00:00 2001 From: dusk Date: Mon, 19 Feb 2024 19:29:24 +0100 Subject: [PATCH] Add japanese ellipsis to japanese chars --- src/orig.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/orig.py b/src/orig.py index 8b91aeb..fde14ae 100755 --- a/src/orig.py +++ b/src/orig.py @@ -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 … ]