move UseDAP, UseDAPMasc, UseDAPFem to the RGL and implement it for several new languages

This commit is contained in:
krangelov
2021-04-27 18:00:54 +02:00
parent 156e193d47
commit 9d657a6f24
17 changed files with 182 additions and 7 deletions
+14
View File
@@ -101,4 +101,18 @@ lin
ICompAP ap = {s = \\agr => "hoe" ++ ap.s ! agr ! APred} ;
IAdvAdv adv = {s = "hoe" ++ adv.s} ;
lin
UseDAP dap = dap ** {
s = \\_ => dap.sp ! Neutr ;
a = agrP3 dap.n ;
isPron = False
} ;
UseDAPMasc, UseDAPFem = \dap -> dap ** {
s = \\_ => dap.sp ! Utr ;
a = agrP3 dap.n ;
isPron = False
} ;
}