revised 200+ most frequent V2's in DictEngFin, leading to changes of patterns for most verbs.

This commit is contained in:
aarne
2013-03-30 10:49:41 +00:00
parent 00a789d624
commit c2f2fc66a7
6 changed files with 359 additions and 178 deletions

View File

@@ -327,9 +327,9 @@ oper
defaultStemEnding : SNForm -> Str = \c -> case c of {
0 => "" ;
1 => "" ;
2 => "a" ;
3 => "na" ;
1 => "i" ;
2 => "ia" ;
3 => "ina" ;
4 => "ii" ;
5 => "ie" ;
6 => "ia" ;
@@ -338,11 +338,11 @@ oper
9 => "ihi"
} ;
bindIfS : SNForm -> Str = \c -> case c of {
0|1 => [] ;
0 => [] ;
_ => BIND
} ;
bindColonIfS : SNForm -> Str = \c -> case c of {
0|1 => [] ;
0 => [] ;
_ => BIND ++ ":" ++ BIND
} ;