Changeset 55899
- Timestamp:
- 06/08/2023 02:16:48 PM (22 months ago)
- Location:
- trunk/src/wp-admin/includes
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-core-upgrader.php
r55750 r55899 31 31 $this->strings['no_package'] = __( 'Update package not available.' ); 32 32 /* translators: %s: Package URL. */ 33 $this->strings['downloading_package'] = sprintf( __( 'Downloading update from %s…' ), '<span class="code ">%s</span>' );33 $this->strings['downloading_package'] = sprintf( __( 'Downloading update from %s…' ), '<span class="code pre">%s</span>' ); 34 34 $this->strings['unpack_package'] = __( 'Unpacking the update…' ); 35 35 $this->strings['copy_failed'] = __( 'Could not copy files.' ); -
trunk/src/wp-admin/includes/class-language-pack-upgrader.php
r54891 r55899 115 115 $this->strings['no_package'] = __( 'Update package not available.' ); 116 116 /* translators: %s: Package URL. */ 117 $this->strings['downloading_package'] = sprintf( __( 'Downloading translation from %s…' ), '<span class="code ">%s</span>' );117 $this->strings['downloading_package'] = sprintf( __( 'Downloading translation from %s…' ), '<span class="code pre">%s</span>' ); 118 118 $this->strings['unpack_package'] = __( 'Unpacking the update…' ); 119 119 $this->strings['process_failed'] = __( 'Translation update failed.' ); -
trunk/src/wp-admin/includes/class-plugin-upgrader.php
r55824 r55899 58 58 $this->strings['no_package'] = __( 'Update package not available.' ); 59 59 /* translators: %s: Package URL. */ 60 $this->strings['downloading_package'] = sprintf( __( 'Downloading update from %s…' ), '<span class="code ">%s</span>' );60 $this->strings['downloading_package'] = sprintf( __( 'Downloading update from %s…' ), '<span class="code pre">%s</span>' ); 61 61 $this->strings['unpack_package'] = __( 'Unpacking the update…' ); 62 62 $this->strings['remove_old'] = __( 'Removing the old version of the plugin…' ); … … 75 75 $this->strings['no_package'] = __( 'Installation package not available.' ); 76 76 /* translators: %s: Package URL. */ 77 $this->strings['downloading_package'] = sprintf( __( 'Downloading installation package from %s…' ), '<span class="code ">%s</span>' );77 $this->strings['downloading_package'] = sprintf( __( 'Downloading installation package from %s…' ), '<span class="code pre">%s</span>' ); 78 78 $this->strings['unpack_package'] = __( 'Unpacking the package…' ); 79 79 $this->strings['installing_package'] = __( 'Installing the plugin…' ); -
trunk/src/wp-admin/includes/class-theme-upgrader.php
r55824 r55899 57 57 $this->strings['no_package'] = __( 'Update package not available.' ); 58 58 /* translators: %s: Package URL. */ 59 $this->strings['downloading_package'] = sprintf( __( 'Downloading update from %s…' ), '<span class="code ">%s</span>' );59 $this->strings['downloading_package'] = sprintf( __( 'Downloading update from %s…' ), '<span class="code pre">%s</span>' ); 60 60 $this->strings['unpack_package'] = __( 'Unpacking the update…' ); 61 61 $this->strings['remove_old'] = __( 'Removing the old version of the theme…' ); … … 73 73 $this->strings['no_package'] = __( 'Installation package not available.' ); 74 74 /* translators: %s: Package URL. */ 75 $this->strings['downloading_package'] = sprintf( __( 'Downloading installation package from %s…' ), '<span class="code ">%s</span>' );75 $this->strings['downloading_package'] = sprintf( __( 'Downloading installation package from %s…' ), '<span class="code pre">%s</span>' ); 76 76 $this->strings['unpack_package'] = __( 'Unpacking the package…' ); 77 77 $this->strings['installing_package'] = __( 'Installing the theme…' );
Note: See TracChangeset
for help on using the changeset viewer.