function Translation() {}

Translation._texts = new Object();

Translation.getText = function (pTextCode) { 
	return Translation._texts[pTextCode]; 
}

Translation.addText = function (pTextCode, pText) { 
	Translation._texts[pTextCode] = pText; 
}