From 43574858704b11f0a816116a6554da716ff2b1bd Mon Sep 17 00:00:00 2001 From: h7x4 Date: Tue, 29 Apr 2025 13:58:25 +0200 Subject: [PATCH] =?UTF-8?q?lib/util/romaji=5Ftrx:=20add=20`=E3=80=9C`=20an?= =?UTF-8?q?d=20`=E3=82=9F`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/util/romaji_transliteration.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/util/romaji_transliteration.dart b/lib/util/romaji_transliteration.dart index 814453a..b27f45f 100644 --- a/lib/util/romaji_transliteration.dart +++ b/lib/util/romaji_transliteration.dart @@ -205,7 +205,8 @@ const Map hiragana_to_latin = { 'ぉ': 'xo', 'ゕ': 'xka', 'ゖ': 'xke', - 'ゎ': 'xwa' + 'ゎ': 'xwa', + 'ゟ': 'yori', }; const Map latin_to_hiragana = { @@ -477,6 +478,7 @@ const Map latin_to_hiragana = { '#,': '、', '#.': '。', '#/': '・', + '#~': '〜', }; bool _smallTsu(String for_conversion) => for_conversion == hiragana_small_tsu;