function En() {
    this.terms = new Array();
    this.terms["basic.staticText.saved"] = "Text was saved.";
    this.terms["basic.staticText.error"] = "Ooops.. <br/><br/>Something went wrong.";
    this.terms["auth.login.error"] = "<b>Username and/or password are not correct.</b> <br/><br/>Check CAPS LOCK.";
    this.terms["auth.logout.error"] = "Ooops.. <br/><br/>Something went wrong.";
    this.terms["auth.logout.question"] = "Are you certain that you want to logout?";
    this.terms["auth.logout.yes"] = "YES";
    this.terms["auth.logout.no"] = "NO";
	this.terms["contactForm.success"] = "Thank you for contacting us. <br/><br/>Your message was sent.";
	this.terms["contactForm.error"] = "There was an error. <br/><br/>Please try again later.";
}
En.prototype.translate = function(term) {
    return this.terms[term];
}
var i18n = new En();
