eliminated dependency of PhrasebookChi from DictionaryChi ; added 'make forApp' to compile what is needed for Phrasebook in App

This commit is contained in:
aarne
2014-05-06 20:09:21 +00:00
parent ee30bdc701
commit b6cbe2308b
4 changed files with 269 additions and 266 deletions

View File

@@ -1,32 +1,32 @@
concrete GreetingsChi of Greetings =
SentencesChi [Greeting,mkGreeting] **
open (D = DictionaryChi), ParadigmsChi, ResChi, Prelude in {
concrete GreetingsChi of Greetings =
SentencesChi [Greeting,mkGreeting] **
open ParadigmsChi, ResChi, Prelude in {
flags coding = utf8 ;
lin
GBye = D.bye_Interj ;
GCheers = D.cheers_Interj ;
GDamn = D.damn_Interj ;
GExcuse, GExcusePol = D.excuse_me_Interj ;
GGoodDay = D.hi_Interj ;
GGoodEvening = D.good_evening_Interj ;
GGoodMorning = D.good_morning_Interj ;
GGoodNight = D.good_night_Interj ;
GGoodbye = D.goodbye_Interj ;
GHello = D.hi_Interj ;
GHelp = mkInterj "帮助" ;
GHowAreYou = mkInterj "你好" ;
GLookOut = mkInterj "留意" ;
GNiceToMeetYou, GNiceToMeetYouPol = mkInterj "很高兴见到你" ;
GPleaseGive, GPleaseGivePol = mkInterj "请" ;
GSeeYouSoon = mkInterj "很快再见" ;
GSorry, GSorryPol = mkInterj "对不起" ;
GThanks = D.thanks_Interj ;
GTheCheck = mkInterj "检查" ;
GCongratulations = mkInterj "祝贺您" ;
GHappyBirthday = mkInterj "祝你生日快乐" ;
GGoodLuck = D.good_luck_Interj ;
GWhatTime = mkInterj "现在是什么时候" ;
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, GNiceToMeetYouPol = mkInterj "很高兴见到你" ;
GPleaseGive, GPleaseGivePol = mkInterj "请" ;
GSeeYouSoon = mkInterj "很快再见" ;
GSorry, GSorryPol = mkInterj "对不起" ;
GThanks = (mkInterj "谢谢" ) ;
GTheCheck = mkInterj "检查" ;
GCongratulations = mkInterj "祝贺您" ;
GHappyBirthday = mkInterj "祝你生日快乐" ;
GGoodLuck = (mkInterj "祝你好运" ) ;
GWhatTime = mkInterj "现在是什么时候" ;
}