From 37bf804cf55e98924775bc8970a182b1e845703e Mon Sep 17 00:00:00 2001 From: Sag Date: Fri, 11 Aug 2023 16:11:04 +0200 Subject: [PATCH] Updated copy of error messages for Tips & Donations suggested amount (#17696) refs https://github.com/TryGhost/Product/issues/3695 --- ghost/admin/app/components/settings/tips-and-donations.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/admin/app/components/settings/tips-and-donations.js b/ghost/admin/app/components/settings/tips-and-donations.js index 8d8ceee2a5..4f01eccfa2 100644 --- a/ghost/admin/app/components/settings/tips-and-donations.js +++ b/ghost/admin/app/components/settings/tips-and-donations.js @@ -68,12 +68,12 @@ export default class TipsAndDonations extends Component { const minAmount = minimumAmountForCurrency(currency); if (amountInCents !== 0 && amountInCents < (minAmount * 100)) { - this.tipsAndDonationsError = `The suggested amount cannot be less than ${symbol}${minAmount}.`; + this.tipsAndDonationsError = `Non-zero amount must be at least ${symbol}${minAmount}.`; return; } if (amountInCents !== 0 && amountInCents > (MAX_AMOUNT * 100)) { - this.tipsAndDonationsError = `The suggested amount cannot be more than ${symbol}${MAX_AMOUNT}.`; + this.tipsAndDonationsError = `Suggested amount cannot be more than ${symbol}${MAX_AMOUNT}.`; return; }