in src/client/helpers/language.tsx [13:21]
export function GetReadableAction(action: string): string {
const map = {
hide: "hidden",
filed: "filed on Bugzilla",
"mark-invalid": "invalid",
not_actionable: "not actionable",
};
return action in map ? map[action] : action;
}