blob: b568a6e492f2b374cf44e45da90d4405c85c2646 (
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
|
concrete GreetingsRon of Greetings = open Prelude in {
flags coding = utf8 ;
lincat
Greeting, Politeness = SS ;
lin
GBye = ss "pa" ;
GCheers = ss "noroc" ;
GDamn = ss "ptiu" ;
GExcuse = ss "pardon" ;
GGoodDay = ss "bună ziua" ;
GGoodEvening = ss "bună seara" ;
GGoodMorning = ss "bună dimineaţa" ;
GGoodNight = ss "noapte bună" ;
GGoodbye = ss "la revedere" ;
GHello = ss "salut" ;
GHelp = ss "ajutor" ;
GHowAreYou = ss "ce faci" ;
GLookOut = ss "atenţie" ;
GNiceToMeetYou = ss "încântat" ;
GPleaseGive = ss "vă rog" ;
GSeeYouSoon = ss "pe curând" ;
GSorry = ss "îmi pare rău" ;
GThanks = ss "mulţumesc" ;
GTheCheck = ss "nota de plată" ;
}
|