summaryrefslogtreecommitdiff
path: root/examples/phrasebook/GreetingsIta.gf
blob: 24a4d7a0e580f4850956ae013bbf67abb7b67c51 (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
34
35
36
concrete GreetingsIta of Greetings = open Roles,Prelude in {

lincat 
  Greeting = RolePhrase ;

lin 
  GHello = roleNeutral "ciao" ;
  GThanks = roleNeutral "grazie" ;
  GHowAreYou = roleNeutral "come sta" ;
  GPleaseGive = roleNeutral "per favore" ;
  GExcuse = politeDistinct "scusi" "scusa" ;
  GSorry = politeDistinct "scusimi" "scusami" ; ----
  GGoodbye = roleNeutral "arrivederci" ;
  GBye = roleNeutral "ciao" ;
  GWhatsYourName = 
    politeDistinct "come si chiama" "come ti chiami" ;
--  GNiceToMeetYou = roleNeutral "piacevole" ; ----
--  GSeeYouSoon = roleNeutral "a poco tempo" ; ----
  GHelp = roleNeutral "aiuto" ;
  GLookOut = roleNeutral "attenzione" ;
  GGoodMorning = roleNeutral "buongiorno" ;
  GGoodDay = roleNeutral "buongiorno" ;
  GGoodEvening = roleNeutral "buona sera" ;
  GGoodNight = roleNeutral "buona notte" ;
  GImHungry = roleNeutral "ho fame" ;
  GImThirsty = roleNeutral "ho sete" ;
  GImTired = speakerDistinct "sono stanco" "sono stanca" ;
  GImScared = roleNeutral "ho paura" ;
  GIdontUnderstand = roleNeutral "non capisco" ;
  GTheCheck = roleNeutral "il conto" ;

  GYes = roleNeutral "sì" ; ---- si
  GNo = roleNeutral "no" ;


}