var catalog = new Array(); catalog['Change'] = "Change"; catalog['Remove'] = "Remove"; catalog['Crop'] = "Crop"; function gettext(msgid) { var value = catalog[msgid]; if (typeof(value) == 'undefined') { return msgid; } else { return (typeof(value) == 'string') ? value : value[0]; } }