Changeset 38057 for trunk/src/wp-admin/includes/update.php
- Timestamp:
- 07/13/2016 05:31:15 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/update.php
r37714 r38057 691 691 * @type string content The row content. 692 692 * } 693 * 693 * 694 694 * The delete template takes one argument with four values: 695 695 * … … 717 717 <tr class="plugin-deleted-tr inactive deleted" id="{{ data.slug }}-deleted" data-slug="{{ data.slug }}" <# if ( data.plugin ) { #>data-plugin="{{ data.plugin }}"<# } #>> 718 718 <td colspan="{{ data.colspan }}" class="plugin-update colspanchange"> 719 <?php 720 printf( 721 /* translators: %s: Plugin or Theme name */ 722 __( '%s was successfully deleted.' ), 723 '<strong>{{{ data.name }}}</strong>' 724 ); 725 ?> 719 <# if ( data.plugin ) { #> 720 <?php 721 printf( 722 /* translators: %s: Plugin name */ 723 _x( '%s was successfully deleted.', 'plugin' ), 724 '<strong>{{{ data.name }}}</strong>' 725 ); 726 ?> 727 <# } else { #> 728 <?php 729 printf( 730 /* translators: %s: Theme name */ 731 _x( '%s was successfully deleted.', 'theme' ), 732 '<strong>{{{ data.name }}}</strong>' 733 ); 734 ?> 735 <# } #> 726 736 </td> 727 737 </tr>
Note: See TracChangeset
for help on using the changeset viewer.