Fix wrong copy in the payments task on the Home Task list (#33663)

* Fix wrong copy in the payments task on the Home Task list

* Add changelog
This commit is contained in:
Chi-Hsuan Huang 2022-06-30 15:23:03 +08:00 committed by GitHub
parent d6ccaa67de
commit 41ecb1ed6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -0,0 +1,4 @@
Significance: patch
Type: fix
Fix wrong copy in the payments task on the Home Task list

View File

@ -27,7 +27,7 @@ class WooCommercePayments extends Task {
* @return string * @return string
*/ */
public function get_title() { public function get_title() {
return __( 'Get paid with WooCommerce Payments', 'woocommerce' ); return __( 'Set up WooCommerce Payments', 'woocommerce' );
} }
/** /**
@ -67,7 +67,7 @@ class WooCommercePayments extends Task {
*/ */
public function get_additional_info() { public function get_additional_info() {
return __( return __(
'By setting up, you are agreeing to the <a href="https://wordpress.com/tos/" target="_blank">Terms of Service</a>', 'By using WooCommerce Payments you agree to be bound by our <a href="https://wordpress.com/tos/" target="_blank">Terms of Service</a> and acknowledge that you have read our <a href="https://automattic.com/privacy/" target="_blank">Privacy Policy</a>',
'woocommerce' 'woocommerce'
); );
} }