forked from GitHub/gf-core
32 lines
1010 B
Plaintext
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" ;
|
|
|
|
}
|