]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/about.php
WordPress 4.2.5-scripts
[autoinstalls/wordpress.git] / wp-admin / about.php
index a694fe54e71af3f9cfa5ea1887e0ca04c4fd81de..6e85b919a6b818f90e57a0f149d11e18b7470372 100644 (file)
@@ -9,19 +9,24 @@
 /** WordPress Administration Bootstrap */
 require_once( dirname( __FILE__ ) . '/admin.php' );
 
+wp_enqueue_style( 'wp-mediaelement' );
+wp_enqueue_script( 'wp-mediaelement' );
+wp_localize_script( 'mediaelement', '_wpmejsSettings', array(
+       'pluginPath' => includes_url( 'js/mediaelement/', 'relative' ),
+       'pauseOtherPlayers' => ''
+) );
+
 $title = __( 'About' );
 
 list( $display_version ) = explode( '-', $wp_version );
 
-wp_enqueue_script( 'about' );
-
 include( ABSPATH . 'wp-admin/admin-header.php' );
 ?>
 <div class="wrap about-wrap">
 
-<h1><?php printf( __( 'Welcome to WordPress %s' ), $display_version ); ?></h1>
+<h1><?php printf( __( 'Welcome to WordPress&nbsp;%s' ), $display_version ); ?></h1>
 
-<div class="about-text"><?php printf( __( 'Thank you for updating to WordPress 3.7! You might not notice a thing, and we&#8217;re okay with that.' ), $display_version ); ?></div>
+<div class="about-text"><?php printf( __( 'Thank you for updating! WordPress %s helps you communicate and share, globally.' ), $display_version ); ?></div>
 
 <div class="wp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div>
 
@@ -35,111 +40,123 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
        </a>
 </h2>
 
-<div class="changelog">
-       <h3><?php _e( 'Background Updates' ); ?></h3>
+<div class="changelog point-releases">
+       <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 5 ); ?></h3>
+       <p><?php printf( _n( '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
+         '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.', 2 ), '4.2.5', number_format_i18n( 2 ) ); ?>
+               <?php printf( __( 'For more information, see <a href="%s">the release notes</a>.' ), 'http://codex.wordpress.org/Version_4.2.5' ); ?>
+       </p>
+       <p><?php printf( _n( '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
+         '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.', 4 ), '4.2.4', number_format_i18n( 4 ) ); ?>
+               <?php printf( __( 'For more information, see <a href="%s">the release notes</a>.' ), 'http://codex.wordpress.org/Version_4.2.4' ); ?>
+       </p>
+       <p><?php printf( _n( '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
+         '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.', 20 ), '4.2.3', number_format_i18n( 20 ) ); ?>
+               <?php printf( __( 'For more information, see <a href="%s">the release notes</a>.' ), 'http://codex.wordpress.org/Version_4.2.3' ); ?>
+       </p>
+       <p><?php printf( _n( '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
+         '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.', 13 ), '4.2.2', number_format_i18n( 13 ) ); ?>
+               <?php printf( __( 'For more information, see <a href="%s">the release notes</a>.' ), 'http://codex.wordpress.org/Version_4.2.2' ); ?>
+       </p>
+       <p><?php printf( _n( '<strong>Version %1$s</strong> addressed a security issue.',
+         '<strong>Version %1$s</strong> addressed some security issues.', 1 ), '4.2.1' ); ?>
+               <?php printf( __( 'For more information, see <a href="%s">the release notes</a>.' ), 'http://codex.wordpress.org/Version_4.2.1' ); ?>
+       </p>
+</div>
 
