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 9c17590a85
commit 50658443ea
6 changed files with 359 additions and 178 deletions
+5 -5
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
} ;