summaryrefslogtreecommitdiff
path: root/examples/phrasebook/GreetingsRon.gf
blob: acc0f5241cca6c555256de958fd0c8c9d6c1a4d0 (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
38
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" ;


}