I18N: Remove <code>
tags from translatable strings in Core_Upgrader
, Language_Pack_Upgrader
, Plugin_Upgrader
, Theme_Upgrader
.
Props ramiy. Fixes #41705. git-svn-id: https://develop.svn.wordpress.org/trunk@41908 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
cb3abb4abc
commit
8aaf0aa4bc
@ -29,7 +29,8 @@ class Core_Upgrader extends WP_Upgrader {
|
||||
$this->strings['up_to_date'] = __('WordPress is at the latest version.');
|
||||
$this->strings['locked'] = __('Another update is currently in progress.');
|
||||
$this->strings['no_package'] = __('Update package not available.');
|
||||
$this->strings['downloading_package'] = __('Downloading update from <span class="code">%s</span>…');
|
||||
/* translators: %s: package URL */
|
||||
$this->strings['downloading_package'] = sprintf( __( 'Downloading update from %s…' ), '<span class="code">%s</span>' );
|
||||
$this->strings['unpack_package'] = __('Unpacking the update…');
|
||||
$this->strings['copy_failed'] = __('Could not copy files.');
|
||||
$this->strings['copy_failed_space'] = __('Could not copy files. You may have run out of disk space.' );
|
||||
|
@ -112,7 +112,8 @@ class Language_Pack_Upgrader extends WP_Upgrader {
|
||||
$this->strings['starting_upgrade'] = __( 'Some of your translations need updating. Sit tight for a few more seconds while we update them as well.' );
|
||||
$this->strings['up_to_date'] = __( 'The translations are up to date.' );
|
||||
$this->strings['no_package'] = __( 'Update package not available.' );
|
||||
$this->strings['downloading_package'] = __( 'Downloading translation from <span class="code">%s</span>…' );
|
||||
/* translators: %s: package URL */
|
||||
$this->strings['downloading_package'] = sprintf( __( 'Downloading translation from %s…' ), '<span class="code">%s</span>' );
|
||||
$this->strings['unpack_package'] = __( 'Unpacking the update…' );
|
||||
$this->strings['process_failed'] = __( 'Translation update failed.' );
|
||||
$this->strings['process_success'] = __( 'Translation updated successfully.' );
|
||||
|
@ -46,7 +46,8 @@ class Plugin_Upgrader extends WP_Upgrader {
|
||||
public function upgrade_strings() {
|
||||
$this->strings['up_to_date'] = __('The plugin is at the latest version.');
|
||||
$this->strings['no_package'] = __('Update package not available.');
|
||||
$this->strings['downloading_package'] = __('Downloading update from <span class="code">%s</span>…');
|
||||
/* translators: %s: package URL */
|
||||
$this->strings['downloading_package'] = sprintf( __( 'Downloading update from %s…' ), '<span class="code">%s</span>' );
|
||||
$this->strings['unpack_package'] = __('Unpacking the update…');
|
||||
$this->strings['remove_old'] = __('Removing the old version of the plugin…');
|
||||
$this->strings['remove_old_failed'] = __('Could not remove the old plugin.');
|
||||
@ -62,7 +63,8 @@ class Plugin_Upgrader extends WP_Upgrader {
|
||||
*/
|
||||
public function install_strings() {
|
||||
$this->strings['no_package'] = __('Installation package not available.');
|
||||
$this->strings['downloading_package'] = __('Downloading installation package from <span class="code">%s</span>…');
|
||||
/* translators: %s: package URL */
|
||||
$this->strings['downloading_package'] = sprintf( __( 'Downloading installation package from %s…' ), '<span class="code">%s</span>' );
|
||||
$this->strings['unpack_package'] = __('Unpacking the package…');
|
||||
$this->strings['installing_package'] = __('Installing the plugin…');
|
||||
$this->strings['no_files'] = __('The plugin contains no files.');
|
||||
|
@ -45,7 +45,8 @@ class Theme_Upgrader extends WP_Upgrader {
|
||||
public function upgrade_strings() {
|
||||
$this->strings['up_to_date'] = __('The theme is at the latest version.');
|
||||
$this->strings['no_package'] = __('Update package not available.');
|
||||
$this->strings['downloading_package'] = __('Downloading update from <span class="code">%s</span>…');
|
||||
/* translators: %s: package URL */
|
||||
$this->strings['downloading_package'] = sprintf( __( 'Downloading update from %s…' ), '<span class="code">%s</span>' );
|
||||
$this->strings['unpack_package'] = __('Unpacking the update…');
|
||||
$this->strings['remove_old'] = __('Removing the old version of the theme…');
|
||||
$this->strings['remove_old_failed'] = __('Could not remove the old theme.');
|
||||
@ -60,7 +61,8 @@ class Theme_Upgrader extends WP_Upgrader {
|
||||
*/
|
||||
public function install_strings() {
|
||||
$this->strings['no_package'] = __('Installation package not available.');
|
||||
$this->strings['downloading_package'] = __('Downloading installation package from <span class="code">%s</span>…');
|
||||
/* translators: %s: package URL */
|
||||
$this->strings['downloading_package'] = sprintf( __( 'Downloading installation package from %s…' ), '<span class="code">%s</span>' );
|
||||
$this->strings['unpack_package'] = __('Unpacking the package…');
|
||||
$this->strings['installing_package'] = __('Installing the theme…');
|
||||
$this->strings['no_files'] = __('The theme contains no files.');
|
||||
|
Loading…
Reference in New Issue
Block a user