Changeset 25839 for trunk/src/wp-admin/about.php
- Timestamp:
- 10/18/2013 08:10:43 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/about.php
r25835 r25839 13 13 14 14 list( $display_version ) = explode( '-', $wp_version ); 15 16 wp_enqueue_script( 'about' ); 15 17 16 18 include( ABSPATH . 'wp-admin/admin-header.php' ); … … 37 39 <h3><?php _e( 'Background Updates' ); ?></h3> 38 40 39 <div class="feature-section col t wo-col">41 <div class="feature-section col three-col about-updates"> 40 42 <div> 41 43 <h4><?php _e( 'Updates While You Sleep' ); ?></h4> 42 44 <p><?php _e( 'With WordPress 3.7, you don’t have to lift a finger to apply maintenance and security updates. Most sites are now able to automatically apply these updates in the background, though some configurations may not allow it.' ); ?></p> 43 <?php 45 </div> 46 <div><img alt="" src="images/about-updates-2x.png" /></div> 47 <div class="last-feature"> 48 <h4><?php _e( 'More Reliable Than Ever' ); ?></h4> 49 <p><?php _e( 'The update process has been made even more reliable and secure, with dozens of new checks and safeguards.' ); ?></p> 50 <p><?php _e( 'You’ll still need to click “Update Now” once WordPress 3.8 is released, but we’ve never had more confidence in that beautiful blue button.' ); ?></p> 51 </div> 52 <?php 44 53 $can_auto_update = wp_http_supports( 'ssl' ); 45 54 if ( $can_auto_update ) { … … 58 67 <?php else : ?> 59 68 <p><?php printf( __( '→ This site <strong>is not</strong> able to apply these updates automatically. But we’ll email %s when there is a new security release.' ), esc_html( get_site_option( 'admin_email' ) ) ); ?></p> 60 <?php endif; ?> 61 </div> 62 <div class="last-feature"> 63 <h4><?php _e( 'More Reliable Than Ever' ); ?></h4> 64 <p><?php _e( 'The update process has been made even more reliable and secure, with dozens of new checks and safeguards.' ); ?></p> 65 <p><?php _e( 'You’ll still need to click “Update Now” once WordPress 3.8 is released, but we’ve never had more confidence in that beautiful blue button.' ); ?></p> 66 </div> 69 <?php endif; ?> 67 70 </div> 68 71 </div> 69 72 70 <div class="changelog ">73 <div class="changelog about-passwords"> 71 74 <h3><?php _e( 'Create Stronger Passwords' ); ?></h3> 72 75 73 76 <div class="feature-section col two-col"> 74 77 <div> 75 <p><?php _e( 'Your password is your site’s first line of defense. It’s best to create passwords that are complex, long, and unique. To that end, our password meter has been updated in WordPress 3.7 to recognize common mistakes that can weaken your password: dates, names, keyboard patterns (123456789), and even pop culture references.' ); ?> <?php _e( 'Try it out on the right.' ); ?></p> 78 <p><?php _e( 'Your password is your site’s first line of defense. It’s best to create passwords that are complex, long, and unique. To that end, our password meter has been updated in WordPress 3.7 to recognize common mistakes that can weaken your password: dates, names, keyboard patterns (123456789), and even pop culture references.' ); ?></p> 79 <p><strong><?php _e( 'Try it out on the right.' ); ?></strong></p> 76 80 </div> 77 <div class="last-feature"> 78 (Actual password meter demo) 81 <div class="last-feature about-password-meter"> 82 <input type="password" id="pass" size="25" value="" /> 83 <p id="pass-strength-result" ><?php _e( 'Strength indicator' ); ?></p> 84 <?php printf( __( 'Getting the urge to <a href="%s">change your password</a>?' ), esc_url( self_admin_url( 'profile.php' ) ) ); ?> 79 85 </div> 80 86 </div> … … 85 91 <div> 86 92 <h3><?php _e( 'Improved Search Results' ); ?></h3> 87 <p>< ?php _e( 'Search results are now ordered by how well the search query matches a post, instead of ordered only by date. For example, when your search terms match a post title, that result will be pushed to the top.' ); ?></p>93 <p><img alt="" src="images/about-search-2x.png" /><?php _e( 'Search results are now ordered by how well the search query matches a post, instead of ordered only by date. For example, when your search terms match a post title, that result will be pushed to the top.' ); ?></p> 88 94 </div> 89 95 <div class="last-feature"> 90 96 <h3><?php _e( 'Better Global Support' ); ?></h3> 91 <p>< ?php _e( 'Localized versions of WordPress will receive faster and more complete translations. WordPress 3.7 adds support for automatically installing the right language files and keeping them up to date.' ); ?></p>97 <p><img alt="" src="images/about-globe-2x.png" /><?php _e( 'Localized versions of WordPress will receive faster and more complete translations. WordPress 3.7 adds support for automatically installing the right language files and keeping them up to date.' ); ?></p> 92 98 </div> 93 99 </div>
Note: See TracChangeset
for help on using the changeset viewer.