blob: 1758722a595c828a63463cb45dc7a0c4a0b53837 (
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
37
|
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" ;
GWhatsYourName = ss "come si chiama" ;
-- 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" ;
GImHungry = ss "ho fame" ;
GImThirsty = ss "ho sete" ;
GImTired = ss "sono stanco" ; ----
GImScared = ss "ho paura" ;
GIdontUnderstand = ss "non capisco" ;
GTheCheck = ss "il conto" ;
GYes = ss "sì" ; ---- si
GNo = ss "no" ;
}
|