From 040a58ff57bad789d5e04d3b9ff801677d27951b Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 17 May 2019 00:59:20 +0000 Subject: [PATCH] Site Health: Use correct singular string for plugin and theme version tests. Props edocev, Presskopp. Fixes #47264. git-svn-id: https://develop.svn.wordpress.org/trunk@45336 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/class-wp-site-health.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/includes/class-wp-site-health.php b/src/wp-admin/includes/class-wp-site-health.php index b6c5436207..83bf8b5172 100644 --- a/src/wp-admin/includes/class-wp-site-health.php +++ b/src/wp-admin/includes/class-wp-site-health.php @@ -355,7 +355,7 @@ class WP_Site_Health { sprintf( /* translators: %d: The number of active plugins. */ _n( - 'Your site has %d active plugin, and they are all up to date.', + 'Your site has %d active plugin, and it is up to date.', 'Your site has %d active plugins, and they are all up to date.', $plugins_active ), @@ -511,7 +511,7 @@ class WP_Site_Health { sprintf( /* translators: %d: The number of themes. */ _n( - 'Your site has %d installed theme, and they are all up to date.', + 'Your site has %d installed theme, and it is up to date.', 'Your site has %d installed themes, and they are all up to date.', $themes_total ),