Russian: get rid of the Prepos2 case. Added an argument to Prepos instead to handle -y endings with the v and na prepositions. This saves us a few hundred lines of code. It's a bit pointless since the whole thing needs to be rewriten, but at least I'm getting familiar with the code.

This commit is contained in:
bjorn
2008-06-23 17:15:14 +00:00
parent 8cdad08ad9
commit a50c7e3a7c
4 changed files with 215 additions and 422 deletions

View File

@@ -19,7 +19,8 @@ flags coding=utf8 ; optimize=all ;
-- Some parameters, such as $Number$, are inherited from $ParamX$.
param
Gender = Masc | Fem | Neut ;
Case = Nom | Gen | Dat | Acc | Inst | Prepos | Prepos2 ; -- +++ MG_UR: new case Prepos2 introduced! +++
Case = Nom | Gen | Dat | Acc | Inst | Prepos PrepKind ;
PrepKind = PrepOther | PrepVNa;
Animacy = Animate | Inanimate ;
Voice = Act | Pass ;
Aspect = Imperfective | Perfective ;
@@ -292,8 +293,7 @@ oper sam: Refl=
Dat => "себе";
Acc => "себя";
Inst => "собой";
Prepos => "себе";
Prepos2 => "себе" -- +++ MG_UR: added +++
Prepos _ => "себе"
}
};