diff --git a/plugins/woocommerce-admin/client/dashboard/profile-wizard/steps/business-details.js b/plugins/woocommerce-admin/client/dashboard/profile-wizard/steps/business-details.js index f3032aa1f09..c0d1b4a21dd 100644 --- a/plugins/woocommerce-admin/client/dashboard/profile-wizard/steps/business-details.js +++ b/plugins/woocommerce-admin/client/dashboard/profile-wizard/steps/business-details.js @@ -120,11 +120,14 @@ class BusinessDetails extends Component { getNumberRangeString( min, max = false, format = numberFormat ) { if ( ! max ) { - return sprintf( _x( '%s+', 'store product count', 'woocommerce-admin' ), format( min ) ); + return sprintf( + _x( '%s+', 'store product count or revenue', 'woocommerce-admin' ), + format( min ) + ); } return sprintf( - _x( '%s - %s', 'store product count', 'woocommerce-admin' ), + _x( '%1$s - %2$s', 'store product count or revenue range', 'woocommerce-admin' ), format( min ), format( max ) );