From bbc30c03e4a0f445f32b1882a95d7a4940c7fa17 Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Wed, 26 May 2010 01:27:58 +0000 Subject: [PATCH] Tweak String language to match language used elsewhere. Props Jane. See #11232 git-svn-id: https://develop.svn.wordpress.org/trunk@14920 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/class-wp-upgrader.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-admin/includes/class-wp-upgrader.php b/wp-admin/includes/class-wp-upgrader.php index ecff57fe5a..2f36bfece1 100644 --- a/wp-admin/includes/class-wp-upgrader.php +++ b/wp-admin/includes/class-wp-upgrader.php @@ -1069,11 +1069,11 @@ class Bulk_Upgrader_Skin extends WP_Upgrader_Skin { } function add_strings() { - $this->upgrader->strings['bulk_upgrade_start'] = __('The update process is starting. This process may take awhile on some hosts, so please be patient.'); + $this->upgrader->strings['skin_upgrade_start'] = __('The update process is starting. This process may take awhile on some hosts, so please be patient.'); $this->upgrader->strings['skin_update_failed_error'] = __('An error occured while updating %1$s: %2$s.'); $this->upgrader->strings['skin_update_failed'] = __('The update of %1$s failed.'); $this->upgrader->strings['skin_update_successful'] = __('%1$s updated successfully.').' '.__('Show Details').'.'; - $this->upgrader->strings['bulk_upgrade_end'] = __('All upgrades have been completed.'); + $this->upgrader->strings['skin_upgrade_end'] = __('All updates have been completed.'); } function feedback($string) { @@ -1118,11 +1118,11 @@ class Bulk_Upgrader_Skin extends WP_Upgrader_Skin { } function bulk_header() { - $this->feedback('bulk_upgrade_start'); + $this->feedback('skin_upgrade_start'); } function bulk_footer() { - $this->feedback('bulk_upgrade_end'); + $this->feedback('skin_upgrade_end'); } function before($title = '') {