Changeset 41908
- Timestamp:
- 10/18/2017 05:14:58 PM (7 years ago)
- Location:
- trunk/src/wp-admin/includes
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-core-upgrader.php
r41289 r41908 30 30 $this->strings['locked'] = __('Another update is currently in progress.'); 31 31 $this->strings['no_package'] = __('Update package not available.'); 32 $this->strings['downloading_package'] = __('Downloading update from <span class="code">%s</span>…'); 32 /* translators: %s: package URL */ 33 $this->strings['downloading_package'] = sprintf( __( 'Downloading update from %s…' ), '<span class="code">%s</span>' ); 33 34 $this->strings['unpack_package'] = __('Unpacking the update…'); 34 35 $this->strings['copy_failed'] = __('Could not copy files.'); -
trunk/src/wp-admin/includes/class-language-pack-upgrader.php
r41289 r41908 113 113 $this->strings['up_to_date'] = __( 'The translations are up to date.' ); 114 114 $this->strings['no_package'] = __( 'Update package not available.' ); 115 $this->strings['downloading_package'] = __( 'Downloading translation from <span class="code">%s</span>…' ); 115 /* translators: %s: package URL */ 116 $this->strings['downloading_package'] = sprintf( __( 'Downloading translation from %s…' ), '<span class="code">%s</span>' ); 116 117 $this->strings['unpack_package'] = __( 'Unpacking the update…' ); 117 118 $this->strings['process_failed'] = __( 'Translation update failed.' ); -
trunk/src/wp-admin/includes/class-plugin-upgrader.php
r41289 r41908 47 47 $this->strings['up_to_date'] = __('The plugin is at the latest version.'); 48 48 $this->strings['no_package'] = __('Update package not available.'); 49 $this->strings['downloading_package'] = __('Downloading update from <span class="code">%s</span>…'); 49 /* translators: %s: package URL */ 50 $this->strings['downloading_package'] = sprintf( __( 'Downloading update from %s…' ), '<span class="code">%s</span>' ); 50 51 $this->strings['unpack_package'] = __('Unpacking the update…'); 51 52 $this->strings['remove_old'] = __('Removing the old version of the plugin…'); … … 63 64 public function install_strings() { 64 65 $this->strings['no_package'] = __('Installation package not available.'); 65 $this->strings['downloading_package'] = __('Downloading installation package from <span class="code">%s</span>…'); 66 /* translators: %s: package URL */ 67 $this->strings['downloading_package'] = sprintf( __( 'Downloading installation package from %s…' ), '<span class="code">%s</span>' ); 66 68 $this->strings['unpack_package'] = __('Unpacking the package…'); 67 69 $this->strings['installing_package'] = __('Installing the plugin…'); -
trunk/src/wp-admin/includes/class-theme-upgrader.php
r41289 r41908 46 46 $this->strings['up_to_date'] = __('The theme is at the latest version.'); 47 47 $this->strings['no_package'] = __('Update package not available.'); 48 $this->strings['downloading_package'] = __('Downloading update from <span class="code">%s</span>…'); 48 /* translators: %s: package URL */ 49 $this->strings['downloading_package'] = sprintf( __( 'Downloading update from %s…' ), '<span class="code">%s</span>' ); 49 50 $this->strings['unpack_package'] = __('Unpacking the update…'); 50 51 $this->strings['remove_old'] = __('Removing the old version of the theme…'); … … 61 62 public function install_strings() { 62 63 $this->strings['no_package'] = __('Installation package not available.'); 63 $this->strings['downloading_package'] = __('Downloading installation package from <span class="code">%s</span>…'); 64 /* translators: %s: package URL */ 65 $this->strings['downloading_package'] = sprintf( __( 'Downloading installation package from %s…' ), '<span class="code">%s</span>' ); 64 66 $this->strings['unpack_package'] = __('Unpacking the package…'); 65 67 $this->strings['installing_package'] = __('Installing the theme…');
Note: See TracChangeset
for help on using the changeset viewer.