mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-01 07:12:50 -06:00
fixes in the dictionaries
This commit is contained in:
@@ -163,5 +163,120 @@ lin FeatN2, FeatN = \n ->
|
||||
AFem => "(ж.р.)" ;
|
||||
ANeut => "(ср.р.)"
|
||||
} ;
|
||||
|
||||
FeatV = \v ->
|
||||
"<подлог>" ++
|
||||
case v.vtype of {
|
||||
VNormal => "" ;
|
||||
VMedial c => reflClitics ! c ;
|
||||
VPhrasal c => personalClitics ! c ! GSg Masc ! P3
|
||||
} ++
|
||||
v.s ! Imperf ! VPres Sg P3 ;
|
||||
FeatV2 = \v ->
|
||||
"<подлог>" ++
|
||||
case v.vtype of {
|
||||
VNormal => "" ;
|
||||
VMedial c => reflClitics ! c ;
|
||||
VPhrasal c => personalClitics ! c ! GSg Masc ! P3
|
||||
} ++
|
||||
v.s ! Imperf ! VPres Sg P3 ++
|
||||
v.c2.s ++
|
||||
"<допълнение>";
|
||||
FeatV3 = \v ->
|
||||
"<подлог>" ++
|
||||
case v.vtype of {
|
||||
VNormal => "" ;
|
||||
VMedial c => reflClitics ! c ;
|
||||
VPhrasal c => personalClitics ! c ! GSg Masc ! P3
|
||||
} ++
|
||||
v.s ! Imperf ! VPres Sg P3 ++
|
||||
v.c2.s ++
|
||||
"<арг1>"++
|
||||
v.c3.s ++
|
||||
"<арг2>";
|
||||
FeatV2V = \v ->
|
||||
"<подлог>" ++
|
||||
case v.vtype of {
|
||||
VNormal => "" ;
|
||||
VMedial c => reflClitics ! c ;
|
||||
VPhrasal c => personalClitics ! c ! GSg Masc ! P3
|
||||
} ++
|
||||
v.s ! Imperf ! VPres Sg P3 ++
|
||||
v.c2.s ++
|
||||
"<допълнение>"++
|
||||
v.c3.s ++
|
||||
"да" ++ "<глагол>";
|
||||
FeatV2S = \v ->
|
||||
"<подлог>" ++
|
||||
case v.vtype of {
|
||||
VNormal => "" ;
|
||||
VMedial c => reflClitics ! c ;
|
||||
VPhrasal c => personalClitics ! c ! GSg Masc ! P3
|
||||
} ++
|
||||
v.s ! Imperf ! VPres Sg P3 ++
|
||||
v.c2.s ++
|
||||
"<допълнение>"++
|
||||
v.c3.s ++
|
||||
"че" ++ "<изречение>";
|
||||
FeatV2Q = \v ->
|
||||
"<подлог>" ++
|
||||
case v.vtype of {
|
||||
VNormal => "" ;
|
||||
VMedial c => reflClitics ! c ;
|
||||
VPhrasal c => personalClitics ! c ! GSg Masc ! P3
|
||||
} ++
|
||||
v.s ! Imperf ! VPres Sg P3 ++
|
||||
v.c2.s ++
|
||||
"<допълнение>"++
|
||||
v.c3.s ++
|
||||
"<въпрос>";
|
||||
FeatV2A = \v ->
|
||||
"<подлог>" ++
|
||||
case v.vtype of {
|
||||
VNormal => "" ;
|
||||
VMedial c => reflClitics ! c ;
|
||||
VPhrasal c => personalClitics ! c ! GSg Masc ! P3
|
||||
} ++
|
||||
v.s ! Imperf ! VPres Sg P3 ++
|
||||
v.c2.s ++
|
||||
"<допълнение>"++
|
||||
"<прилагателно>";
|
||||
FeatVV = \v ->
|
||||
"<подлог>" ++
|
||||
case v.vtype of {
|
||||
VNormal => "" ;
|
||||
VMedial c => reflClitics ! c ;
|
||||
VPhrasal c => personalClitics ! c ! GSg Masc ! P3
|
||||
} ++
|
||||
v.s ! Imperf ! VPres Sg P3 ++
|
||||
case v.typ of {
|
||||
VVInf => "да" ++ "<глагол>";
|
||||
VVGerund => "<деепричастие>"
|
||||
};
|
||||
FeatVS = \v ->
|
||||
"<подлог>" ++
|
||||
case v.vtype of {
|
||||
VNormal => "" ;
|
||||
VMedial c => reflClitics ! c ;
|
||||
VPhrasal c => personalClitics ! c ! GSg Masc ! P3
|
||||
} ++
|
||||
v.s ! Imperf ! VPres Sg P3 ++
|
||||
"че" ++ "<изречение>";
|
||||
FeatVQ = \v ->
|
||||
"<подлог>" ++
|
||||
case v.vtype of {
|
||||
VNormal => "" ;
|
||||
VMedial c => reflClitics ! c ;
|
||||
VPhrasal c => personalClitics ! c ! GSg Masc ! P3
|
||||
} ++
|
||||
v.s ! Imperf ! VPres Sg P3 ++
|
||||
"<въпрос>";
|
||||
FeatVA = \v ->
|
||||
"<подлог>" ++
|
||||
case v.vtype of {
|
||||
VNormal => "" ;
|
||||
VMedial c => reflClitics ! c ;
|
||||
VPhrasal c => personalClitics ! c ! GSg Masc ! P3
|
||||
} ++
|
||||
v.s ! Imperf ! VPres Sg P3 ++
|
||||
"<прилагателно>";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user