var i18s = [];
function i18(str, domain) {
	if (i18s[domain] && i18s[domain][str]) {
		return i18s[domain][str];
	} else {
		return str;
	}
}