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