diff --git a/frontend/src/metabase/xray/components/InsightCard.jsx b/frontend/src/metabase/xray/components/InsightCard.jsx index 6b687a362d22e04153cd37924dc67cee44930389..52d106d09c7d5229f819a2fd2aaf9cfcf3ef49f6 100644 --- a/frontend/src/metabase/xray/components/InsightCard.jsx +++ b/frontend/src/metabase/xray/components/InsightCard.jsx @@ -175,10 +175,14 @@ export class VariationTrendInsight extends Component { render() { const { mode } = this.props; + const MODE_ADVERB_STRINGS = { + big: t`bigly`, + huge: t`hugely`, + }; return ( <InsightText> - {t`It looks like this data has grown ${mode}ly`}{" "} + {t`It looks like this data has grown ${MODE_ADVERB_STRINGS[mode]}`}{" "} <TermWithDefinition definition={variationTrendDefinition} link={varianceLink}