1
0
forked from GitHub/gf-rgl
This commit is contained in:
lizazim
2015-01-07 23:44:49 +00:00
parent 60807dc830
commit 737809fe98
9 changed files with 202 additions and 106 deletions
+6 -4
View File
@@ -13,12 +13,14 @@ flags coding = utf8 ;
} ;
VocPres => case utt.type of {
ImpPolite => voc.s ! Resp ++ "、" ++ pconj.s ++ utt.s ! Wa ! Resp ;
Imper => voc.s ! Plain ++ "、" ++ pconj.s ++ utt.s ! Wa ! Plain ;
NoImp => voc.s ! Plain ++ "、" ++ pconj.s ++ utt.s ! Wa ! Plain
(Imper|NoImp) => voc.s ! Resp ++ "、" ++ pconj.s ++ utt.s ! Wa ! Resp
-- 1) change default style here
} ;
VocAbs => case utt.type of {
(Imper|ImpPolite) => voc.s ! Plain ++ pconj.s ++ utt.s ! Wa ! Plain ;
NoImp => voc.s ! Plain ++ pconj.s ++ utt.s ! Wa ! Plain
(Imper|ImpPolite) => voc.s ! Resp ++ pconj.s ++ utt.s ! Wa ! Resp ;
-- 2) here
NoImp => voc.s ! Resp ++ pconj.s ++ utt.s ! Wa ! Resp
-- 3) and here
}
}
} ;