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:
Chi-Hsuan Huang 2023-07-04 11:36:28 +08:00 committed by GitHub
parent 9d5c90dad8
commit 3a402a1235
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 3 deletions

View File

@ -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 ) }
/>
);

View File

@ -330,7 +330,7 @@ class Appearance extends Component {
isBusy={ isUpdatingLogo }
isPrimary
>
{ __( 'Proceed', 'woocommerce' ) }
{ __( 'Continue', 'woocommerce' ) }
</Button>
<Button
isTertiary

View File

@ -285,7 +285,7 @@ export class Shipping extends Component {
buttonText={
pluginsToActivate.length ||
requiresJetpackConnection
? __( 'Proceed', 'woocommerce' )
? __( 'Continue', 'woocommerce' )
: __( 'Complete task', 'woocommerce' )
}
shippingZones={ this.state.shippingZones }

View File

@ -0,0 +1,4 @@
Significance: patch
Type: tweak
Replace "Proceed" with "Continue" to be more consistent