mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-13 06:49:31 -06:00
29 lines
722 B
Plaintext
29 lines
722 B
Plaintext
concrete GreetingsGer of Greetings = open Prelude in {
|
|
|
|
lincat
|
|
Greeting = SS ;
|
|
|
|
lin
|
|
GBye = ss "tschüß" ;
|
|
GCheers = ss "zum Wohl" ;
|
|
GDamn = ss "Teufel" ;
|
|
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 "trevligt att träffas" ;
|
|
GPleaseGive, GPleaseGivePol = ss "bitte" ;
|
|
GSeeYouSoon = ss "bis bald" ;
|
|
GSorry, GSorryPol = ss "Entschuldigung" ;
|
|
GThanks = ss "Danke" ;
|
|
GTheCheck = ss "die Rechnung" ;
|
|
|
|
}
|
|
|