pronouns in Slovenian. Slovenian has more personal pronouns and not all are currently covered in the RGL

This commit is contained in:
krasimir
2016-03-27 07:03:19 +00:00
parent b9b7984cfc
commit 9807837342
5 changed files with 20 additions and 5 deletions

View File

@@ -274,4 +274,16 @@ oper
mkAdv : Str -> Adv = \s -> lin Adv {s=s} ;
mkPron : (_,_,_,_,_,_ : Str) -> Gender -> Number -> Person -> Pron =
\nom,acc,gen,dat,loc,instr,g,n,p ->
lin Pron {s = table {
Nom => nom;
Acc => acc;
Gen => gen;
Dat => dat;
Loc => loc;
Instr=>instr
} ;
a = {g=g; n=n; p=p}
} ;
}