1
0
forked from GitHub/gf-rgl

initialized Slovak (Slo) by cloning from Czech

This commit is contained in:
Aarne Ranta
2020-04-18 09:07:51 +02:00
parent 54a0863f48
commit 1eabf5c863
29 changed files with 1838 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
concrete AdjectiveSlo of Adjective = CatSlo ** open ResSlo, Prelude in {
lin
PositA a = adjFormsAdjective a ** {isPost = False} ;
AdAP ada ap = ap ** {s = \\g,n,c => ada.s ++ ap.s ! g ! n ! c} ;
ComplA2 a np =
let ap = adjFormsAdjective a
in
ap ** {
s = \\g,n,c => ap.s ! g ! n ! c ++ a.c.s ++ np.s ! a.c.c ;
isPost = True ;
} ;
UseA2 a = adjFormsAdjective a ** {isPost = False} ;
UseComparA a = adjFormsAdjective a ** {isPost = False} ; ---- TODO: this gives positive forms
AdvAP ap adv = ap ** {s = \\g,n,c => ap.s ! g ! n ! c ++ adv.s} ;
}