Prevent P-SH from being rendered as PS-H
authorLanius Trolling <lanius@laniustrolling.dev>
Mon, 1 Aug 2022 17:01:17 +0000 (13:01 -0400)
committerLanius Trolling <lanius@laniustrolling.dev>
Mon, 1 Aug 2022 17:01:17 +0000 (13:01 -0400)
src/main/kotlin/info/mechyrdia/lore/tylan_language.kt

index 1081507e270531e3322ca52ce5a1abc7dd3cf948..56c59d0495b8d641589b759a13b5e86c590bb89e 100644 (file)
@@ -15,15 +15,16 @@ object TylanAlphabet {
                Regex("y") to "N",
                Regex("[qw-z]") to "",
                
+               Regex("ch") to "C",
+               Regex("dh") to "D",
+               Regex("sh") to "S",
+               Regex("th") to "T",
+               
                Regex("bs") to "B",
                Regex("gs") to "G",
                Regex("ks") to "K",
                Regex("ps") to "P",
                
-               Regex("ch") to "C",
-               Regex("dh") to "D",
-               Regex("sh") to "S",
-               Regex("th") to "T",
                Regex("ff") to "F",
                Regex("fv") to "V",
                Regex("hj") to "J",