summaryrefslogtreecommitdiff
path: root/examples/phrasebook/GreetingsChi.gf
diff options
context:
space:
mode:
authoraarne <aarne@chalmers.se>2014-05-06 20:09:21 +0000
committeraarne <aarne@chalmers.se>2014-05-06 20:09:21 +0000
commit41d7f2dfafb5e94e89a0fe259ee203d014b5eabd (patch)
tree83105866d1900b7cd4486a79d8db242555487675 /examples/phrasebook/GreetingsChi.gf
parentd752167f5900033209d3400299e8170f2bb46bdf (diff)
eliminated dependency of PhrasebookChi from DictionaryChi ; added 'make forApp' to compile what is needed for Phrasebook in App
Diffstat (limited to 'examples/phrasebook/GreetingsChi.gf')
-rw-r--r--examples/phrasebook/GreetingsChi.gf54
1 files changed, 27 insertions, 27 deletions
diff --git a/examples/phrasebook/GreetingsChi.gf b/examples/phrasebook/GreetingsChi.gf
index ba08c52d9..38eb37366 100644
--- a/examples/phrasebook/GreetingsChi.gf
+++ b/examples/phrasebook/GreetingsChi.gf
@@ -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 "现在是什么时候" ;
}