summaryrefslogtreecommitdiff
path: root/next-lib/src/german
diff options
context:
space:
mode:
Diffstat (limited to 'next-lib/src/german')
-rw-r--r--next-lib/src/german/NounGer.gf7
1 files changed, 5 insertions, 2 deletions
diff --git a/next-lib/src/german/NounGer.gf b/next-lib/src/german/NounGer.gf
index 02252afbd..a25167d72 100644
--- a/next-lib/src/german/NounGer.gf
+++ b/next-lib/src/german/NounGer.gf
@@ -10,7 +10,7 @@ concrete NounGer of Noun = CatGer ** open ResGer, Prelude in {
} ;
DetNP det = {
- s = \\c => det.s ! Neutr ! c ; ---- genders
+ s = \\c => det.sp ! Neutr ! c ; ---- genders
a = agrP3 det.n ;
isPron = False
} ;
@@ -99,7 +99,10 @@ concrete NounGer of Noun = CatGer ** open ResGer, Prelude in {
Pl => \\_,_ => []
}
} ;
- sp = \\_,g,c => "ein" + pronEnding ! GSg g ! c ; ---- plural ; einer
+ sp = table {
+ Sg => \\g,c => "ein" + pronEnding ! GSg g ! c ;
+ Pl => \\_ => caselist "einige" "einige" "einigen" "einiger"
+ } ;
a = Strong
} ;