summaryrefslogtreecommitdiff
path: root/examples/phrasebook/GreetingsCat.gf
blob: 4ee32d333d92b38d5e781f64bf653a7e78c1a34a (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
32
33
concrete GreetingsCat of Greetings = open Prelude in {

lincat 
  Greeting = SS ;

lin 
  GBye = ss "adéu" ;
  GCheers = ss "salut" ;
  GDamn = ss "merda" ;
  GExcuse = ss "perdona" ;
  GExcusePol = ss ("perdoni" | "disculpi") ;
  GCongratulations = ss "felicitats" ;
  GHappyBirthday = ss "feliç aniversari" ;
  GGoodLuck = ss "sort" ;
  GGoodDay = ss "bon dia" ;
  GGoodEvening = ss "bona tarda" ;
  GGoodMorning = ss "bon dia" ;
  GGoodNight = ss "bona nit" ;
  GGoodbye = ss "a reveure" ;
  GHello = ss "hola" ;
  GHelp = ss "socors" ;
  GHowAreYou = ss "què tal" ;
  GLookOut = ss "compte" ;
  GNiceToMeetYou = ss "encantat de conèixer-lo" ; -- make distinction Masc/Fem
  GPleaseGive = ss "si et plau" ;
  GPleaseGivePol = ss "si us plau" ;
  GSeeYouSoon = ss "fins aviat" ; 
  GSorry = ss "perdoni" ;
  GSorryPol = ss "em sap greu" ; 
  GThanks = ss "gràcies" ;
  GTheCheck = ss "el compte" ;

}