summaryrefslogtreecommitdiff
path: root/examples/phrasebook/GreetingsSwe.gf
blob: 9384c395540af3d72e86486305142cb47e8cb26b (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 GreetingsSwe of Greetings = open Roles, Prelude in {

lincat 
  Greeting = SS ;

lin 
  GHello = ss "hej" ;
  GThanks = ss "tack" ;
  GHowAreYou = ss "hur står det till" ;
  GPleaseGive = ss "var så god" ;
  GExcuse = ss "ursäkta" ;
  GSorry = ss "förlåt" ;
  GGoodbye = ss "hej då" ;
  GBye = ss "hej då" ;
  GNiceToMeetYou = ss "trevligt att träffas" ;
  GSeeYouSoon = ss "vi ses snart" ;
  GHelp = ss "hjälp" ;
  GLookOut = ss "se upp" ;
  GGoodMorning = ss "god morgon" ;
  GGoodDay = ss "god dag" ;
  GGoodEvening = ss "god afton" ;
  GGoodNight = ss "god natt" ;

  GWhatsYourName = ss "vad heter du" ;
  GWhatsYourNamePol = ss "vad heter ni" ;

  GTheCheck = ss "notan" ;

  GYes = ss "ja" ;
  GNo = ss "nej" ;


}