@@ -32,6 +32,7 @@ import purchasesPaths from 'me/purchases/paths';
32
32
import { plansLink } from 'lib/plans' ;
33
33
import SegmentedControl from 'components/segmented-control' ;
34
34
import SegmentedControlItem from 'components/segmented-control/item' ;
35
+ import { abtest } from 'lib/abtest' ;
35
36
36
37
class PlansFeaturesMain extends Component {
37
38
getPlanFeatures ( ) {
@@ -336,20 +337,28 @@ class PlansFeaturesMain extends Component {
336
337
plansUrl = basePlansPath ;
337
338
}
338
339
340
+ const isInBillingButtonTest = abtest ( 'jetpackBillingButtonTextI1' ) === 'modified' ;
341
+
339
342
return (
340
343
< SegmentedControl compact className = { segmentClasses } primary = { true } >
341
344
< SegmentedControlItem
342
345
selected = { intervalType === 'monthly' }
343
346
path = { plansLink ( plansUrl , site , 'monthly' ) }
344
347
>
345
- { translate ( 'Monthly billing' ) }
348
+ { isInBillingButtonTest
349
+ ? translate ( 'Monthly' )
350
+ : translate ( 'Monthly billing' )
351
+ }
346
352
</ SegmentedControlItem >
347
353
348
354
< SegmentedControlItem
349
355
selected = { intervalType === 'yearly' }
350
356
path = { plansLink ( plansUrl , site , 'yearly' ) }
351
357
>
352
- { translate ( 'Yearly billing' ) }
358
+ { isInBillingButtonTest
359
+ ? translate ( 'Yearly (Cheaper)' )
360
+ : translate ( 'Yearly billing' )
361
+ }
353
362
</ SegmentedControlItem >
354
363
</ SegmentedControl >
355
364
) ;
0 commit comments