-       <div class="feature-section col three-col about-updates">
-               <div class="col-1">
-                       <h4><?php _e( 'Updates While You Sleep' ); ?></h4>
-                       <p><?php _e( 'With WordPress 3.7, you don&#8217;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>
-               </div>
-               <div class="col-2">
-                       <img alt="" src="<?php echo admin_url( 'images/about-updates-2x.png' ); ?>" />
-               </div>
-               <div class="col-3 last-feature">
-                       <h4><?php _e( 'More Reliable Than Ever' ); ?></h4>
-                       <p><?php _e( 'The update process has been made even more reliable and secure, with dozens of new checks and safeguards.' ); ?></p>
-                       <p><?php _e( 'You&#8217;ll still need to click &#8220;Update Now&#8221; once WordPress 3.8 is released, but we&#8217;ve never had more confidence in that beautiful blue button.' ); ?></p>
-               </div>
-               <?php
-               if ( current_user_can( 'update_core' ) ) {
-                       $future_minor_update = (object) array(
-                               'current'       => $wp_version . '.1.next.minor',
-                               'version'       => $wp_version . '.1.next.minor',
-                               'php_version'   => $required_php_version,
-                               'mysql_version' => $required_mysql_version,
-                       );
-                       require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
-                       $updater = new WP_Automatic_Updater;
-                       $can_auto_update = wp_http_supports( 'ssl' ) && $updater->should_update( 'core', $future_minor_update, ABSPATH );
-
-                       if ( $can_auto_update ) {
-                               echo '<p class="about-auto-update cool">' . __( 'This site <strong>is</strong> able to apply these updates automatically. Cool!' ). '</p>';
-
-                       // If the updater is disabled entirely, don't show them anything.
-                       } elseif ( ! $updater->is_disabled() ) {
-                               echo '<p class="about-auto-update">';
-                               // If this is is filtered to false, they won't get emails, so don't claim we will.
-                               // Assumption: If the user can update core, they can see what the admin email is.
-
-                               /** This filter is documented in wp-admin/includes/class-wp-upgrader.php */
-                               if ( apply_filters( 'send_core_update_notification_email', true, $future_minor_update ) ) {
-                                       printf( __( 'This site <strong>is not</strong> able to apply these updates automatically. But we&#8217;ll email %s when there is a new security release.' ), esc_html( get_site_option( 'admin_email' ) ) );
-                               } else {
-                                       _e( 'This site <strong>is not</strong> able to apply these updates automatically.' );
-                               }
-                               echo '</p>';
-                       }
-               }
-               ?>
-       </div>
+<div class="headline-feature feature-video">
+       <embed type="application/x-shockwave-flash" src="https://v0.wordpress.com/player.swf?v=1.04" width="1000" height="560" wmode="direct" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true" flashvars="guid=e9kH4FzP&amp;isDynamicSeeking=true"></embed>
 </div>
 
-<div class="changelog about-passwords">
-       <h3><?php _e( 'Create Stronger Passwords' ); ?></h3>
+<hr />
 
-       <div class="feature-section col two-col">
-               <div>
-                       <p><?php _e( 'Your password is your site&#8217;s first line of defense. It&#8217;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>
-                       <p><strong><?php _e( 'Try it out on the right.' ); ?></strong></p>
-               </div>
-               <div class="last-feature about-password-meter">
-                       <input type="password" id="pass" size="25" value="" />
-                       <p id="pass-strength-result" ><?php _e( 'Strength indicator' ); ?></p>
-                       <?php printf( __( 'Getting the urge to <a href="%s">change your password</a>?' ), esc_url( self_admin_url( 'profile.php' ) ) ); ?>
-               </div>
+<div class="feature-section two-col">
+       <div class="col">
+               <h3><?php _e( 'An easier way to share content' ); ?></h3>
+               <p><?php printf( __( 'Clip it, edit it, publish it. Get familiar with the new and improved Press This. From the <a href="%s">Tools</a> menu, add Press This to your browser bookmark bar or your mobile device home screen. Once installed you can share your content with lightning speed. Sharing your favorite videos, images, and content has never been this fast or this easy.' ), admin_url( 'tools.php' ) ); ?></p>
+               <p><?php _e( 'Drag the bookmarklet below to your bookmarks bar. Then, when you&#8217;re on a page you want to share, simply &#8220;press&#8221; it.' ); ?></p>
+
+               <p class="pressthis-bookmarklet-demo">
+                       <a class="pressthis-bookmarklet" onclick="return false;" href="<?php echo htmlspecialchars( get_shortcut_link() ); ?>"><span><?php _e( 'Press This' ); ?></span></a>
+               </p>
+       </div>
+
+       <div class="col">
+               <img src="//s.w.org/images/core/4.2/press-this.jpg" />
        </div>
 </div>
 
-<div class="changelog">
-       <div class="feature-section col two-col">
-               <div>
-                       <h3><?php _e( 'Improved Search Results' ); ?></h3>
-                       <p><img alt="" src="<?php echo admin_url( '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>
-               </div>
-               <div class="last-feature">
-                       <h3><?php _e( 'Better Global Support' ); ?></h3>
-                       <p><img alt="" src="<?php echo admin_url( '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>
-               </div>
+<div class="feature-section two-col">
+       <div class="col">
+               <img src="//s.w.org/images/core/4.2/unicode.png" />
+       </div>
+       <div class="col">
+               <h3><?php _e( 'Extended character support' ); ?></h3>
+               <p><?php _e( 'Writing in WordPress, whatever your language, just got better. WordPress 4.2 supports a host of new characters out-of-the-box, including native Chinese, Japanese, and Korean characters, musical and mathematical symbols, and hieroglyphs.' ); ?></p>
+               <p><?php
+                       /* translators: 1: heart emoji, 2: frog face emoji, 3, monkey emoji, 4: pizza emoji, 5: Emoji Codex link */
+                       printf( __( 'Don&#8217;t use any of those characters? You can still have fun &mdash; emoji are now available in WordPress! Get creative and decorate your content with %1$s, %2$s, %3$s, %4$s, and all the many other <a href="%5$s">emoji</a>.' ), '&#x1F499', '&#x1F438', '&#x1F412', '&#x1F355', __( 'https://codex.wordpress.org/Emoji' ) );
+               ?></p>
        </div>
 </div>
 
-<div class="changelog">
+<div class="changelog feature-section three-col">
+       <div>
+               <img src="//s.w.org/images/core/4.2/theme-switcher.png" />
+               <h3><?php _e( 'Switch themes in the Customizer' ); ?></h3>
+               <p><?php _e( 'Browse and preview your installed themes from the Customizer. Make sure the theme looks great with <em>your</em> content, before it debuts on your site. ' ); ?></p>
+       </div>
+       <div>
+               <img src="//s.w.org/images/core/4.2/embeds.png" />
+               <h3><?php _e( 'Even more embeds' ); ?></h3>
+               <p><?php _e( 'Paste links from Tumblr.com and Kickstarter and watch them magically appear right in the editor. With every release, your publishing and editing experience get closer together.' ); ?></p>
+       </div>
+       <div class="last-feature">
+               <img src="//s.w.org/images/core/4.2/plugins.png" />
+               <h3><?php _e( 'Streamlined plugin updates' ); ?></h3>
+               <p><?php _e( 'Goodbye boring loading screen, hello smooth and simple plugin updates. Click <em>Update&nbsp;Now</em> and watch the magic happen.' ); ?></p>
+       </div>
+</div>
+
+<div class="changelog under-the-hood feature-list">
        <h3><?php _e( 'Under the Hood' ); ?></h3>
 
-       <div class="feature-section col three-col">
-               <div>
-                       <h4><?php _e( 'More Background Updates (Experimental)' ); ?></h4>
-                       <p><?php _e( 'Want WordPress to always update automatically, even for major feature releases? Want to always keep a certain plugin up to date in the background? WordPress 3.7 comes with fine-grained update controls for developers and systems administrators.' ); ?></p>
-               </div>
+       <div class="feature-section col two-col">
                <div>
-                       <h4><?php _e( 'Advanced Date Queries' ); ?></h4>
-                       <p><?php _e( 'Developers can now query for posts within a date range, or that are older than or newer than a specific point in time. Or get really fancy: all posts written on Friday afternoons? Not&nbsp;a&nbsp;problem.' ); ?></p>
+                       <h4><?php _e( 'utf8mb4 support' ); ?></h4>
+                       <p><?php _e( 'Database character encoding has changed from utf8 to utf8mb4, which adds support for a whole range of new 4-byte characters.' ); ?></p>
+
+                       <h4><?php _e( 'JavaScript accessibility' ); ?></h4>
+                       <p><?php
+                               /* translators: %s wp.a11y.speak() */
+                               printf( __( 'You can now send audible notifications to screen readers in JavaScript with %s. Pass it a string, and an update will be sent to a dedicated ARIA live notifications area.' ), '<code>wp.a11y.speak()</code>' );
+                       ?></p>
                </div>
                <div class="last-feature">
-                       <h4><?php _e( 'Multisite Improvements' ); ?></h4>
-                       <p><?php _e( '<code>wp_get_sites()</code> allows developers to easily get an array of all the sites on your network without resorting to a direct database query &mdash; just one of many improvements to multisite in WordPress 3.7.' ); ?></p>
+                       <h4><?php _e( 'Shared term splitting' ); ?></h4>
+                       <p><?php
+                               /* translators: 1: Term splitting guide link */
+                               printf( __( 'Terms shared across multiple taxonomies will be split when one of them is updated. Find out more in the <a href="%1$s">Plugin Developer Handbook</a>.' ), 'https://developer.wordpress.org/plugins/taxonomy/working-with-split-terms-in-wp-4-2/' );
+                       ?></p>
+
+                       <h4><?php _e( 'Complex query ordering' ); ?></h4>
+                       <p><?php
+                               /* translators: 1: WP_Query, 2: WP_Comment_Query, 3: WP_User_Query */
+                               printf( __( '%1$s, %2$s, and %3$s now support complex ordering with named meta query clauses.' ), '<code>WP_Query</code>', '<code>WP_Comment_Query</code>', '<code>WP_User_Query</code>' );
+                       ?></p>
                </div>
-</div>
 
-<div class="return-to-dashboard">
-       <?php if ( current_user_can( 'update_core' ) && isset( $_GET['updated'] ) ) : ?>
-       <a href="<?php echo esc_url( self_admin_url( 'update-core.php' ) ); ?>"><?php
-               is_multisite() ? _e( 'Return to Updates' ) : _e( 'Return to Dashboard &rarr; Updates' );
-       ?></a> |
-       <?php endif; ?>
-       <a href="<?php echo esc_url( self_admin_url() ); ?>"><?php
-               is_blog_admin() ? _e( 'Go to Dashboard &rarr; Home' ) : _e( 'Go to Dashboard' ); ?></a>
+       <hr />
+
+       <div class="return-to-dashboard">
+               <?php if ( current_user_can( 'update_core' ) && isset( $_GET['updated'] ) ) : ?>
+               <a href="<?php echo esc_url( self_admin_url( 'update-core.php' ) ); ?>"><?php
+                       is_multisite() ? _e( 'Return to Updates' ) : _e( 'Return to Dashboard &rarr; Updates' );
+               ?></a> |
+               <?php endif; ?>
+               <a href="<?php echo esc_url( self_admin_url() ); ?>"><?php
+                       is_blog_admin() ? _e( 'Go to Dashboard &rarr; Home' ) : _e( 'Go to Dashboard' ); ?></a>
+       </div>
 </div>
 
 </div>