diff --git a/wp-admin/update-core.php b/wp-admin/update-core.php
index e6536251b0..e15dfc621e 100644
--- a/wp-admin/update-core.php
+++ b/wp-admin/update-core.php
@@ -224,7 +224,7 @@ function list_plugin_updates() {
echo "
|
- {$plugin_data->Name}" . sprintf(__('You are running version %1$s. Update to %2$s.'), $plugin_data->Version, $plugin_data->update->new_version) . $compat . $upgrade_notice . " |
+ {$plugin_data->Name}" . sprintf(__('You have version %1$s installed. Update to %2$s.'), $plugin_data->Version, $plugin_data->update->new_version) . $compat . $upgrade_notice . " |
";
}
?>
@@ -271,7 +271,7 @@ function list_theme_updates() {
echo "
|
- {$theme_data->Name}" . sprintf(__('You are running version %1$s. Update to %2$s.'), $theme_data->Version, $theme_data->update['new_version']) . " |
+ {$theme_data->Name}" . sprintf(__('You have version %1$s installed. Update to %2$s.'), $theme_data->Version, $theme_data->update['new_version']) . " |
";
}
?>