mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-03 00:02:50 -06:00
at last, proper possessive suffixes in Finnish Prep. This needs a parameter and vowel harmony: "opettajan mukaan" (according to the teacher), "meidän mukaamme" (according to us), "hänen jälkeensä" (after her).
This commit is contained in:
@@ -888,6 +888,11 @@ resource MorphoFin = ResFin ** open Prelude in {
|
||||
ase => ase
|
||||
} ;
|
||||
|
||||
guessHarmony : Str -> Harmony = \s -> case s of {
|
||||
_ + ("a" | "o" | "u" | "A" | "O" | "U") + _ => Back ;
|
||||
_ => Front
|
||||
} ;
|
||||
|
||||
vowHarmony : Str -> Str = \s -> case s of {
|
||||
_ + ("a" | "o" | "u" | "A" | "O" | "U") + _ => "a" ;
|
||||
_ => "ä"
|
||||
|
||||
Reference in New Issue
Block a user