/*
 * Gestion des langues locales
 */

toutou.require("toutou.js.ajax");


if(typeof js == "undefined") {
	js = {};
	js.imgPath = "";
}


js.i18n = new function() {
	this.Request_uri = '/php/view_i18n.php';
}

js.i18n.getLocalString = function(module,chaine,langue){
	var parametres = {
		parameters:"method=rechercher&module="+module+"&chaine="+chaine+"&langue="+langue,
		method:"post"
	}
	var result = toutou.js.ajax.request(this.Request_uri,parametres);
	return result;
}

