/**
 * @file
 * language_it.js
 * 
 * @version $Id$
 */

ekLang = {
	tr: null,
	
	_setup: function() {
		ekLang.tr = new Array();
		//ekLang.tr['Original string'] = 'Translated string.';
		ekLang.tr["Required field"] = "Campo Obbligatorio";
		ekLang.tr["Please insert current password too"] = "Per favore inserite anche la password attuale";
		// TODO: remove this
		ekLang.tr["A valid email adress is required"] = "Inserisci un indirizzo email valido";
		ekLang.tr["A valid email address is required"] = "Inserisci un indirizzo email valido";
		ekLang.tr["Wrong email or password"] = "Email o Password errati";
		ekLang.tr["This email adress is already in use"] = "L'indirizzo email specificato è già in uso";
		ekLang.tr["The email adress is not used by any user"] = "L'indirizzo email specificato non corrisponde a nessun utente";
		ekLang.tr["The password and password confirm should be the same"] = "Le due password devono coincidere";
		ekLang.tr["The password is too short"] = "Minimo 6 caratteri";
		ekLang.tr["The inserted value is too short"] = "Il valore immesso è troppo corto";
		ekLang.tr["Min Length 2 chars"] = "Minimo 2 caratteri";
		ekLang.tr["The user is not active"] = "L'utente non è attivo, controlla la tua email.";
		ekLang.tr["The user not exists"] = "L'utente non esiste, controlla l'indirizzo email inserito.";
		ekLang.tr["Valid Email Required"] = "Inserisci un'indirizzo email valido";
		ekLang.tr["The fields must match"] =  "I due campi devono coincidere" ;
		ekLang.tr["You have to select a type"] =  "E' obbligatorio selezionare una tipologia per l'immobile." ;
		ekLang.tr["You have to choose a value"] =  "E' necessario selezionare un valore" ;
		ekLang.tr["You have to insert a valid value"] =  "Inserisci un valore corretto" ;
		ekLang.tr["You have to insert a valid value cap"] =  "Inserisci il CAP in un formato corretto" ;
		ekLang.tr["You have to choose a valid value category"] =  "Seleziona la categoria" ;
		ekLang.tr["You have to choose a valid value contract"] =  "Seleziona il tipo di contratto";
		ekLang.tr["You have to choose a valid value type"] =  "Seleziona la tipologia" ;
		//ekLang.tr["You have to choose a valid value locality"] =  "Seleziona una località valida";
		ekLang.tr["The string is too long"] =  "Campo troppo lungo" ;
		ekLang.tr["Only Digits allowed"] =  "Inserisci un valore numerico" ;
		ekLang.tr["Only Currency allowed"] =  "Inserisci un valore corretto" ;
		ekLang.tr["Required field area"] =  "Inserisci la superficie" ;
		ekLang.tr["Required field price"] =  "Inserisci il prezzo"  ;
		ekLang.tr["Required field cap"] =  "Inserisci il CAP"  ;
		ekLang.tr["Minimum Price: 10 Euro"] =  "Prezzo minimo: 10 Euro";
		ekLang.tr["Minimum Price: 1000 Euro"] =  "Prezzo minimo: 1000 Euro";
		ekLang.tr["These fields must match"] = "I due campi devono coincidere";
		ekLang.tr["You have to agree to our privacy policy in order to continue"] = "E' obbligatorio acconsentire al trattamento dei dati personali";
		ekLang.tr["Mail not sent"] = "Errore invio email";
		ekLang.tr["Login Error"] = "Login Errata: email o password sbagliati";
		ekLang.tr["Current password is wrong"] = "La password attuale è sbagliata";
		ekLang.tr["Min Length: 6 chars"] = "Lunghezza minima 6 caratteri";
		ekLang.tr["Login needed to view this page"] = "&Egrave; necessario effettuare l'accesso";
		ekLang.tr["You have agree to our privacy policy by checking the privacy box in order to continue"] = "&Egrave; necessario dare il consenso al trattamento dei dati personali";
		ekLang.tr["Confirmation Email successfully send"] = "Email di conferma inviata con successo";
		ekLang.tr["Error sending confirmation Email"] = "Errore invio email di conferma";
		ekLang.tr["Please insert current password too"] = "Inserire anche la password attuale";
		
		// Restore password custom message
		ekLang.tr["This user must complete registration"] = "Questo utente deve ancora completare la registrazione";
		
		// These are custom, and used in tpl-pubblicazione_annuncio.xsl
		ekLang.tr["Please insert a valid locality"] = "Per favore inserire una località valida";
		ekLang.tr["Ad description too short, should be at least 40 characters"] = "La descrizione dell'annuncio è troppo corta, minimo 40 caratteri";
		ekLang.tr["Email is already present in our db but was not confirmed, please login to confirm it"] = "L'email è già nel nostro db ma non è stata confermata, per favore effettuate il login per confermarla";
		ekLang.tr["Wrong Field value"] = "Codice di controllo errato"
	},	

		
	_: function(s) {
		if (!ekLang.tr) {
			ekLang._setup();
		}
		return ekLang.tr[s] ? ekLang.tr[s] : s;
	}
}

