diff options
| author | krasimir <krasimir@chalmers.se> | 2008-11-24 13:27:33 +0000 |
|---|---|---|
| committer | krasimir <krasimir@chalmers.se> | 2008-11-24 13:27:33 +0000 |
| commit | 511c7eaa48b9764b211c4041f8890a099da00a1e (patch) | |
| tree | 49f637e0a2ad3ae46158dc50c057f99c6d298cb2 /next-lib/src/bulgarian/QuestionBul.gf | |
| parent | d34cc4671e4310092b7cebebc5942afa2ad7843a (diff) | |
add preposition "na" when the case is dative (QuestionBul)
Diffstat (limited to 'next-lib/src/bulgarian/QuestionBul.gf')
| -rw-r--r-- | next-lib/src/bulgarian/QuestionBul.gf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/next-lib/src/bulgarian/QuestionBul.gf b/next-lib/src/bulgarian/QuestionBul.gf index 1f11c7a03..9a02bf333 100644 --- a/next-lib/src/bulgarian/QuestionBul.gf +++ b/next-lib/src/bulgarian/QuestionBul.gf @@ -21,7 +21,7 @@ concrete QuestionBul of Question = CatBul ** open ResBul, Prelude in { } ; QuestSlash ip slash = - mkQuestion {s = \\qform => slash.c2.s ++ ip.s ! (RObj slash.c2.c) ! qform} + mkQuestion {s = \\qform => slash.c2.s ++ case slash.c2.c of {Dat=>"на";_=>[]} ++ ip.s ! (RObj slash.c2.c) ! qform} {s = slash.s ! (agrP3 ip.gn) } ; QuestIAdv iadv cl = mkQuestion iadv cl ; @@ -29,7 +29,7 @@ concrete QuestionBul of Question = CatBul ** open ResBul, Prelude in { QuestIComp icomp np = mkQuestion icomp (mkClause (np.s ! RSubj) np.a (predV verbBe)) ; - PrepIP p ip = {s = \\qform => p.s ++ ip.s ! RSubj ! qform} ; + PrepIP p ip = {s = \\qform => p.s ++ case p.c of {Dat=>"на";_=>[]} ++ ip.s ! RSubj ! qform} ; AdvIP ip adv = { s = \\role,qform => ip.s ! role ! qform ++ adv.s ; |
