forked from GitHub/gf-core
39 lines
947 B
Plaintext
39 lines
947 B
Plaintext
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" ;
|
|
GWhatsYourName = ss "cum te cheamă" ;
|
|
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ă" ;
|
|
GImHungry = ss "mi-e foame" ;
|
|
GImThirsty = ss "mi-e sete" ;
|
|
GImTired = ss "mi-e somn" ;
|
|
GImScared = ss "mi-e frică" ;
|
|
GIdontUnderstand = ss "nu înţeleg" ;
|
|
GWheresTheBathroom = ss "unde e toaleta" ;
|
|
GTheCheck = ss "nota de plată" ;
|
|
|
|
GYes = ss "da" ;
|
|
GNo = ss "nu" ;
|
|
|
|
|
|
}
|