From 9e6d246ca6aa4fe2d795d81e20c8eaff347fedc9 Mon Sep 17 00:00:00 2001 From: Jb Date: Wed, 15 Apr 2020 20:49:49 +0200 Subject: [PATCH] Update confirmation message wording --- functions.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/functions.php b/functions.php index 03d3fb1..66419a0 100755 --- a/functions.php +++ b/functions.php @@ -523,12 +523,12 @@ function wp_autoupdates_plugin_deleted( $plugin_file, $deleted ) { function wp_autoupdates_plugins_notices() { if ( isset( $_GET['enable-autoupdate'] ) ) { echo '

'; - _e( 'The selected plugins will now update automatically.', 'wp-autoupdates' ); + _e( 'Selected plugins will be auto-updated.', 'wp-autoupdates' ); echo '

'; } if ( isset( $_GET['disable-autoupdate'] ) ) { echo '

'; - _e( 'The selected plugins won’t automatically update anymore.', 'wp-autoupdates' ); + _e( 'Selected plugins will no longer be auto-updated.', 'wp-autoupdates' ); echo '

'; } } @@ -540,12 +540,12 @@ function wp_autoupdates_plugins_notices() { function wp_autoupdates_themes_notices() { if ( isset( $_GET['enable-autoupdate'] ) ) { echo '

'; - _e( 'The selected themes will now update automatically.', 'wp-autoupdates' ); + _e( 'Selected themes will be auto-updated.', 'wp-autoupdates' ); echo '

'; } if ( isset( $_GET['disable-autoupdate'] ) ) { echo '

'; - _e( 'The selected themes won’t automatically update anymore.', 'wp-autoupdates' ); + _e( 'Selected themes will no longer be auto-updated.', 'wp-autoupdates' ); echo '

'; } }