···6060 <View style={[a.pt_md]}>
6161 <InlineLinkText
6262 to="https://opencollective.com/blacksky"
6363- label={_(msg`Donate on OpenCollective`)}>
6464- <Trans>Donate on OpenCollective</Trans>
6363+ label={_(msg`Support on OpenCollective`)}>
6464+ <Trans>Support on OpenCollective</Trans>
6565 </InlineLinkText>
6666 </View>
6767 </View>
+1-1
src/view/screens/SupportReturn.tsx
···9191 t.atoms.text_contrast_medium,
9292 ]}>
9393 <Trans>
9494- Your donation helps us maintain and improve the Blacksky
9494+ Your support helps us maintain and improve the Blacksky
9595 community.
9696 </Trans>
9797 </Text>
+6-6
src/view/screens/SupportStripeCheckout.web.tsx
···4040 const validationError = useMemo(() => {
4141 if (!amount) return null
4242 if (isNaN(parseFloat(amount))) return _(msg`Please enter a valid number`)
4343- if (parsedAmount < 5) return _(msg`Minimum donation is $5`)
4444- if (parsedAmount > 1000) return _(msg`Maximum donation is $1,000`)
4343+ if (parsedAmount < 5) return _(msg`Minimum support amount is $5`)
4444+ if (parsedAmount > 1000) return _(msg`Maximum support amount is $1,000`)
4545 return null
4646 }, [amount, parsedAmount, _])
4747···9696 }
97979898 const buttonLabel = recurring
9999- ? _(msg`Donate $${parsedAmount.toFixed(2)}/mo`)
100100- : _(msg`Donate $${parsedAmount.toFixed(2)}`)
9999+ ? _(msg`Support $${parsedAmount.toFixed(2)}/mo`)
100100+ : _(msg`Support $${parsedAmount.toFixed(2)}`)
101101102102 return (
103103 <View
···110110 a.gap_lg,
111111 ]}>
112112 <Text style={[a.text_lg, a.font_bold]}>
113113- <Trans>Donate with Card</Trans>
113113+ <Trans>Support with Card</Trans>
114114 </Text>
115115116116 <View style={[a.flex_row, a.gap_sm, a.flex_wrap]}>
···156156 </View>
157157158158 <SegmentedControl.Root
159159- label={_(msg`Donation frequency`)}
159159+ label={_(msg`Support frequency`)}
160160 type="radio"
161161 value={recurring ? 'monthly' : 'one-time'}
162162 onChange={handleFrequencyChange}>