mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-20 18:29:33 -06:00
23 lines
402 B
Plaintext
23 lines
402 B
Plaintext
--# -path=.:../romance:../abstract:../../prelude
|
|
|
|
concrete LangSpa of Lang =
|
|
RulesSpa,
|
|
ClauseSpa,
|
|
StructuralSpa,
|
|
BasicSpa,
|
|
TimeSpa,
|
|
CountrySpa
|
|
|
|
** open Prelude, ParadigmsSpa in {
|
|
|
|
lin
|
|
AdvDate d = prefixSS "el" d ;
|
|
AdvTime t = prefixSS ["a las"] t ;
|
|
NWeekday w = w ;
|
|
PNWeekday w = mkPN (w.s ! singular) w.g ;
|
|
|
|
PNCountry x = x ;
|
|
ANationality x = x ;
|
|
NLanguage x = x ;
|
|
}
|