summaryrefslogtreecommitdiff
path: root/examples/phrasebook/GreetingsChi.gf
blob: 2d8194039f0ed19dc42bcd6b5e2e4e572630c424 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
concrete GreetingsChi of Greetings = 
  SentencesChi [Greeting,mkGreeting] ** 
  open (D = DictEngChi), 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 ;

}