var I18n = new Class({
	initialize: function(values) {
		this.values = values;
	},
	t: function(s) {
		if (typeof(this.values)!='undefined' && this.values[s]) {
			return this.values[s];
		}
		return s;
	}
});
