﻿// JScript File
// JScript File
function getJSPH(ph) {
	var t;
	switch (ph) {
	    case "Contact_SelectatiDestinatar":
			t = "-You have to choose an adressee;\n"; break;
        case "Contact_CompletatiNume":
			t = "-You have to complete the field \"First Name\";\n"; break;
		case "Contact_CompletatiPrenume":
			t = "-You have to complete the field \"Last Name\";\n"; break;
        case "Contact_CompletatiFirma":
			t = "-You have to complete the field \"Company\";\n"; break;
		case "Contact_CompletatiMesaj":
			t = "-You have to complete the field \"Message\";\n"; break;
		case "Contact_CompletatiEmail":
			t = "-You have to complete the field \"Email\";\n"; break;             
		case "Contact_EmailValid":
			t = "-The field \"Email\" must contain a valid email adress;\n"; break;
		case "Contact_CompletatiTelefon":
			t = "-You have to complete the field \"Phone\";\n"; break;
        case "Contact_TelefonValid":
			t = "-The field \"Phone\" must contain a valid phone number;\n"; break;					
		case "Contact_CompletatiTelefonEmail":
			t = "-You have to specify a valid email and phone number;\n"; break;        	
		case "Contact_RemediatiProblemele":
			t = "-Please remedy the following problems:\n"; break;			
		case "Common_CuvinteCautare":	
			t = "words search"; break;        	
		case "Comanda_Va rugam introduceti cantitati numere intregi pozitive":
	        t = "Please enter pozitive numbers for the quantity.\n If you want to erase a product, use 'delete' button that you'll find near the product or insert 0 for quantity."; break;        	
		case "Comanda_Alegeti o locatitate apoi adaugati la cos taxa suplimentara de livrare":
	        t = "Choose a city and than add to cart the suplimentary delivery tax."; break;        	
		case "Comanda_Pentru finalizarea comenzii va rugam actualizati cosul de cumparaturi":
	        t = "To finish your order please actualise your cart (click on 'Recalculate' button) and verify if it's correct."; break;        	
		case "Comanda_completati campul Nume client":
	        t = "-complete the field \"The client's first name\";"; break;  
	    case "Comanda_completati campul Prenume client":
	        t = "-complete the field \"The client's last name\";"; break;        	
		case "Comanda_completati campul Adresa client":
	        t = "-complete the field \"Client's adress\";"; break;        	
		case "Comanda_alegeti Tara client":
	        t = "-choose \"Client's country\";"; break;        	
		case "Comanda_completati campul Localitate, judet client":
	       t = "-complete the field \"Client's city, county\";"; break;        	
		case "Comanda_completati campul Telefon client":
	       t = "-complete the field \"Client's phone\"; "; break;        	
		case "Comanda_completati campul Nume si prenume destinatar":
	        t = "-complete the field \"Adressee's first and last name\";"; break;        	
		case "Comanda_completati campul Adresa destinatar":
	        t = "-complete the field \"Adressee's adress\";"; break;        	
		case "Comanda_alegeti Tara destinatar":
	        t = "-choose \"Adressee's country\";"; break;        	
		case "Comanda_completati campul Localitate, judet destinatar":
	       t = "-complete the field \"Adressee's city and county\";"; break;        	
		case "Comanda_completati campul Cod postal destinatar":
	      t = "-complete the field \"Adressee's zip code\";"; break;        	
		case "Comanda_completati campul Telefon destinatar":
	        t = "-complete the field \"Adressee's phone number\""; break;        	
		case "Comanda_Selectati ocazia":
	      t = "Select an ocassion"; break;   
	    case "Comanda_Va rugam asteptati":
	        t = "Please wait!"; break;      	
		case "Lightbox_Click pentru a inchide":
	        t = "Click to close"; break;        	
		case "Login_press":
	        t = "press"; break;        	
		case "Login_to close":
 	        t = "to close"; break;        	
		case "Login_introduceti o adresa de e-mail valida":
	        t = "-introduce a valid email adress;"; break;        	
		case "Login_introduceti o parola":
	        t = "-introduce a password;"; break;        	
		case "Login_campul Parola trebuie sa aiba minim 6 caractere":
	        t = "-the filed \"Password\" must contain at least 6 characters;"; break;        	
		case "Login_completati campul Parola, din nou":
	        t = "-complete the field \"Password, again\";"; break;        	
		case "Login_introduceti acelasi text in campurile Parola si Parola, din nou":
	        t = "-introduce the same text for the field \"Password\" and \"Password, again\";"; break;        	
		case "Login_completati campul Nume si prenume":
	        t = "-complete the field \"First and last name\";"; break;        	
		case "Login_completati campul Adresa":
	        t = "-complete the field \"Adress\";"; break;        	
		case "Login_alegeti o tara":
	        t = "-select a country;"; break;        	
		case "Login_completati campul Localitate, judet":
	        t = "-complete the field \"City, county\";"; break;        	
		case "Login_completati campul Telefon cu un numar de telefon valid":
	        t = "-complete the field \"Phone\" with a valid phone number;"; break;        	
		case "Comanda_Va rugam sa introduceti o adresa de e-mail valida":
	        t = "Please introduce a valid email adress!"; break;        	
		case "Comanda_Va rugam introduceti o cantitate numar intreg pozitiv.":
	        t = "Please introduce a pozitive number for quantity."; break;        	
		case "Comanda_Va rugam introduceti o suma cu cel putin 10 EUR mai mult.":
	        t = "Please introduce a bigger sum, at least with 10 EUR more."; break;        	
		case "Comanda_Va rugam introduceti o cantitate pozitiva.":
	        t = "Please introduce a pozitive quantity." ;break;        	
		case "Comanda_produse":
	        t = "products"; break;        	
		case "Comanda_produs":
	        t = "product"; break;        	
		case "Login_Va rugam sa introduceti o adresa de e-mail valida":
	        t = "Please introduce a valid email adress!" ;break;        	
		case "Login_completati campul Parola curenta":
	        t = "-complete the field \"Current password\";"; break;
	    case "Comanda_Va rugam introduceti o locatie pentru livrare.":
	        t = "Select a delivery country."; break;               						
		default:
			t = "Undefined message!\n";	
        }
	return t;
}

