diff --git a/ghost/admin/app/validators/offer.js b/ghost/admin/app/validators/offer.js index 00d5e1ddbc..9b3a501d24 100644 --- a/ghost/admin/app/validators/offer.js +++ b/ghost/admin/app/validators/offer.js @@ -18,13 +18,13 @@ export default BaseValidator.create({ amount(model) { if (!model.amount) { if (model.type === 'trial') { - model.errors.add('amount', 'Please enter trial duration of atleast 1 day.'); + model.errors.add('amount', 'Free trial must be at least 1 day.'); } else { model.errors.add('amount', 'Please enter the amount.'); } this.invalidate(); } else if (model.type === 'trial' && model.amount < 0) { - model.errors.add('amount', 'Please enter trial duration of atleast 1 day.'); + model.errors.add('amount', 'Free trial must be at least 1 day.'); this.invalidate(); } },