Translate = Class.create({
	
	initialize: function(table) {
		this.locale = window.locale;
		this.table = table;
	},
	
	_ : function(str) {
		if (this.locale == 'en' || !this.table[this.locale] || !this.table[this.locale][str]) {
			return str;
		} else {
			return this.table[this.locale][str];
		}
	}
})