(Som) More phonological assimilation rules

This commit is contained in:
Inari Listenmaa
2019-09-30 15:40:09 +02:00
parent 0e4cedd144
commit ba308dcf95
2 changed files with 5 additions and 3 deletions
+4 -2
View File
@@ -515,8 +515,10 @@ oper
_ + ("i"|"e") => "ey" ;
_ => "ay" } ;
n : Str = case arag of {
_ + #v => "nn" ; -- n duplicates after vowel
_ => "n" } ;
_ + #v => "nn" ; -- n duplicates after vowel
_ + "r" => "r" ; -- Saeed p. 35: agreement marker n (1PL)
_ + "l" => "l" ; -- assimilates to stem final r or.
_ => "n" } ;
an : Str = case qaado of {
_ + "o" => "an" ; -- Allomorph for imperatives
_ => "in" } ;