1
0
forked from GitHub/gf-core
Files
gf-core/examples/phrasebook/GreetingsIta.gf

38 lines
951 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 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" ;
GImHungry = ss "ho fame" ;
GImThirsty = ss "ho sete" ;
GImTired = ss "sono stanco" ; ----
GImScared = ss "ho paura" ;
GIdontUnderstand = ss "non capisco" ;
GTheCheck = ss "il conto" ;
GYes = ss "sì" ; ---- si
GNo = ss "no" ;
}