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

@@ -92,4 +92,20 @@ instance DiffNor of DiffScand = open CommonScand, Prelude in {
hur_IAdv = {s = "hvor"} ;
av_Prep = "av" ;
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,Sg,Utr> => "vår" ;
<Pl,P1,Sg,Neutr> => "vårt" ;
<Pl,P1,Pl,_> => "våre" ;
<Pl,P2,_,_> => "deres" ;
<_,_,Sg,Utr> => "sin" ;
<_,_,Sg,Neutr> => "sit" ;
<_,_,Pl,_> => "sine"
} ;
}