summaryrefslogtreecommitdiff
path: root/next-lib/src/turkish/CatTur.gf
diff options
context:
space:
mode:
authorkrasimir <krasimir@chalmers.se>2009-03-27 08:43:43 +0000
committerkrasimir <krasimir@chalmers.se>2009-03-27 08:43:43 +0000
commit587549a871b86559c3e69b399e56a73e708dfd44 (patch)
treeb4ae65b57752c3f0801d63ddc14f9f586fbf420e /next-lib/src/turkish/CatTur.gf
parent5ced40f789bc8ef4ec824e6dca4aeb856bf5eac9 (diff)
some fragments of Turkish noun morphology
Diffstat (limited to 'next-lib/src/turkish/CatTur.gf')
-rw-r--r--next-lib/src/turkish/CatTur.gf6
1 files changed, 4 insertions, 2 deletions
diff --git a/next-lib/src/turkish/CatTur.gf b/next-lib/src/turkish/CatTur.gf
index 9de9db5c9..8b7dcd394 100644
--- a/next-lib/src/turkish/CatTur.gf
+++ b/next-lib/src/turkish/CatTur.gf
@@ -5,9 +5,11 @@ concrete CatTur of Cat = CommonX ** open ResTur, Prelude in {
lincat
-- Noun
- NP, Pron = {s : Case => Str ; a : Agr} ;
+ NP = {s : Case => Str ; a : Agr} ;
+ Pron = ResTur.Pron ;
-- Open lexical classes, e.g. Lexicon
V, VS, VQ, VA = Verb ;
- N = {s : Number => Case => Str} ;
+ N = Noun ;
+ N2 = Noun ;
}