From b1f9944301d319169a51af129473f77fb7662dbf Mon Sep 17 00:00:00 2001 From: Karthik Thayyil Date: Mon, 30 Sep 2024 10:38:18 +0100 Subject: [PATCH] fix text --- .../paid-ads/budget-section/budget-recommendation/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/src/components/paid-ads/budget-section/budget-recommendation/index.js b/js/src/components/paid-ads/budget-section/budget-recommendation/index.js index c4c6059d5b..562ddcf272 100644 --- a/js/src/components/paid-ads/budget-section/budget-recommendation/index.js +++ b/js/src/components/paid-ads/budget-section/budget-recommendation/index.js @@ -34,12 +34,12 @@ function toRecommendationRange( isMultiple, ...values ) { const template = isMultiple ? // translators: it's a range of recommended budget amount. 1: the value of the budget, 2: the currency of amount. __( - 'Google will optimize your ads to maximize performance.
Tip: Most merchants who sell products on similar countries set a daily budget of %1$f %2$s', + 'Google will optimize your ads to maximize performance.
Tip: Most merchants who sell products in similar countries set a daily budget of %1$f %2$s', 'google-listings-and-ads' ) : // translators: it's a range of recommended budget amount. 1: the value of the budget, 2: the currency of amount 3: a country name selected by the merchant. __( - 'Google will optimize your ads to maximize performance across the country/s you select.
Tip: Most merchants targeting %3$s set a daily budget of %1$f %2$s', + 'Google will optimize your ads to maximize performance.
Tip: Most merchants targeting %3$s set a daily budget of %1$f %2$s', 'google-listings-and-ads' );