Better smart paradigms for diphthong verbs ending in -er and nouns ending in n

In BeschSpa: Fixed bugs in regAlternV and added regAlternVEr. Now the two-place constructor mkN "mostrar" "muestro" now works also for verbs in -er conjugation. (Not for -ir though, they are more irregular.)
In MorphoSpa: Added smart paradigms for nouns with alternation "jardín" "jardines". Now they only need one form.
In LexiconSpa: Corrected Paris to París.
This commit is contained in:
inari.listenmaa
2013-03-05 15:55:27 +00:00
parent c77412d35b
commit dc56fedfa5
4 changed files with 103 additions and 16 deletions

View File

@@ -380,7 +380,12 @@ oper
vtyp = VHabere
} ;
regAltV x y = verboV (regAlternV x y) ;
regAltV x y = case x of {
_ + "ar" => verboV (regAlternV x y) ;
_ => verboV (regAlternVEr x y)
} ;
mk2V2 v p = {s = v.s ; vtyp = v.vtyp ; c2 = p ; lock_V2 = <>} ;
dirV2 v = mk2V2 v accusative ;