blob: b8d281eef7ac4e5a736e2a5ddb2cb71b24f3d6ac (
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 GreetingsIta of Greetings = open Prelude in {
lincat
Greeting = SS ;
lin
GBye = ss "ciao" ;
GCheers = ss "cincin" ;
GDamn = ss "maledizione" ;
GExcuse = ss "scusa" ;
GExcusePol = ss "scusi" ;
GGoodDay = ss "buongiorno" ;
GGoodEvening = ss "buona sera" ;
GGoodMorning = ss "buongiorno" ;
GGoodNight = ss "buona notte" ;
GGoodbye = ss "arrivederci" ;
GHello = ss "ciao" ;
GHelp = ss "aiuto" ;
GHowAreYou = ss "come sta" ;
GLookOut = ss "attenzione" ;
GNiceToMeetYou = ss "piacere di conoscerti" ;
GNiceToMeetYouPol = ss "piacere di conoscerLa" ;
GPleaseGive, GPleaseGivePol = ss "per favore" ;
GSeeYouSoon = ss "a presto" ; ----
GSorry = ss "scusami" ; ----
GSorryPol = ss "scusimi" ; ----
GThanks = ss "grazie" ;
GTheCheck = ss "il conto" ;
GCongratulations = ss "congratulazioni";
GHappyBirthday = ss "buon compleanno" ;
GGoodLuck = ss "buona fortuna" ;
}
|