1
0
forked from GitHub/gf-core

Catalan added to wide coverage translator. TerminologyCat, ExtensionsCat, ConstructionsCat, and DocumentationCatFunctor need changes of Spanish words to Catalan ones, and also some general checks.

This commit is contained in:
aarne
2014-12-03 08:46:21 +00:00
parent 540a174c20
commit 508ed8d11c
10 changed files with 624 additions and 6 deletions

View File

@@ -131,7 +131,8 @@ oper
mkPN : overload {
mkPN : (Anna : Str) -> PN ; -- feminine for "-a", otherwise masculine
mkPN : (Pilar : Str) -> Gender -> PN -- force gender
mkPN : (Pilar : Str) -> Gender -> PN ; -- force gender
mkPN : N -> PN ;
} ;
@@ -477,7 +478,8 @@ oper
mkPN = overload {
mkPN : (Anna : Str) -> PN = regPN ;
mkPN : (Pilar : Str) -> Gender -> PN = mk2PN
mkPN : (Pilar : Str) -> Gender -> PN = mk2PN ;
mkPN : N -> PN = \n -> lin PN {s = n.s ! Sg ; g = n.g} ;
} ;
mk2PN : Str -> Gender -> PN ; -- Joan
regPN : Str -> PN ; -- feminine for "-a", otherwise masculine