/*** Translation ***/

var Blade_Language = {

	getTxt: function(s, lang) {
		switch(lang)
		{
			case 'it_IT':
				switch(s)
				{
					case 'cart.default_message': return '<p class="message"><strong>Il preventivo &egrave; vuoto.</strong><br />Per inserire un articolo &egrave; necessario sceglierlo dal catalogo.<br />Potrete in seguito <strong>modificarlo</strong>, proseguire la navigazione o <strong>annullare</strong> la richiesta.</p>';
					
					case 'cart.no_quantita': return '<p class="error">Alcuni articoli non hanno una quantit&agrave;.<br /><br />Modifica il valore e spedisci il preventivo.</p>';
					// case 'cart.empty': return '<p class="notice">Il tuo carrello &egrave; vuoto.<br /><br />Aggiungi almeno un prodotto.</p>';
					case 'cart.empty': return '<p class="notice"><strong>Il preventivo &egrave; vuoto.</strong><br/>Per inserire un articolo &egrave; necessario sceglierlo dal catalogo.<br/>Potrete in seguito <strong>modificarlo</strong>, proseguire la navigazione o <strong>annullare</strong> la richiesta.</p>';
					case 'cart.success': return '<p class="notice">Grazie per la tua richiesta.<br />&Egrave; stata spedita una mail di conferma al tuo indirizzo di posta.<br /><br />La tua richiesta sar&agrave; evasa prima possibile.</p>';
					
					case 'Empty': return 'Vuoto';
					case 'Save': return 'Salva';
					case 'duplicate': return '<p class=\"notice\">L\'articolo &egrave; gi&agrave; stato inserito.<p>';
			
					case 'alert.comando_non_valido': return 'Comando non valido: ';
					case 'alert.api_key_error: ': return 'API KEY Error: ';

					default:return s;
				}
			case 'en_US':
				switch(s)
				{
					case 'cart.default_message': return '<p class="message"><strong>The quotation is empty.</strong><br />To insert an item you must choose from the catalog.<br />You can then edit, go surfing or cancel the request.</p>';

					case 'cart.no_quantita': return '<p class="error">Some articles do not have a quantity.<br /><br />Change the value and send the quote.</p>';
					case 'cart.empty': return '<p class="notice">Your basket is empty.<br /><br />Add at least one product.</p>';
					case 'cart.success': return '<p class="notice">Thank you for your request.<br />It \'been sent an email confirmation to your email address.<br /><br />Your request will be processed as soon as possible.</p>';

					case 'Empty': return 'Empty';
					case 'Save': return 'Save';
					case 'duplicate': return '<p class="notice">The article has already been included.<p>';

					case 'alert.comando_non_valido': return 'Not valid command: ';
					case 'alert.api_key_error: ': return 'API KEY Error: ';

					default: return s;
				}
			default: return s;
		}
	}
};