diff --git a/src/wp-includes/widgets/class-wp-nav-menu-widget.php b/src/wp-includes/widgets/class-wp-nav-menu-widget.php
index 8954312..67f7ce4 100644
a
|
b
|
class WP_Nav_Menu_Widget extends WP_Widget { |
142 | 142 | $url = admin_url( 'nav-menus.php' ); |
143 | 143 | } |
144 | 144 | ?> |
145 | | <?php echo sprintf( __( 'No menus have been created yet. <a href="%s">Create some</a>.' ), esc_attr( $url ) ); ?> |
| 145 | <?php |
| 146 | /* translators: %s: URL to menu edit page */ |
| 147 | echo sprintf( __( 'No menus have been created yet. <a href="%s">Create some</a>.' ), esc_attr( $url ) ); ?> |
146 | 148 | </p> |
147 | 149 | <div class="nav-menu-widget-form-controls" <?php echo $empty_menus_style; ?>> |
148 | 150 | <p> |
diff --git a/src/wp-includes/widgets/class-wp-widget-recent-comments.php b/src/wp-includes/widgets/class-wp-widget-recent-comments.php
index c7b0c26..98f9efa 100644
a
|
b
|
class WP_Widget_Recent_Comments extends WP_Widget { |
118 | 118 | |
119 | 119 | foreach ( (array) $comments as $comment ) { |
120 | 120 | $output .= '<li class="recentcomments">'; |
121 | | /* translators: comments widget: 1: comment author, 2: post link */ |
122 | 121 | $output .= sprintf( |
| 122 | /* translators: comments widget: 1: comment author, 2: post link */ |
123 | 123 | _x( '%1$s on %2$s', 'widgets' ), |
124 | 124 | '<span class="comment-author-link">' . get_comment_author_link( $comment ) . '</span>', |
125 | 125 | '<a href="' . esc_url( get_comment_link( $comment ) ) . '">' . get_the_title( $comment->comment_post_ID ) . '</a>' |