Changeset 45932 for trunk/src/wp-admin/includes/class-theme-upgrader.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-theme-upgrader.php
r43598 r45932 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 /* translators: %s: package URL*/48 /* translators: %s: Package URL. */ 49 49 $this->strings['downloading_package'] = sprintf( __( 'Downloading update from %s…' ), '<span class="code">%s</span>' ); 50 50 $this->strings['unpack_package'] = __( 'Unpacking the update…' ); … … 62 62 public function install_strings() { 63 63 $this->strings['no_package'] = __( 'Installation package not available.' ); 64 /* translators: %s: package URL*/64 /* translators: %s: Package URL. */ 65 65 $this->strings['downloading_package'] = sprintf( __( 'Downloading installation package from %s…' ), '<span class="code">%s</span>' ); 66 66 $this->strings['unpack_package'] = __( 'Unpacking the package…' ); … … 69 69 $this->strings['process_failed'] = __( 'Theme installation failed.' ); 70 70 $this->strings['process_success'] = __( 'Theme installed successfully.' ); 71 /* translators: 1: theme name, 2: version*/71 /* translators: 1: Theme name, 2: Theme version. */ 72 72 $this->strings['process_success_specific'] = __( 'Successfully installed the theme <strong>%1$s %2$s</strong>.' ); 73 73 $this->strings['parent_theme_search'] = __( 'This theme requires a parent theme. Checking if it is installed…' ); 74 /* translators: 1: theme name, 2: version*/74 /* translators: 1: Theme name, 2: Theme version. */ 75 75 $this->strings['parent_theme_prepare_install'] = __( 'Preparing to install <strong>%1$s %2$s</strong>…' ); 76 /* translators: 1: theme name, 2: version*/76 /* translators: 1: Theme name, 2: Theme version. */ 77 77 $this->strings['parent_theme_currently_installed'] = __( 'The parent theme, <strong>%1$s %2$s</strong>, is currently installed.' ); 78 /* translators: 1: theme name, 2: version*/78 /* translators: 1: Theme name, 2: Theme version. */ 79 79 $this->strings['parent_theme_install_success'] = __( 'Successfully installed the parent theme, <strong>%1$s %2$s</strong>.' ); 80 /* translators: %s: theme name*/80 /* translators: %s: Theme name. */ 81 81 $this->strings['parent_theme_not_found'] = sprintf( __( '<strong>The parent theme could not be found.</strong> You will need to install the parent theme, %s, before you can use this child theme.' ), '<strong>%s</strong>' ); 82 82 }
Note: See TracChangeset
for help on using the changeset viewer.