diff options
| author | krasimir <krasimir@chalmers.se> | 2008-11-26 14:43:05 +0000 |
|---|---|---|
| committer | krasimir <krasimir@chalmers.se> | 2008-11-26 14:43:05 +0000 |
| commit | d0116c395839cd53dd24cfe1cb26b3f64ddc9430 (patch) | |
| tree | 74665c6353429f714a973437fb49a7b80a1ac12a /next-lib/src/russian/SentenceRus.gf | |
| parent | 66785b20208f9ea2fca7b6ff3355cd8ce87636c3 (diff) | |
add Russian in next-lib
Diffstat (limited to 'next-lib/src/russian/SentenceRus.gf')
| -rw-r--r-- | next-lib/src/russian/SentenceRus.gf | 115 |
1 files changed, 115 insertions, 0 deletions
diff --git a/next-lib/src/russian/SentenceRus.gf b/next-lib/src/russian/SentenceRus.gf new file mode 100644 index 000000000..b0379d771 --- /dev/null +++ b/next-lib/src/russian/SentenceRus.gf @@ -0,0 +1,115 @@ + +--# -path=.:../abstract:../common:../../prelude + + +concrete SentenceRus of Sentence = CatRus ** open Prelude, ResRus in { + + flags optimize=all_subs ; coding=utf8 ; + + lin + + PredVP Ya tebyaNeVizhu = { s = \\b,clf => + let { + ya = Ya.s ! (case clf of { + ClInfinit => (mkPronForm Acc No NonPoss); + _ => (mkPronForm Nom No NonPoss) + }); + ne = case b of {Pos=>""; Neg=>"не"}; + vizhu = tebyaNeVizhu.s ! clf ! (pgNum Ya.g Ya.n)! Ya.p; + khorosho = tebyaNeVizhu.s2 ; + tebya = tebyaNeVizhu.s3 ! (pgen2gen Ya.g) ! Ya.n + } + in + if_then_else Str tebyaNeVizhu.negBefore + (ya ++ ne ++ vizhu ++ tebya ++ khorosho) + (ya ++ vizhu ++ ne ++ tebya ++ khorosho) + } ; + + + PredSCVP sc vp = { s = \\b,clf => + let { + ne = case b of {Pos=>""; Neg=>"не"}; + vizhu = vp.s ! clf ! (ASg Neut)! P3; + tebya = vp.s3 ! Neut ! Sg + } + in + if_then_else Str vp.negBefore + (sc.s ++ ne ++ vizhu ++ tebya) + (sc.s ++ vizhu ++ ne ++ tebya) + } ; +{- + SlashV2 ivan lubit = { s=\\b,clf => ivan.s ! PF Nom No NonPoss ++ + lubit.s! (getActVerbForm clf (pgen2gen ivan.g) ivan.n ivan.p) ; + s2=lubit.s2; c=lubit.c }; + + SlashVVV2 ivan khotet lubit = + { s=\\b,clf => ivan.s ! PF Nom No NonPoss ++ khotet.s! (getActVerbForm clf (pgen2gen ivan.g) ivan.n ivan.p) ++ lubit.s! VFORM Act VINF ; + s2=lubit.s2; + c=lubit.c }; +-} + AdvSlash slash adv = { + s = \\b,clf => slash.s ! b ! clf ++ adv.s ; + c = slash.c; + s2 = slash.s2; + } ; + + SlashPrep cl p = {s=cl.s; s2=p.s; c=p.c} ; + + --- AR 3/11/2007 + SlashVS ivan vidit tuUlubaeshsya = { + s=\\b,clf => ivan.s ! PF Nom No NonPoss ++ + vidit.s! (getActVerbForm clf (pgen2gen ivan.g) ivan.n ivan.p) ++ + [", что"] ++ tuUlubaeshsya.s ; + s2=tuUlubaeshsya.s2; + c=tuUlubaeshsya.c + } ; + + + + ImpVP inf = {s = \\pol, g,n => + let + dont = case pol of { + Neg => "не" ; + _ => [] + } + in + dont ++ inf.s ! ClImper ! (gNum g n )!P2 ++ + inf.s2++inf.s3!g!n + } ; + + EmbedS s = {s = "что" ++ s.s} ; + -- In Russian "Whether you go" transformed in "go whether you": + EmbedQS qs = {s = qs.s ! QIndir} ; + EmbedVP vp = {s = vp.s2 ++ vp.s!ClInfinit!(ASg Masc) !P3 ++ vp.s3!Masc!Sg} ; + + UseCl t p cl = {s = case t.t of { + Cond => cl.s! p.p ! ClCondit ; --# notpresent + Pres => cl.s! p.p ! ClIndic Present t.a ; ---- AR work-around 13/12/2007 + _ => cl.s! p.p ! ClIndic (getTense t.t) t.a}}; + + UseQCl t p qcl= {s = case t.t of { + Cond => qcl.s! p.p ! ClCondit ; --# notpresent + Pres => qcl.s! p.p ! ClIndic Present t.a ; + _ => qcl.s!p.p! ClIndic (getTense t.t) t.a }}; + + UseRCl t p rcl ={s = \\gn,c,anim => case t.t of { + Cond => [", "] ++ rcl.s! p.p ! ClCondit ! gn !c !anim ; --# notpresent + Pres => [", "] ++ rcl.s! p.p ! ClIndic Present t.a !gn !c !anim; + _ => [", "] ++ rcl.s! p.p ! ClIndic (getTense t.t) t.a !gn !c !anim}}; + + UseSlash t p cl = { + s = case t.t of { + Cond => cl.s! p.p ! ClCondit ; --# notpresent + Pres => cl.s! p.p ! ClIndic Present t.a ; + _ => cl.s! p.p ! ClIndic (getTense t.t) t.a + } ; + s2 = cl.s2 ; + c = cl.c + }; + + + AdvS a s = {s = a.s ++ "," ++ s.s} ; ---- AR 19/6/2007 + + +} + |
