1
0
forked from GitHub/gf-core

reflexive NP in Scandinavian; things to fix to decide whether agreement comes from the subject or from the possessed noun

This commit is contained in:
aarne
2016-06-07 12:35:28 +00:00
parent 0340aebf06
commit 9a83e683a3
7 changed files with 89 additions and 5 deletions

View File

@@ -84,4 +84,18 @@ instance DiffDan of DiffScand = open CommonScand, Prelude in {
av_Prep = "af" ;
possPron : Number -> Person -> Number -> Gender -> Str = \sn,sb,on,og -> case <sn,sb,on,og> of {
<Sg,P1,Sg,Utr> => "min" ;
<Sg,P1,Sg,Neutr> => "mit" ;
<Sg,P1,Pl,_> => "mine" ;
<Sg,P2,Sg,Utr> => "din" ;
<Sg,P2,Sg,Neutr> => "dit" ;
<Sg,P2,Pl,_> => "dine" ;
<Pl,P1,_,_> => "vores" ;
<Pl,P2,_,_> => "jeres" ;
<_,_,Sg,Utr> => "sin" ;
<_,_,Sg,Neutr> => "sit" ;
<_,_,Pl,_> => "sine"
} ;
}