Replace button text "Proceed" with "Continue" to be more consistent (#38961)
* Replace "Proceed" with "Continue" to be more consistent * Add changelog * Update button label for WCPay setup step in task list
This commit is contained in:
parent
9d5c90dad8
commit
3a402a1235
|
@ -97,7 +97,7 @@ export const Configure = ( { markConfigured, paymentGateway } ) => {
|
|||
fields={ fields }
|
||||
isBusy={ isUpdating }
|
||||
onSubmit={ handleSubmit }
|
||||
submitLabel={ __( 'Proceed', 'woocommerce' ) }
|
||||
submitLabel={ __( 'Continue', 'woocommerce' ) }
|
||||
validate={ ( values ) => validateFields( values, fields ) }
|
||||
/>
|
||||
);
|
||||
|
|
|
@ -330,7 +330,7 @@ class Appearance extends Component {
|
|||
isBusy={ isUpdatingLogo }
|
||||
isPrimary
|
||||
>
|
||||
{ __( 'Proceed', 'woocommerce' ) }
|
||||
{ __( 'Continue', 'woocommerce' ) }
|
||||
</Button>
|
||||
<Button
|
||||
isTertiary
|
||||
|
|
|
@ -285,7 +285,7 @@ export class Shipping extends Component {
|
|||
buttonText={
|
||||
pluginsToActivate.length ||
|
||||
requiresJetpackConnection
|
||||
? __( 'Proceed', 'woocommerce' )
|
||||
? __( 'Continue', 'woocommerce' )
|
||||
: __( 'Complete task', 'woocommerce' )
|
||||
}
|
||||
shippingZones={ this.state.shippingZones }
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
Significance: patch
|
||||
Type: tweak
|
||||
|
||||
Replace "Proceed" with "Continue" to be more consistent
|
Loading…
Reference in New Issue