summaryrefslogtreecommitdiff
path: root/next-lib/src/turkish/NounTur.gf
diff options
context:
space:
mode:
authorkrasimir <krasimir@chalmers.se>2009-05-07 10:28:47 +0000
committerkrasimir <krasimir@chalmers.se>2009-05-07 10:28:47 +0000
commit95d8fd3be47992a408599fc4874553dd32326cba (patch)
treefd38683198fd4690cc4854567f7c990092de94c2 /next-lib/src/turkish/NounTur.gf
parentb0cbba9e0de788a3c3ff5f3819aa6c91b140fe9f (diff)
Turkish: scratch the NP category
Diffstat (limited to 'next-lib/src/turkish/NounTur.gf')
-rw-r--r--next-lib/src/turkish/NounTur.gf27
1 files changed, 27 insertions, 0 deletions
diff --git a/next-lib/src/turkish/NounTur.gf b/next-lib/src/turkish/NounTur.gf
new file mode 100644
index 000000000..d3e0528dc
--- /dev/null
+++ b/next-lib/src/turkish/NounTur.gf
@@ -0,0 +1,27 @@
+concrete NounTur of Noun = CatTur ** open ResTur, Prelude in {
+
+ flags optimize=all_subs ;
+
+ lin
+ DetCN det cn = {
+ s = \\c => det.s ++ cn.s ! det.n ! c ;
+ a = agrP3 det.n
+ } ;
+
+ DetQuant quant num = {
+ s = quant.s ++ num.s ;
+ n = num.n
+ } ;
+
+ NumSg = {s = []; n = Sg} ;
+ NumPl = {s = []; n = Pl} ;
+
+ DefArt = {
+ s = []
+ } ;
+ IndefArt = {
+ s = []
+ } ;
+
+ UseN n = n ;
+}