Tweak String language to match language used elsewhere. Props Jane. See #11232

git-svn-id: http://svn.automattic.com/wordpress/trunk@14920 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
dd32 2010-05-26 01:27:58 +00:00
parent bfaf3d3f0b
commit 6f01187d74
1 changed files with 4 additions and 4 deletions

View File

@ -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: <strong>%2$s</strong>.');
$this->upgrader->strings['skin_update_failed'] = __('The update of %1$s failed.');
$this->upgrader->strings['skin_update_successful'] = __('%1$s updated successfully.').' <a onclick="%2$s" href="#" class="hide-if-no-js"><span>'.__('Show Details').'</span><span class="hidden">'.__('Hide Details').'</span>.</a>';
$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 = '') {