Skip to content

Commit c3ad015

Browse files
exhumaavian2
authored andcommitted
Fixed japanese kana replacements
ち and チ "ti" should be "chi" し and シ "si" should be "shi" つ and ツ "tu" should be "tsu"
1 parent e556a6f commit c3ad015

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

unidecode/x30.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
'go', # 0x54
8787
'sa', # 0x55
8888
'za', # 0x56
89-
'si', # 0x57
89+
'shi', # 0x57
9090
'zi', # 0x58
9191
'su', # 0x59
9292
'zu', # 0x5a
@@ -96,10 +96,10 @@
9696
'zo', # 0x5e
9797
'ta', # 0x5f
9898
'da', # 0x60
99-
'ti', # 0x61
99+
'chi', # 0x61
100100
'di', # 0x62
101-
'tu', # 0x63
102-
'tu', # 0x64
101+
'tsu', # 0x63
102+
'tsu', # 0x64
103103
'du', # 0x65
104104
'te', # 0x66
105105
'de', # 0x67
@@ -182,7 +182,7 @@
182182
'go', # 0xb4
183183
'sa', # 0xb5
184184
'za', # 0xb6
185-
'si', # 0xb7
185+
'shi', # 0xb7
186186
'zi', # 0xb8
187187
'su', # 0xb9
188188
'zu', # 0xba
@@ -192,10 +192,10 @@
192192
'zo', # 0xbe
193193
'ta', # 0xbf
194194
'da', # 0xc0
195-
'ti', # 0xc1
195+
'chi', # 0xc1
196196
'di', # 0xc2
197-
'tu', # 0xc3
198-
'tu', # 0xc4
197+
'tsu', # 0xc3
198+
'tsu', # 0xc4
199199
'du', # 0xc5
200200
'te', # 0xc6
201201
'de', # 0xc7

0 commit comments

Comments
 (0)