Changeset 43569 for trunk/src/wp-admin/update-core.php
- Timestamp:
- 08/15/2018 06:22:00 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/update-core.php
r43090 r43569 311 311 <input type="checkbox" name="checked[]" id="<?php echo $checkbox_id; ?>" value="<?php echo esc_attr( $plugin_file ); ?>" /> 312 312 <label for="<?php echo $checkbox_id; ?>" class="screen-reader-text"> 313 <?php 314 /* translators: %s: plugin name */ 315 printf( 316 __( 'Select %s' ), 317 $plugin_data->Name 318 ); 319 ?> 320 </label> 321 </td> 322 <td class="plugin-title"><p> 323 <?php echo $icon; ?> 324 <strong><?php echo $plugin_data->Name; ?></strong> 325 <?php 326 /* translators: 1: plugin version, 2: new version */ 313 <?php 314 /* translators: %s: plugin name */ 327 315 printf( 328 __( 'You have version %1$s installed. Update to %2$s.' ), 329 $plugin_data->Version, 330 $plugin_data->update->new_version 316 __( 'Select %s' ), 317 $plugin_data->Name 331 318 ); 332 echo ' ' . $details . $compat . $upgrade_notice;333 319 ?> 334 </p></td> 335 </tr> 320 </label> 321 </td> 322 <td class="plugin-title"><p> 323 <?php echo $icon; ?> 324 <strong><?php echo $plugin_data->Name; ?></strong> 325 <?php 326 /* translators: 1: plugin version, 2: new version */ 327 printf( 328 __( 'You have version %1$s installed. Update to %2$s.' ), 329 $plugin_data->Version, 330 $plugin_data->update->new_version 331 ); 332 echo ' ' . $details . $compat . $upgrade_notice; 333 ?> 334 </p></td> 335 </tr> 336 336 <?php 337 337 } … … 387 387 <input type="checkbox" name="checked[]" id="<?php echo $checkbox_id; ?>" value="<?php echo esc_attr( $stylesheet ); ?>" /> 388 388 <label for="<?php echo $checkbox_id; ?>" class="screen-reader-text"> 389 <?php 390 /* translators: %s: theme name */ 391 printf( 392 __( 'Select %s' ), 393 $theme->display( 'Name' ) 394 ); 395 ?> 396 </label> 397 </td> 398 <td class="plugin-title"><p> 399 <img src="<?php echo esc_url( $theme->get_screenshot() ); ?>" width="85" height="64" class="updates-table-screenshot" alt="" /> 400 <strong><?php echo $theme->display( 'Name' ); ?></strong> 401 <?php 402 /* translators: 1: theme version, 2: new version */ 389 <?php 390 /* translators: %s: theme name */ 403 391 printf( 404 __( 'You have version %1$s installed. Update to %2$s.' ), 405 $theme->display( 'Version' ), 406 $theme->update['new_version'] 392 __( 'Select %s' ), 393 $theme->display( 'Name' ) 407 394 ); 408 395 ?> 409 </p></td> 410 </tr> 396 </label> 397 </td> 398 <td class="plugin-title"><p> 399 <img src="<?php echo esc_url( $theme->get_screenshot() ); ?>" width="85" height="64" class="updates-table-screenshot" alt="" /> 400 <strong><?php echo $theme->display( 'Name' ); ?></strong> 401 <?php 402 /* translators: 1: theme version, 2: new version */ 403 printf( 404 __( 'You have version %1$s installed. Update to %2$s.' ), 405 $theme->display( 'Version' ), 406 $theme->update['new_version'] 407 ); 408 ?> 409 </p></td> 410 </tr> 411 411 <?php 412 412 }
Note: See TracChangeset
for help on using the changeset viewer.