Files
gf-core/examples/phrasebook/GreetingsIta.gf
2010-03-28 20:13:46 +00:00

37 lines
1.1 KiB
Plaintext

concrete GreetingsIta of Greetings = open Roles,Prelude in {
lincat
Greeting = RolePhrase ;
lin
GHello = roleNeutral "ciao" ;
GThanks = roleNeutral "grazie" ;
GHowAreYou = roleNeutral "come sta" ;
GPleaseGive = roleNeutral "per favore" ;
GExcuse = politeDistinct "scusi" "scusa" ;
GSorry = politeDistinct "scusimi" "scusami" ; ----
GGoodbye = roleNeutral "arrivederci" ;
GBye = roleNeutral "ciao" ;
GWhatsYourName =
politeDistinct "come si chiama" "come ti chiami" ;
-- GNiceToMeetYou = roleNeutral "piacevole" ; ----
-- GSeeYouSoon = roleNeutral "a poco tempo" ; ----
GHelp = roleNeutral "aiuto" ;
GLookOut = roleNeutral "attenzione" ;
GGoodMorning = roleNeutral "buongiorno" ;
GGoodDay = roleNeutral "buongiorno" ;
GGoodEvening = roleNeutral "buona sera" ;
GGoodNight = roleNeutral "buona notte" ;
GImHungry = roleNeutral "ho fame" ;
GImThirsty = roleNeutral "ho sete" ;
GImTired = speakerDistinct "sono stanco" "sono stanca" ;
GImScared = roleNeutral "ho paura" ;
GIdontUnderstand = roleNeutral "non capisco" ;
GTheCheck = roleNeutral "il conto" ;
GYes = roleNeutral "sě" ; ---- si
GNo = roleNeutral "no" ;
}