Files
gf-core/examples/phrasebook/GreetingsIta.gf
2010-03-31 14:58:32 +00:00

34 lines
821 B
Plaintext

concrete GreetingsIta of Greetings = open Prelude in {
lincat
Greeting = SS ;
lin
GHello = ss "ciao" ;
GThanks = ss "grazie" ;
GHowAreYou = ss "come sta" ;
GPleaseGive, GPleaseGivePol = ss "per favore" ;
GExcuse = ss "scusa" ;
GExcusePol = ss "scusi" ;
GSorry = ss "scusami" ; ----
GSorryPol = ss "scusimi" ; ----
GGoodbye = ss "arrivederci" ;
GBye = ss "ciao" ;
GWhatsYourName = ss "come ti chiami" ;
GWhatsYourNamePol = ss "come si chiama" ;
-- GNiceToMeetYou = ss "piacevole" ; ----
-- GSeeYouSoon = ss "a poco tempo" ; ----
GHelp = ss "aiuto" ;
GLookOut = ss "attenzione" ;
GGoodMorning = ss "buongiorno" ;
GGoodDay = ss "buongiorno" ;
GGoodEvening = ss "buona sera" ;
GGoodNight = ss "buona notte" ;
GTheCheck = ss "il conto" ;
GYes = ss "sì" ;
GNo = ss "no" ;
}