diff --git a/wp-admin/custom-header.php b/wp-admin/custom-header.php
index a56c760..55ffe03 100644
a
|
b
|
class Custom_Image_Header { |
267 | 267 | if ( 1 < count( $headers ) ) { |
268 | 268 | echo '<div class="random-header">'; |
269 | 269 | echo '<label><input name="default-header" type="radio" value="random-' . $type . '-image"' . checked( is_random_header_image( $type ), true, false ) . ' />'; |
270 | | echo __( '<strong>Random:</strong> Show a different image on each page.' ); |
| 270 | _e( '<strong>Random:</strong> Show a different image on each page.' ); |
271 | 271 | echo '</label>'; |
272 | 272 | echo '</div>'; |
273 | 273 | } |
diff --git a/wp-admin/customize.php b/wp-admin/customize.php
index c8bd6e3..fc181db 100644
a
|
b
|
do_action( 'customize_controls_print_scripts' ); |
150 | 150 | ?></span> |
151 | 151 | </div> |
152 | 152 | <div class="accordion-section-content"><?php |
153 | | echo __( 'The Customizer allows you to preview changes to your site before publishing them. You can also navigate to different pages on your site to preview them.' ); |
| 153 | _e( 'The Customizer allows you to preview changes to your site before publishing them. You can also navigate to different pages on your site to preview them.' ); |
154 | 154 | ?></div> |
155 | 155 | </div> |
156 | 156 | |
diff --git a/wp-admin/edit-comments.php b/wp-admin/edit-comments.php
index bfde54e..e97792f 100644
a
|
b
|
if ( $post_id ) |
149 | 149 | ) |
150 | 150 | ); |
151 | 151 | else |
152 | | echo __('Comments'); |
| 152 | _e('Comments'); |
153 | 153 | |
154 | 154 | if ( isset($_REQUEST['s']) && $_REQUEST['s'] ) |
155 | 155 | echo '<span class="subtitle">' . sprintf( __( 'Search results for “%s”' ), wp_html_excerpt( esc_html( wp_unslash( $_REQUEST['s'] ) ), 50, '…' ) ) . '</span>'; ?> |
diff --git a/wp-admin/includes/class-wp-posts-list-table.php b/wp-admin/includes/class-wp-posts-list-table.php
index 2e96471..4bd51d3 100644
a
|
b
|
class WP_Posts_List_Table extends WP_List_Table { |
1116 | 1116 | <em class="alignleft inline-edit-or"> |
1117 | 1117 | <?php |
1118 | 1118 | /* translators: Between password field and private checkbox on post quick edit interface */ |
1119 | | echo __( '–OR–' ); |
| 1119 | _e( '–OR–' ); |
1120 | 1120 | ?> |
1121 | 1121 | </em> |
1122 | 1122 | <label class="alignleft inline-edit-private"> |
1123 | 1123 | <input type="checkbox" name="keep_private" value="private" /> |
1124 | | <span class="checkbox-title"><?php echo __( 'Private' ); ?></span> |
| 1124 | <span class="checkbox-title"><?php _e( 'Private' ); ?></span> |
1125 | 1125 | </label> |
1126 | 1126 | </div> |
1127 | 1127 | |
diff --git a/wp-admin/network/users.php b/wp-admin/network/users.php
index c900b82..10fc23b 100644
a
|
b
|
function confirm_delete_users( $users ) { |
86 | 86 | <li><label><input type="radio" id="delete_option0" name="delete[<?php echo $details->userblog_id . '][' . $delete_user->ID ?>]" value="delete" checked="checked" /> |
87 | 87 | <?php _e( 'Delete all content.' ); ?></label></li> |
88 | 88 | <li><label><input type="radio" id="delete_option1" name="delete[<?php echo $details->userblog_id . '][' . $delete_user->ID ?>]" value="reassign" /> |
89 | | <?php echo __( 'Attribute all content to:' ) . "</label>\n" . $user_dropdown; ?></li> |
| 89 | <?php _e( 'Attribute all content to:' ) . "</label>\n" . $user_dropdown; ?></li> |
90 | 90 | </ul> |
91 | 91 | <?php |
92 | 92 | } |
diff --git a/wp-includes/comment-template.php b/wp-includes/comment-template.php
index 7af2f3b..d55f1ef 100644
a
|
b
|
function comments_popup_link( $zero = false, $one = false, $more = false, $css_c |
1304 | 1304 | } |
1305 | 1305 | |
1306 | 1306 | if ( post_password_required() ) { |
1307 | | echo __('Enter your password to view comments.'); |
| 1307 | _e('Enter your password to view comments.'); |
1308 | 1308 | return; |
1309 | 1309 | } |
1310 | 1310 | |