Changeset 33817
- Timestamp:
- 08/31/2015 03:25:27 AM (10 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/common.css
r33762 r33817 330 330 } 331 331 332 .wrap > h1, 333 h2 { 332 .wrap > h1 { 334 333 color: #23282d; 335 334 font-size: 1.5em; … … 338 337 } 339 338 339 h2, 340 340 h3 { 341 341 color: #23282d; … … 569 569 570 570 .wrap h1, 571 .wrap h2,572 571 .subtitle { 573 572 font-weight: normal; … … 575 574 } 576 575 577 .wrap h1, 578 .wrap h2 { 576 .wrap h1 { 579 577 font-size: 23px; 580 578 font-weight: 400; -
trunk/src/wp-admin/update-core.php
r33802 r33817 160 160 161 161 if ( !isset($updates[0]->response) || 'latest' == $updates[0]->response ) { 162 echo '<h 3>';162 echo '<h2>'; 163 163 _e('You have the latest version of WordPress.'); 164 164 … … 176 176 echo ' ' . __( 'Future security updates will be applied automatically.' ); 177 177 } 178 echo '</h 3>';178 echo '</h2>'; 179 179 } else { 180 180 echo '<div class="notice notice-warning"><p>'; … … 182 182 echo '</p></div>'; 183 183 184 echo '<h 3class="response">';184 echo '<h2 class="response">'; 185 185 _e( 'An updated version of WordPress is available.' ); 186 echo '</h 3>';186 echo '</h2>'; 187 187 } 188 188 … … 226 226 $plugins = get_plugin_updates(); 227 227 if ( empty( $plugins ) ) { 228 echo '<h 3>' . __( 'Plugins' ) . '</h3>';228 echo '<h2>' . __( 'Plugins' ) . '</h2>'; 229 229 echo '<p>' . __( 'Your plugins are all up to date.' ) . '</p>'; 230 230 return; … … 238 238 $core_update_version = $core_updates[0]->current; 239 239 ?> 240 <h 3><?php _e( 'Plugins' ); ?></h3>240 <h2><?php _e( 'Plugins' ); ?></h2> 241 241 <p><?php _e( 'The following plugins have new versions available. Check the ones you want to update and then click “Update Plugins”.' ); ?></p> 242 242 <form method="post" action="<?php echo esc_url( $form_action ); ?>" name="upgrade-plugins" class="upgrade"> … … 315 315 $themes = get_theme_updates(); 316 316 if ( empty( $themes ) ) { 317 echo '<h 3>' . __( 'Themes' ) . '</h3>';317 echo '<h2>' . __( 'Themes' ) . '</h2>'; 318 318 echo '<p>' . __( 'Your themes are all up to date.' ) . '</p>'; 319 319 return; … … 322 322 $form_action = 'update-core.php?action=do-theme-upgrade'; 323 323 ?> 324 <h 3><?php _e( 'Themes' ); ?></h3>324 <h2><?php _e( 'Themes' ); ?></h2> 325 325 <p><?php _e( 'The following themes have new versions available. Check the ones you want to update and then click “Update Themes”.' ); ?></p> 326 326 <p><?php printf( __( '<strong>Please Note:</strong> Any customizations you have made to theme files will be lost. Please consider using <a href="%s">child themes</a> for modifications.' ), __( 'https://codex.wordpress.org/Child_Themes' ) ); ?></p> … … 367 367 if ( ! $updates ) { 368 368 if ( 'en_US' != get_locale() ) { 369 echo '<h 3>' . __( 'Translations' ) . '</h3>';369 echo '<h2>' . __( 'Translations' ) . '</h2>'; 370 370 echo '<p>' . __( 'Your translations are all up to date.' ) . '</p>'; 371 371 } … … 375 375 $form_action = 'update-core.php?action=do-translation-upgrade'; 376 376 ?> 377 <h 3><?php _e( 'Translations' ); ?></h3>377 <h2><?php _e( 'Translations' ); ?></h2> 378 378 <form method="post" action="<?php echo esc_url( $form_action ); ?>" name="upgrade-translations" class="upgrade"> 379 379 <p><?php _e( 'New translations are available.' ); ?></p>
Note: See TracChangeset
for help on using the changeset viewer.