* @return translated key, representing the language specific translation
*/
public static String mapText(HttpSession session,
String baseName, String key) {
// get current message mapping setup and map key
SegmentedMap map = getMap (baseName, Locale.getDefault());
return ((String)map.get(key));
}