r2h2 fix m in valid position not account by r2h2

This commit is contained in:
UndeadMaelys
2022-05-04 21:38:52 +02:00
parent ff91c9ce0e
commit c5bbdd194c
2 changed files with 9 additions and 9 deletions

View File

@@ -35,9 +35,9 @@ vowel_table = {"a","e","i","o","u"}
symbol_vowel = {"","","","",""}
symbol_extending_vowel = {"","","","",""}
-- consonants
consonant_table = {"g","sh","r","ny","ch","n","y","f","t","k","w","l","p","b","d","h"}
symbol_consonant = {"","","","","","","","","","","","","","","",""}
symbol_extending_consonant = {"","","","","","","","","","","","","","","",""}
consonant_table = {"g","sh","r","ny","ch","n","y","f","t","k","w","l","p","b","d","h","m"}
symbol_consonant = {"","","","","","","","","","","","","","","","",""}
symbol_extending_consonant = {"","","","","","","","","","","","","","","","",""}
-- composites
composing_consonant_table = {"g","sh","r","ny","ch","m","y","f","t","k","w","l","p","b","d","h"}
symbol_composite = {
@@ -98,8 +98,8 @@ function convertToHeonian(text)
-- adjust i
if string.sub(text,i,i) == " " then
transcribed_text = transcribed_text .. " "
new_syllable = true
end
new_syllable = true
i = i + 1
pos = i
char_step = false