WanaKanaJava
WanaKanaJava copied to clipboard
Little character mappings wrong
I think some of the little character mappings are wrong. It's my understanding that mappings prefixed with l indicate the little version of the following character. So for example, lya would map to ゃ, not りゃ.
At first glance, the following mappings would need to be fixed:
mRtoJ.put("la", "ら");
mRtoJ.put("li", "り");
mRtoJ.put("lu", "る");
mRtoJ.put("le", "れ");
mRtoJ.put("lo", "ろ");
mRtoJ.put("lya", "りゃ");
mRtoJ.put("lyi", "りぃ");
mRtoJ.put("lyu", "りゅ");
mRtoJ.put("lye", "りぇ");
mRtoJ.put("lyo", "りょ");
And the lwe mapping key should be lwa.