Adaptation to multibyte characters

I’m trying to make Japanese strings file.
(Make from en.ini ja.ini)

But multi-byte string wasn’t read correctly.

[for example]
(Characters in the ini file -> Characters on the screen)
“あいうえお” -> “BDFHJ”

“あ”(code:3042) -> “B”(code:0042)
“い”(code:3044) -> “D”(code:0044)
“う”(code:3046) -> “F”(code:0046)
“え”(code:3048) -> “H”(code:0048)
“お”(code:304A) -> “J”(code:004A)

Is it solvable?

Fixed for the next version (v1.2.7).

Thank you!
I look forward to. :slight_smile: