Well.. depending on what results you want .. here is a tip!
It sounds like that the server is in English default .. so all server side info will be in English. well... what you need to do.. is to say to the server something like this : "hey you stupid soda machine.. me and my visitors are not English.. we're Italian.. got it ?"
How do you do that?
Well... here is an example for Portuguese server side info..
Just insert the next code on your default page :
PHP Code:
if(!setlocale (LC_ALL,'pt_PT.ISO8859-1')){
setlocale(LC_ALL,'portuguese');
}
So.. just change this code for ITalian and it should do the job...
This works ok.. if your shop is only in Italian. but if it has a few other languages.. a small tweek must be done in order to acheive this as well.