var phrases = {};
function VytvoritSlovnik(jazyk)
{
switch(jazyk)
{
  case "cz":
    phrases["allaccepted"]="Výborně, všechny technologie jsou podporovány.";
    phrases["notallaccepted"]="Bohužel váš prohlížeč nepodporuje všechny potřebné technologie.";
    phrases["login"]="Přihlašovací jméno";
    phrases["password"]="Heslo";
    phrases["tooshort"]="musí mít nejméně 6 znaků!";
    phrases["nosame"]="Hesla se neshodují!";
    phrases["notmail"]="Zadaná adresa má špatný formát!";
    phrases["nameexist"]="Přihlašovací jméno již existuje!";
    phrases["emailexist"]="Email již registrován!";
    phrases["connerror"]="Chyba při pokusu o komunikaci se serverem!";
    break;
  case "eng":
    phrases["allaccepted"]="Well, all technologies are supported.";
    phrases["notallaccepted"]="Unfortunately your browser does not support all the necessary technologies.";
    phrases["login"]="Username";
    phrases["password"]="Password";
    phrases["tooshort"]="must be at least 6 characters!";
    phrases["nosame"]="Passwords are not identic!";
    phrases["notmail"]="The specified address is bad form!";
    phrases["nameexist"]="Username already exists!";
    phrases["emailexist"]="Email is already registered!";
    phrases["connerror"]="Error when trying to communicate with the serve!";
    break;
  default:
    phrases["allaccepted"]="Well, all technologies are supported.";
    phrases["notallaccepted"]="Unfortunately your browser does not support all the necessary technologies.";
    phrases["login"]="Username";
    phrases["password"]="Password";
    phrases["tooshort"]="must be at least 6 characters!";
    phrases["nosame"]="Passwords are not identic!";
    phrases["notmail"]="The specified address is bad form!";
    phrases["nameexist"]="Username already exists!";
    phrases["emailexist"]="Email is already registered!";
    phrases["connerror"]="Error when trying to communicate with the serve!";
    break;
}
}
