German V3 default without preposition is now Dat+Acc, not Acc+Dat - in conformance with ditransitives in other languages

This commit is contained in:
aarne
2015-10-15 15:08:25 +00:00
parent a3bc2c4cf0
commit 92b99935f3

View File

@@ -286,11 +286,11 @@ mkV2 : overload {
-- Three-place (ditransitive) verbs need two prepositions, of which
-- the first one or both can be absent.
accdatV3 : V -> V3 ; -- geben + dat + acc
dirV3 : V -> Prep -> V3 ; -- senden + acc + nach
accdatV3 : V -> V3 ; -- geben + dat + acc (no prepositions)
dirV3 : V -> Prep -> V3 ; -- senden + acc + nach (preposition on second arg)
mkV3 : overload {
mkV3 : V -> V3 ; -- geben + acc + dat
mkV3 : V -> V3 ; -- geben + dat + acc
mkV3 : V -> Prep -> Prep -> V3 ; -- sprechen + mit + über
} ;