mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-22 19:22:50 -06:00
correct form for inverted sentence for "u" in Dutch
This commit is contained in:
@@ -398,11 +398,11 @@ param
|
|||||||
Order = Main | Inv | Sub ;
|
Order = Main | Inv | Sub ;
|
||||||
|
|
||||||
oper
|
oper
|
||||||
vForm : Tense -> Number -> Person -> Order -> VForm = \t,n,p,o -> case <t,n,p> of {
|
vForm : Tense -> Gender -> Number -> Person -> Order -> VForm = \t,g,n,p,o -> case <t,n,p> of {
|
||||||
<Pres
|
<Pres
|
||||||
|Fut --# notpresent
|
|Fut --# notpresent
|
||||||
,Sg,P2> => case o of {
|
,Sg,P2> => case <o,g> of {
|
||||||
Inv => VPresSg1 ;
|
<Inv,Neutr> => VPresSg1 ; --- Neutr is a hack for familiar you, "je", in StructuralDut
|
||||||
_ => VPresSg2
|
_ => VPresSg2
|
||||||
} ;
|
} ;
|
||||||
<Pres
|
<Pres
|
||||||
@@ -554,7 +554,7 @@ param
|
|||||||
Sub => True ; -- glue prefix to verb
|
Sub => True ; -- glue prefix to verb
|
||||||
_ => False
|
_ => False
|
||||||
} ;
|
} ;
|
||||||
vform = vForm t agr.n agr.p o ;
|
vform = vForm t agr.g agr.n agr.p o ;
|
||||||
auxv = (auxVerb vp.s.aux).s ;
|
auxv = (auxVerb vp.s.aux).s ;
|
||||||
vperf = vp.s.s ! VPerf ;
|
vperf = vp.s.s ! VPerf ;
|
||||||
verb : Str * Str = case <t,a> of {
|
verb : Str * Str = case <t,a> of {
|
||||||
|
|||||||
@@ -103,7 +103,7 @@ concrete StructuralDut of Structural = CatDut, Prelude **
|
|||||||
why_IAdv = ss "waarom" ;
|
why_IAdv = ss "waarom" ;
|
||||||
without_Prep = mkPrep "zonder" ;
|
without_Prep = mkPrep "zonder" ;
|
||||||
with_Prep = mkPrep "met" ;
|
with_Prep = mkPrep "met" ;
|
||||||
youSg_Pron = mkPronoun "je" "je" "je" "jij" "jou" "je" "jouwe" Utr Sg P2 ;
|
youSg_Pron = mkPronoun "je" "je" "je" "jij" "jou" "je" "jouwe" Neutr Sg P2 ; --- Neutr as hack for familiarity
|
||||||
youPl_Pron = mkPronoun "jullie" "jullie" "je" "jullie" "jullie" "jullie" "uwe" Utr Pl P2 ;
|
youPl_Pron = mkPronoun "jullie" "jullie" "je" "jullie" "jullie" "jullie" "uwe" Utr Pl P2 ;
|
||||||
youPol_Pron = mkPronoun "u" "u" "uw" "u" "u" "uw" "uwe" Utr Sg P2 ;
|
youPol_Pron = mkPronoun "u" "u" "uw" "u" "u" "uw" "uwe" Utr Sg P2 ;
|
||||||
yes_Utt = ss "ja" ;
|
yes_Utt = ss "ja" ;
|
||||||
|
|||||||
Reference in New Issue
Block a user