I18N: Remove `<code>` tags from translatable strings in `Core_Upgrader`, `Language_Pack_Upgrader`, `Plugin_Upgrader`, `Theme_Upgrader`.
Props ramiy. Fixes #41705. Built from https://develop.svn.wordpress.org/trunk@41908 git-svn-id: http://core.svn.wordpress.org/trunk@41742 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
fb8d73a0f7
commit
2b9e8abd8f
|
@ -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.');
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.9-beta2-41907';
|
||||
$wp_version = '4.9-beta2-41908';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue