mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
ParadigmsSwe: mkA makes adjectives ending with a/e/o invariant (except for genitive)
This commit is contained in:
@@ -464,14 +464,20 @@ oper
|
||||
se + "dd" => se + "tt" ;
|
||||
pla + "tt" => pla + "tt" ;
|
||||
gla + "d" => gla + "tt" ;
|
||||
_ + ("a"|"e"|"o") => fin ;
|
||||
_ => fin + "t"
|
||||
} ;
|
||||
fina : Str = case fin of {
|
||||
unk@(? + ? + ? + _) + "e" + n@("l" | "n" | "r") => unk + n + "a" ;
|
||||
_ + ("a"|"e"|"o") => fin ;
|
||||
_ => fin + "a"
|
||||
}
|
||||
} ;
|
||||
comp : Bool = case fin of {
|
||||
_ + ("a"|"e"|"o") => True ;
|
||||
_ => False
|
||||
}
|
||||
in
|
||||
mk3A fin fint fina ;
|
||||
lin A {s = (mk3A fin fint fina).s ; isComp = comp} ;
|
||||
irregA ung yngre yngst =
|
||||
mk7A ung (ung + "t") (ung + "a") (ung + "a") yngre yngst (yngst+"a") ;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user