Changeset 43842 for branches/5.0/src/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php
- Timestamp:
- 10/30/2018 02:13:07 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0/src/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php
r43808 r43842 5 5 * @package WordPress 6 6 * @subpackage Twenty_Nineteen 7 * @since 1.0.0 7 8 */ 8 9 … … 55 56 /* translators: %s: comment author link */ 56 57 printf( 57 __( '%s <span class="screen-reader-text says">says:</span>' ),58 __( '%s <span class="screen-reader-text says">says:</span>', 'twentynineteen' ), 58 59 sprintf( '<b class="fn">%s</b>', get_comment_author_link( $comment ) ) 59 60 ); … … 70 71 <?php 71 72 $edit_comment_icon = twentynineteen_get_icon_svg( 'edit', 16 ); 72 edit_comment_link( __( 'Edit' ), '<span class="edit-link-sep">—</span> <span class="edit-link">' . $edit_comment_icon, '</span>' );73 edit_comment_link( __( 'Edit', 'twentynineteen' ), '<span class="edit-link-sep">—</span> <span class="edit-link">' . $edit_comment_icon, '</span>' ); 73 74 ?> 74 75 </div><!-- .comment-metadata --> 75 76 76 77 <?php if ( '0' == $comment->comment_approved ) : ?> 77 <p class="comment-awaiting-moderation"><?php _e( 'Your comment is awaiting moderation.' ); ?></p>78 <p class="comment-awaiting-moderation"><?php _e( 'Your comment is awaiting moderation.', 'twentynineteen' ); ?></p> 78 79 <?php endif; ?> 79 80 </footer><!-- .comment-meta -->
Note: See TracChangeset
for help on using the changeset viewer.