summaryrefslogtreecommitdiff
path: root/examples/phrasebook/GreetingsGer.gf
blob: f68f5ad152031cef994ca696a41bf137ea7f9136 (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
--# -path=.:abstract:prelude:german:api:common
concrete GreetingsGer of Greetings = open Prelude in {

lincat 
  Greeting = SS ;

lin 
  GBye = ss "tschüß" ;
  GCheers = ss "zum Wohl" ;
  GDamn = ss "verdammt" ;
  GExcuse, GExcusePol = ss "Entschuldigung" ;
  GGoodDay = ss "guten Tag" ;
  GGoodEvening = ss "guten Abend" ;
  GGoodMorning = ss "guten Morgen" ;
  GGoodNight = ss "gute Nacht" ;
  GGoodbye = ss "auf Wiedersehen" ;
  GHello = ss "Hallo" ;
  GHelp = ss "Hilfe" ;
  GHowAreYou = ss "wie geht's" ;
  GLookOut = ss "Achtung" ;
  GNiceToMeetYou = ss "nett, Sie zu treffen" ;
  GPleaseGive, GPleaseGivePol = ss "bitte" ;
  GSeeYouSoon = ss "bis bald" ;
  GSorry, GSorryPol = ss "Entschuldigung" ;
  GThanks = ss "Danke" ;
  GTheCheck = ss "die Rechnung" ;
  GCongratulations = ss "herzlichen Glückwunsch";
  GHappyBirthday = ss "alles Gute zum Geburtstag" ;
  GGoodLuck = ss "viel Glück" ; 

}