Changeset 54062
- Timestamp:
- 09/02/2022 06:49:17 AM (2 years ago)
- Location:
- trunk/src
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-comments.php
r53450 r54062 346 346 } 347 347 348 echo '<div id="moderated" class="updated notice is-dismissible"><p>' . implode( "<br />\n", $messages ) . '</p></div>';348 echo '<div id="moderated" class="updated notice is-dismissible"><p>' . implode( "<br />\n", $messages ) . '</p></div>'; 349 349 } 350 350 } -
trunk/src/wp-admin/includes/class-custom-background.php
r53643 r54062 307 307 <form method="post"> 308 308 <?php wp_nonce_field( 'custom-background-remove', '_wpnonce-custom-background-remove' ); ?> 309 <?php submit_button( __( 'Remove Background Image' ), '', 'remove-background', false ); ?><br />309 <?php submit_button( __( 'Remove Background Image' ), '', 'remove-background', false ); ?><br /> 310 310 <?php _e( 'This will remove the background image. You will not be able to restore any customizations.' ); ?> 311 311 </form> … … 321 321 <form method="post"> 322 322 <?php wp_nonce_field( 'custom-background-reset', '_wpnonce-custom-background-reset' ); ?> 323 <?php submit_button( __( 'Restore Original Image' ), '', 'reset-background', false ); ?><br />323 <?php submit_button( __( 'Restore Original Image' ), '', 'reset-background', false ); ?><br /> 324 324 <?php _e( 'This will restore the original background image. You will not be able to restore any customizations.' ); ?> 325 325 </form> -
trunk/src/wp-admin/includes/class-wp-filesystem-base.php
r53872 r54062 263 263 if ( $this->verbose ) { 264 264 /* translators: 1: Folder to locate, 2: Folder to start searching from. */ 265 printf( "\n" . __( 'Looking for %1$s in %2$s' ) . "<br />\n", $folder, $base );265 printf( "\n" . __( 'Looking for %1$s in %2$s' ) . "<br />\n", $folder, $base ); 266 266 } 267 267 … … 292 292 if ( $this->verbose ) { 293 293 /* translators: %s: Directory name. */ 294 printf( "\n" . __( 'Changing to %s' ) . "<br />\n", $newdir );294 printf( "\n" . __( 'Changing to %s' ) . "<br />\n", $newdir ); 295 295 } 296 296 … … 310 310 if ( $this->verbose ) { 311 311 /* translators: %s: Directory name. */ 312 printf( "\n" . __( 'Found %s' ) . "<br />\n", $base . $last_path );312 printf( "\n" . __( 'Found %s' ) . "<br />\n", $base . $last_path ); 313 313 } 314 314 -
trunk/src/wp-admin/includes/class-wp-ms-users-list-table.php
r53501 r54062 444 444 } 445 445 446 echo '</small></span><br />';446 echo '</small></span><br />'; 447 447 } 448 448 } -
trunk/src/wp-admin/includes/class-wp-plugins-list-table.php
r53876 r54062 753 753 754 754 if ( $plugin_file !== $plugin_data['Name'] ) { 755 $plugin_name .= '<br />' . $plugin_data['Name'];755 $plugin_name .= '<br />' . $plugin_data['Name']; 756 756 } 757 757 -
trunk/src/wp-admin/install.php
r53749 r54062 188 188 ?> 189 189 <input id="blog-public" type="radio" name="blog_public" value="1" <?php checked( 1, $blog_public ); ?> /> 190 <label for="blog-public"><?php _e( 'Allow search engines to index this site' ); ?></label><br />190 <label for="blog-public"><?php _e( 'Allow search engines to index this site' ); ?></label><br /> 191 191 <input id="blog-norobots" type="radio" name="blog_public" value="0" <?php checked( 0, $blog_public ); ?> /> 192 192 <label for="blog-norobots"><?php _e( 'Discourage search engines from indexing this site' ); ?></label> -
trunk/src/wp-admin/network/site-info.php
r53455 r54062 198 198 <?php foreach ( $attribute_fields as $field_key => $field_label ) : ?> 199 199 <label><input type="checkbox" name="blog[<?php echo $field_key; ?>]" value="1" <?php checked( (bool) $details->$field_key, true ); ?> <?php disabled( ! in_array( (int) $details->$field_key, array( 0, 1 ), true ) ); ?> /> 200 <?php echo $field_label; ?></label><br />200 <?php echo $field_label; ?></label><br /> 201 201 <?php endforeach; ?> 202 202 <fieldset> -
trunk/src/wp-admin/options-reading.php
r52428 r54062 182 182 <?php if ( has_action( 'blog_privacy_selector' ) ) : ?> 183 183 <input id="blog-public" type="radio" name="blog_public" value="1" <?php checked( '1', get_option( 'blog_public' ) ); ?> /> 184 <label for="blog-public"><?php _e( 'Allow search engines to index this site' ); ?></label><br />184 <label for="blog-public"><?php _e( 'Allow search engines to index this site' ); ?></label><br /> 185 185 <input id="blog-norobots" type="radio" name="blog_public" value="0" <?php checked( '0', get_option( 'blog_public' ) ); ?> /> 186 186 <label for="blog-norobots"><?php _e( 'Discourage search engines from indexing this site' ); ?></label> -
trunk/src/wp-includes/media-template.php
r53777 r54062 1439 1439 ?> 1440 1440 </span> 1441 <button type="button" class="button-link remove-setting remove-track"><?php _ex( 'Remove video track', 'media' ); ?></button><br />1441 <button type="button" class="button-link remove-setting remove-track"><?php _ex( 'Remove video track', 'media' ); ?></button><br /> 1442 1442 <# } ); #> 1443 1443 <# } else { #> … … 1471 1471 </dl> 1472 1472 <# if ( index % data.columns === data.columns - 1 ) { #> 1473 <br style="clear: both;" >1473 <br style="clear: both;" /> 1474 1474 <# } #> 1475 1475 <# } ); #> -
trunk/src/wp-includes/widgets/class-wp-widget-archives.php
r51967 r54062 224 224 <input class="checkbox" type="checkbox"<?php checked( $instance['dropdown'] ); ?> id="<?php echo $this->get_field_id( 'dropdown' ); ?>" name="<?php echo $this->get_field_name( 'dropdown' ); ?>" /> 225 225 <label for="<?php echo $this->get_field_id( 'dropdown' ); ?>"><?php _e( 'Display as dropdown' ); ?></label> 226 <br />226 <br /> 227 227 <input class="checkbox" type="checkbox"<?php checked( $instance['count'] ); ?> id="<?php echo $this->get_field_id( 'count' ); ?>" name="<?php echo $this->get_field_name( 'count' ); ?>" /> 228 228 <label for="<?php echo $this->get_field_id( 'count' ); ?>"><?php _e( 'Show post counts' ); ?></label>
Note: See TracChangeset
for help on using the changeset viewer.