var new_text;

function my_trad(what, the_language) {
    if (the_language != "it") {
        if (what == "Selezione") { new_text = "Selection"; }
        else if (what == "uomo") { new_text = "man"; }
        else if (what == "donna") { new_text = "woman"; }
        else if (what == "bambino") { new_text = "child"; }
        else if (what == "Colore") {new_text = "Color"; }
        else if (what == "Taglia") {new_text = "Size";}
        else if (what == "bianco") {new_text = "white";}
        else if (what == "nero") {new_text = "black";}
        else if (what == "arancio") {new_text = "orange";}
        else if (what == "giallo") {new_text = "yellow";}
        else if (what == "rosso") {new_text = "red";}
        else if (what == "rosa") {new_text = "pink"; }
        else if (what == "viola") {new_text = "violet";}
        else if (what == "blu") {new_text = "blue";}
        else if (what == "verde") { new_text = "green"; }
        else if (what == "grigio") {new_text = "gray";}
        else if (what == "marrone") {new_text = "brown";}
        else if (what == "nessun risultato") {new_text = "no results"; }
        else if (what == "abbigliamento") { new_text = "dressing"; }
        else if (what == "borse") { new_text = "bags"; }
        else if (what == "giacche") { new_text = "jackets"; }
        else if (what == "vestiti") { new_text = "clothes"; }
        else if (what == "bauletto") { new_text = "trunk"; }
        else if (what == "piccola pelletteria") { new_text = "small leather goods"; }
        else if (what == "tracolla") { new_text = "shoulder belt"; }
        else if (what == "zaino") { new_text = "backpack"; }
        else if (what == "accessori") { new_text = "accessories"; }
        else if (what == "ATTENZIONE<br/>Selezionare TAGLIA") { new_text = "WATCH OUT!<br/>Select SIZE"; }
        else if (what == "ATTENZIONE<br/>Selezionare COLORE") { new_text = "WATCH OUT!<br/>Select COLOR"; }
        else if (what == "ATTENZIONE<br/>Selezionare COLORE / TAGLIA") { new_text = "WATCH OUT!<br/>Select COLOR / SIZE"; }

        else { new_text = what;}
    }
    else {
        new_text = what;
    }

    return new_text;
}
