170 | | $html = sprintf( '<p><strong>' . __( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%3$s">View version %4$s details</a>.' ) . '</strong></p>', |
171 | | $theme_name, esc_url( $details_url ), esc_attr( $theme['Name'] ), $update['new_version'] ); |
| 169 | /* translators: 1: theme name, 2: theme details URL, 3: theme version number */ |
| 170 | $html = sprintf( '<p><strong>' . __( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox">View version %3$s details</a>.' ) . '</strong></p>', |
| 171 | $theme_name, esc_url( $details_url ), $update['new_version'] ); |
173 | | $html = sprintf( '<p><strong>' . __( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%3$s">View version %4$s details</a>. <em>Automatic update is unavailable for this theme.</em>' ) . '</strong></p>', |
174 | | $theme_name, esc_url( $details_url ), esc_attr( $theme['Name'] ), $update['new_version'] ); |
| 173 | /* translators: 1: theme name, 2: theme details URL, 3: theme version number */ |
| 174 | $html = sprintf( '<p><strong>' . __( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox">View version %3$s details</a>. <em>Automatic update is unavailable for this theme.</em>' ) . '</strong></p>', |
| 175 | $theme_name, esc_url( $details_url ), $update['new_version'] ); |
176 | | $html = sprintf( '<p><strong>' . __( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%3$s">View version %4$s details</a> or <a href="%5$s">update now</a>.' ) . '</strong></p>', |
177 | | $theme_name, esc_url( $details_url ), esc_attr( $theme['Name'] ), $update['new_version'], $update_url, $update_onclick ); |
| 177 | /* translators: 1: theme name, 2: theme details URL, 3: theme version number, 4: theme update URL */ |
| 178 | $html = sprintf( '<p><strong>' . __( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox">View version %3$s details</a> or <a href="%4$s">update now</a>.' ) . '</strong></p>', |
| 179 | $theme_name, esc_url( $details_url ), $update['new_version'], $update_url ); |