forked from GitHub/gf-core
a couple of fixes in Ger
This commit is contained in:
@@ -16976,7 +16976,7 @@ lin hieroglyphic_A = variants {};
|
||||
lin hieroglyphics_N = variants {};
|
||||
lin higgledy_piggledy_A = variants {};
|
||||
lin higgledy_piggledy_Adv = variants {};
|
||||
lin high_A = mk3A "hoch" "höher" "höchste";
|
||||
lin high_A = mkA "hoch" "hoh" "höher" "höchste";
|
||||
lin high_Adv = variants {};
|
||||
lin high_class_A = variants {};
|
||||
lin high_falutin_A = variants {};
|
||||
|
||||
@@ -17493,7 +17493,7 @@ lin
|
||||
hobel_N = reg2N "Hobel" "Hobel" masculine ;
|
||||
hobelbank_N = reg2N "Hobelbank" "Hobelbänke" feminine ;
|
||||
hobelmaschine_N = reg2N "Hobelmaschine" "Hobelmaschinen" feminine ;
|
||||
hoch_A = mk3A "hoch" "höher" "höchste" ;
|
||||
hoch_A = mkA "hoch" "hoh" "höher" "höchste" ;
|
||||
hoch_N = reg2N "Hoch" "Hochs" neuter ;
|
||||
hochachtungsvoll_A = mk3A "hochachtungsvoll" "hochachtungsvoller" "hochachtungsvollste" ;
|
||||
hochbegabung_N = mkN "Hochbegabung" ;
|
||||
|
||||
@@ -195,4 +195,9 @@ concrete NounGer of Noun = CatGer ** open ResGer, MorphoGer, Prelude in {
|
||||
isMod = cn.isMod
|
||||
} ;
|
||||
|
||||
PossNP cn np = {
|
||||
s = \\a,n,c => cn.s ! a ! n ! c ++ np.s ! NPP CVonDat ;
|
||||
g = cn.g
|
||||
} ;
|
||||
|
||||
}
|
||||
|
||||
@@ -69,17 +69,18 @@ lin
|
||||
g = cn.g
|
||||
} ;
|
||||
|
||||
{-
|
||||
|
||||
DashCN noun1 noun2 = { -- type-checking
|
||||
s = \\n,c => noun1.s ! Sg ! Nom ++ "-" ++ noun2.s ! n ! c ;
|
||||
s = \\n,c => glue (noun1.s ! Sg ! Nom) (noun2.s ! n ! c) ;
|
||||
g = noun2.g
|
||||
} ;
|
||||
|
||||
GerundN v = { -- parsing
|
||||
s = \\n,c => v.s ! VPresPart ;
|
||||
s = \\n,c => v.s ! VInf False ; --- formalisieren, not formalisierung
|
||||
g = Neutr
|
||||
} ;
|
||||
|
||||
|
||||
{-
|
||||
GerundAP v = { -- beckoning
|
||||
s = \\agr => v.s ! VPresPart ;
|
||||
isPre = True
|
||||
|
||||
Reference in New Issue
Block a user