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