From fc008c963194c45eaae042fafef414512012e08f Mon Sep 17 00:00:00 2001 From: "andrea.christina.unger" Date: Wed, 18 Nov 2015 16:07:44 +0000 Subject: [PATCH] fix Dutch mkVP : CN -> VP --- lib/src/dutch/VerbDut.gf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/src/dutch/VerbDut.gf b/lib/src/dutch/VerbDut.gf index f9cdd94cc..b8eb08f83 100644 --- a/lib/src/dutch/VerbDut.gf +++ b/lib/src/dutch/VerbDut.gf @@ -75,7 +75,9 @@ concrete VerbDut of Verb = CatDut ** open Prelude, ResDut in { UseCopula = predV zijn_V; - CompCN cn = {s = \\a => cn.s ! Strong ! NF a.n Nom} ; + CompCN cn = {s = \\a => case a.n of { + Sg => "een" ++ cn.s ! Strong ! NF Sg Nom ; + Pl => cn.s ! Strong ! NF Pl Nom }} ; CompAP ap = {s = \\_ => ap.s ! APred} ; CompNP np = {s = \\_ => np.s ! NPNom} ; CompAdv a = {s = \\_ => a.s} ;