summaryrefslogtreecommitdiff
path: root/examples/phrasebook/GreetingsIta.gf
blob: 77b840ad7a27b8419c60b6cc95c42d67072c97d5 (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
concrete GreetingsIta of Greetings = open Prelude in {

lincat 
  Greeting = SS ;

lin 
  GHello = ss "ciao" ;
  GThanks = ss "grazie" ;
  GHowAreYou = ss "come sta" ;
  GPleaseGive, GPleaseGivePol = ss "per favore" ;
  GExcuse = ss "scusa" ;
  GExcusePol = ss "scusi" ;
  GSorry = ss "scusami" ; ----
  GSorryPol = ss "scusimi" ; ----
  GGoodbye = ss "arrivederci" ;
  GBye = ss "ciao" ;
--  GNiceToMeetYou = ss "piacevole" ; ----
--  GSeeYouSoon = ss "a poco tempo" ; ----
  GHelp = ss "aiuto" ;
  GLookOut = ss "attenzione" ;
  GGoodMorning = ss "buongiorno" ;
  GGoodDay = ss "buongiorno" ;
  GGoodEvening = ss "buona sera" ;
  GGoodNight = ss "buona notte" ;
  GCheers = ss "cincin" ;
  GTheCheck = ss "il conto" ;

  GYes = ss "sì" ;
  GNo = ss "no" ;


}