summaryrefslogtreecommitdiff
path: root/next-lib/src/turkish/NounTur.gf
diff options
context:
space:
mode:
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 ;
+}