function _t(key){
	if(Translations[Translations.locale][key]){
		return Translations[Translations.locale][key]
	}else{
		return key
	}
}

var Translations = {
	en : {
	},
	ar : {
		'close' : 'إغلاق',
		'or Esc Key' : 'أو اضغط ESC'
	}
}

Translations.locale = 'en';
