forked from GitHub/gf-core
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:
@@ -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 ;
|
||||
|
||||
Reference in New Issue
Block a user