Fix: improve woocommerce-admin plugin deactivation notice message (#33592)
* Fix: improve wca deactivation notice message * Update plugins/woocommerce/src/Internal/Admin/Loader.php Co-authored-by: Adrian Duffell <9312929+adrianduffell@users.noreply.github.com> Co-authored-by: Adrian Duffell <9312929+adrianduffell@users.noreply.github.com>
This commit is contained in:
parent
c9e0cccc19
commit
54b72dcae1
|
@ -0,0 +1,4 @@
|
|||
Significance: patch
|
||||
Type: fix
|
||||
|
||||
WooCommerce Admin plugin deactivation message was causing much unnecessary alarm and has been improved #33592
|
|
@ -108,7 +108,7 @@ class Loader {
|
|||
echo '<div class="error"><p>';
|
||||
printf(
|
||||
/* translators: %s: is referring to the plugin's name. */
|
||||
esc_html__( '%1$s plugin has been deactivated to avoid conflicts with %2$s plugin.', 'woocommerce' ),
|
||||
esc_html__( 'The %1$s plugin has been deactivated as the latest improvements are now included with the %2$s plugin.', 'woocommerce' ),
|
||||
'<code>WooCommerce Admin</code>',
|
||||
'<code>WooCommerce</code>'
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue