forked from GitHub/gf-core
34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
concrete GreetingsChi of Greetings =
|
|
SentencesChi [Greeting,mkGreeting] **
|
|
open ParadigmsChi, ResChi, Prelude in {
|
|
|
|
flags coding = utf8 ;
|
|
|
|
lin
|
|
GBye = (mkInterj "再见" ) ;
|
|
GCheers = (mkInterj "干杯" ) ;
|
|
GDamn = (mkInterj "该死的" ) ;
|
|
GExcuse, GExcusePol = (mkInterj "原谅我" ) ;
|
|
GGoodDay = (mkInterj "你好" ) ;
|
|
GGoodEvening = (mkInterj "下午好" ) ;
|
|
GGoodMorning = (mkInterj "早上好" ) ;
|
|
GGoodNight = (mkInterj "晚安" ) ;
|
|
GGoodbye = (mkInterj "再见" ) ;
|
|
GHello = (mkInterj "你好" ) ;
|
|
GHelp = mkInterj "帮助" ;
|
|
GHowAreYou = mkInterj "你好吗" ;
|
|
GLookOut = mkInterj "留意" ;
|
|
GNiceToMeetYou = mkInterj "很高兴见到你" ;
|
|
GNiceToMeetYouPol = mkInterj "很高兴见到您" ;
|
|
GPleaseGive, GPleaseGivePol = mkInterj "请" ;
|
|
GSeeYouSoon = mkInterj "很快再见" ;
|
|
GSorry, GSorryPol = mkInterj "对不起" ;
|
|
GThanks = (mkInterj "谢谢" ) ;
|
|
GTheCheck = mkInterj "检查" ;
|
|
GCongratulations = mkInterj "祝贺您" ;
|
|
GHappyBirthday = mkInterj "祝你生日快乐" ;
|
|
GGoodLuck = (mkInterj "祝你好运" ) ;
|
|
GWhatTime = mkInterj "现在是什么时候" ;
|
|
|
|
}
|