From b6e70baa04d3c84a240c6b94a0dd1d1e0d6fef20 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Thu, 24 Sep 2015 03:42:25 +0000 Subject: [PATCH] Plugins: on the plugins admin screen, the "has been deleted" string needs a plural. Props jmayhak. Fixes #33239. Built from https://develop.svn.wordpress.org/trunk@34475 git-svn-id: http://core.svn.wordpress.org/trunk@34439 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/plugins.php | 10 +++++++++- wp-includes/version.php | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/wp-admin/plugins.php b/wp-admin/plugins.php index b12f0f1d50..b5ec0aaf2e 100644 --- a/wp-admin/plugins.php +++ b/wp-admin/plugins.php @@ -442,7 +442,15 @@ if ( ! empty( $invalid ) ) { if ( is_wp_error($delete_result) ) : ?>

get_error_message() ); ?>

-

deleted.'); ?>

+
+

+ deleted.', + 'The selected plugins have been deleted.', + $plugins_to_delete ); + ?> +

+

activated.') ?>

diff --git a/wp-includes/version.php b/wp-includes/version.php index d78634d777..489f7b160f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34474'; +$wp_version = '4.4-alpha-34475'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.