1
0
forked from GitHub/gf-core

constants for Chi negation words to support Pinyin

This commit is contained in:
aarne
2015-07-19 09:40:59 +00:00
parent 2c61609344
commit b3acc4d4c3
2 changed files with 4 additions and 4 deletions

View File

@@ -14,8 +14,8 @@ concrete QuestionChi of Question = CatChi **
v = cl.vp.verb ;
verb = case a of {
APlain => v.s ++ v.neg ++ v.sn ;
APerf => v.s ++ "不" ++ v.sn ++ v.pp ;
ADurStat => v.s ++ "不" ++ v.sn ;
APerf => v.s ++ neg_s ++ v.sn ++ v.pp ;
ADurStat => v.s ++ neg_s ++ v.sn ;
ADurProg => v.dp ++ v.neg ++ v.dp ++ v.sn ; -- mei or bu
AExper => v.s ++ v.neg ++ v.sn ++ v.ep
}

View File

@@ -154,8 +154,8 @@ oper
} ;
Neg => table {
APlain => v.neg ++ v.sn ; --- neg?
APerf => "" ++ v.sn ++ v.pp ;
ADurStat => "" ++ v.sn ;
APerf => "" ++ v.sn ++ v.pp ;
ADurStat => "" ++ v.sn ;
ADurProg => v.neg ++ v.dp ++ v.sn ; -- mei or bu
AExper => v.neg ++ v.sn ++ v.ep
}