1
0
forked from GitHub/gf-core
Files
gf-core/examples/phrasebook/GreetingsDan.gf
2010-05-14 19:40:27 +00:00

32 lines
1010 B
Plaintext

concrete GreetingsDan of Greetings = open Prelude in {
lincat
Greeting = SS ;
lin
GBye = ss "hej hej" ; -- not google translate
GCheers = ss "skål" ;
GDamn = ss "satans" ; -- X
GExcuse, GExcusePol = ss "undskyld mig" ;
GGoodDay = ss "god dag" ;
GGoodEvening = ss "god aften" ;
GGoodMorning = ss "god morgen" ;
GGoodNight = ss "godnat" ;
GGoodbye = ss "farvel" ;
GHello = ss "hej" ;
GHelp = ss "hjælp" ;
GHowAreYou = ss "hvordan har du det" ;
GLookOut = ss "pas på" ;
GNiceToMeetYou, GNiceToMeetYouPol = ss "hyggeligt at møde dig" ; -- more common than rart (google translate)
GPleaseGive = ss "vær så sød" ; -- can also have flink instead of sod
GPleaseGivePol = ss "venligst" ; -- X not behage
GSeeYouSoon = ss "vi ses snart" ; -- X se dig snart
GSorry, GSorryPol = ss "undskyld" ;
GThanks = ss "tak" ;
GTheCheck = ss "regningen" ;
GCongratulations = ss "tillykke";
GHappyBirthday = ss "tillykke med fødselsdagen" ;
GGoodLuck = ss "held og lykke" ;
}