From 4a2a5561626e8e599338313545d223f38d2e8c98 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Fri, 3 Jun 2022 15:45:27 +0300 Subject: [PATCH] (Est) Add all case forms to result of GerundCN/NP --- src/estonian/ExtendEst.gf | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/estonian/ExtendEst.gf b/src/estonian/ExtendEst.gf index 3149dc047..694e91dd8 100644 --- a/src/estonian/ExtendEst.gf +++ b/src/estonian/ExtendEst.gf @@ -301,8 +301,12 @@ concrete ExtendEst of Extend = GerundAdv vp = {s = infVPdefault vp InfDes} ; -- : VP -> CN -- publishing of the document (can get a determiner) - GerundCN vp = emptyCN ** {s = \\nf => infVPdefault vp InfMine} ; - + GerundCN vp = emptyCN ** { + s = \\nf => infVPdefault vp {stem = InfM ; suf = []} + ++ ine.s ! nf ; + } where { + ine : N = mkN "ine" "ise" "ist" "isesse" "iste" "isi" + } ; -- : VP -> NP -- publishing the document (by nature definite) GerundNP vp = MassNP (GerundCN vp) ;