1
0
forked from GitHub/gf-rgl

plural indefinite by default empty in Cat and Spa

This commit is contained in:
aarne
2010-05-28 14:35:31 +00:00
parent 69a28d0904
commit f5ab5ed562
2 changed files with 3 additions and 3 deletions

View File

@@ -36,9 +36,9 @@ oper
artIndef = \g,n,c -> case <n,c> of {
<Sg,CPrep P_de> => genForms ["d' un"] ["d' una"] ! g ;
<Pl,CPrep P_de> => genForms ["d' uns"] ["d' unes"] ! g ;
<Sg,_> => prepCase c ++ genForms "un" "una" ! g ;
<Pl,_> => prepCase c ++ genForms "uns" "unes" ! g
--- <Pl,CPrep P_de> => genForms ["d' uns"] ["d' unes"] ! g ;
<Pl,_> => prepCase c --- ++ genForms "uns" "unes" ! g --- take this as a determiner
} ;