function En() {
	this.terms = new Array();
	this.terms["staticText:success"] = "Text was saved.";
	this.terms["staticText:error"] = "Ooops.. <br/><br/>Something went wrong.";
	this.terms["register:success"] = "Registration successful.";
	this.terms["register:error"] = "Ooops.. <br/><br/>Something went wrong.";
	this.terms["register:check:success"] = "Email verification successful.";
    this.terms["login:success"] = "<b>Username and password are correct.</b> <br/><br/>To complete login click <a href=\"javascript:location.reload(true)\">here</a> or waith 5 seconds.";
    this.terms["login:error"] = "<b>Username and/or password are not correct.</b> <br/><br/>Check CAPS LOCK.";
    this.terms["logout:success"] = "<b>You are successfully logout.</b> <br/><br/>Page will be reloaded in 5 seconds to complete logout process.";
    this.terms["logout:error"] = "Ooops.. <br/><br/>Something went wrong.";
}
En.prototype.translate = function(term) {
	return this.terms[term];
}
var i18n = new En();