Changeset 5036 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/template-parts/plugin-single.php
- Timestamp:
- 03/01/2017 11:46:08 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/template-parts/plugin-single.php
r4568 r5036 73 73 <a href="<?php echo esc_url( $url ); ?>" class="plugin-favorite-heart<?php echo $is_favorited ? ' favorited' : ''; ?>"> 74 74 <span class="screen-reader-text"> 75 <?php printf( $is_favorited ? __( 'Favorite %s' ) : __( 'Unfavorite %s' ), get_the_title() ); ?> 75 <?php 76 if ( $is_favorited ) { 77 /* translators: %s: plugin name */ 78 printf( __( 'Unfavorite %s', 'wporg-plugins' ), get_the_title() ); 79 } else { 80 /* translators: %s: plugin name */ 81 printf( __( 'Favorite %s', 'wporg-plugins' ), get_the_title() ); 82 } 83 ?> 76 84 </span> 77 85 </a>
Note: See TracChangeset
for help on using the changeset viewer.