1
0
forked from GitHub/gf-rgl

Change solamiento to solamente in variables names in ParadigmsSpa. Reported by Moises.

This commit is contained in:
bringert
2007-10-17 13:59:31 +00:00
parent a52a8a2964
commit 9effae5e6c

View File

@@ -147,7 +147,7 @@ oper
-- One-place adjectives compared with "mas" need five forms in the worst
-- case (masc and fem singular, masc plural, adverbial).
mkA : (solo,sola,solos,solas,solamiento : Str) -> A ;
mkA : (solo,sola,solos,solas,solamente : Str) -> A ;
-- In the worst case, two separate adjectives are given:
-- the positive ("bueno"), and the comparative ("mejor").
@@ -431,11 +431,11 @@ oper
mkA = overload {
mkA : (util : Str) -> A = regA ;
mkA : (solo,sola,solos,solas,solamiento : Str) -> A = mk5A ;
mkA : (solo,sola,solos,solas,solamente : Str) -> A = mk5A ;
mkA : (bueno : A) -> (mejor : A) -> A = mkADeg ;
} ;
mk5A : (solo,sola,solos,solas, solamiento : Str) -> A ;
mk5A : (solo,sola,solos,solas, solamente : Str) -> A ;
regA : Str -> A ;
mkADeg : A -> A -> A ;
compADeg : A -> A ;