2011-09-21 19:20:26 -04:00
< ? php
/**
* About This Version administration panel .
*
* @ package WordPress
* @ subpackage Administration
*/
/** WordPress Administration Bootstrap */
2013-09-24 20:18:11 -04:00
require_once ( dirname ( __FILE__ ) . '/admin.php' );
2011-09-21 19:20:26 -04:00
$title = __ ( 'About' );
2011-11-03 19:55:03 -04:00
list ( $display_version ) = explode ( '-' , $wp_version );
2012-01-06 12:53:41 -05:00
include ( ABSPATH . 'wp-admin/admin-header.php' );
2011-09-21 19:20:26 -04:00
?>
2011-11-03 19:13:50 -04:00
< div class = " wrap about-wrap " >
2011-09-21 19:20:26 -04:00
2013-12-06 20:34:12 -05:00
< h1 >< ? php printf ( __ ( 'Welcome to WordPress %s' ), $display_version ); ?> </h1>
2011-09-21 19:20:26 -04:00
2014-04-15 03:53:14 -04:00
< div class = " about-text " >< ? php printf ( __ ( 'Thank you for updating! WordPress %s has lots of refinements we think you᾿ll love.' ), $display_version ); ?> </div>
2011-09-21 19:20:26 -04:00
2011-11-03 19:55:03 -04:00
< div class = " wp-badge " >< ? php printf ( __ ( 'Version %s' ), $display_version ); ?> </div>
2011-11-03 19:13:50 -04:00
< h2 class = " nav-tab-wrapper " >
2011-11-03 19:23:31 -04:00
< a href = " about.php " class = " nav-tab nav-tab-active " >
2011-12-01 18:13:56 -05:00
< ? php _e ( 'What’s New' ); ?>
2011-11-03 19:23:31 -04:00
</ a >< a href = " credits.php " class = " nav-tab " >
2011-11-03 19:13:50 -04:00
< ? php _e ( 'Credits' ); ?>
2011-11-03 19:23:31 -04:00
</ a >< a href = " freedoms.php " class = " nav-tab " >
2011-11-03 19:13:50 -04:00
< ? php _e ( 'Freedoms' ); ?>
</ a >
</ h2 >
2011-09-21 19:20:26 -04:00
< div class = " changelog " >
2014-04-14 21:31:14 -04:00
< div class = " about-overview " >
< img class = " about-overview-img " src = " //wordpress.org/images/core/3.9/overview.png?0 " />
</ div >
2014-04-15 03:53:14 -04:00
< h2 class = " about-headline-callout " >< ? php _e ( 'A smoother media editing experience' ); ?> </h2>
2014-04-08 13:47:15 -04:00
< div class = " feature-section col three-col " >
2013-10-24 18:55:55 -04:00
< div class = " col-1 " >
2014-04-14 21:31:14 -04:00
< img src = " //wordpress.org/images/core/3.9/editor.jpg?0 " />
2014-04-15 03:53:14 -04:00
< h4 >< ? php _e ( 'Improved visual editing' ); ?> </h4>
< p >< ? php _e ( 'The updated visual editor has improved speed, accessibility, and mobile support.' );
echo ' ' . __ ( 'You can paste into the visual editor from your word processor without wasting time to clean up messy styling. (Yeah, we’re talking about you, Microsoft Word.)' ); ?> </p>
2013-10-24 18:55:12 -04:00
</ div >
2013-10-24 18:55:55 -04:00
< div class = " col-2 " >
2014-04-14 21:31:14 -04:00
< img src = " //wordpress.org/images/core/3.9/image.jpg?0 " />
2014-04-15 03:53:14 -04:00
< h4 >< ? php _e ( 'Edit images easily' ); ?> </h4>
< p >< ? php _e ( 'With quicker access to crop and rotation tools, it᾿s now much easier to edit your images while editing posts. You can also scale images directly in the editor to find just the right fit.' ); ?> </p>
2013-10-24 18:55:55 -04:00
</ div >
< div class = " col-3 last-feature " >
2014-04-14 21:31:14 -04:00
< img src = " //wordpress.org/images/core/3.9/drop.jpg?0 " />
2014-04-15 03:53:14 -04:00
< h4 >< ? php _e ( 'Drag and drop your images' ); ?> </h4>
< p >< ? php _e ( 'Uploading your images is easier than ever. Just grab them from your desktop and drop them in the editor.' ); ?> </p>
2013-10-24 18:55:12 -04:00
</ div >
2011-11-22 11:07:36 -05:00
</ div >
2014-04-14 21:31:14 -04:00
< hr >
< div class = " feature-section col two-col " >
2014-04-08 13:47:15 -04:00
< div class = " col-1 " >
2014-04-14 21:31:14 -04:00
< img src = " //wordpress.org/images/core/3.9/gallery.jpg?0 " />
2014-04-15 03:53:14 -04:00
< h4 >< ? php _e ( 'Gallery previews' ); ?> </h4>
< p >< ? php _e ( 'Galleries display a beautiful grid of images right in the editor, just like they do in your published post.' ); ?> </p>
2013-07-27 08:10:58 -04:00
</ div >
2014-04-14 21:31:14 -04:00
< div class = " col-2 last-feature " >
2014-04-15 03:53:14 -04:00
< img src = " //wordpress.org/images/core/3.9/gallery.jpg?0 " />
< h4 >< ? php _e ( 'Do more with audio and video' ); ?> </h4>
< p >< ? php _e ( 'Images have galleries; now we’ve added simple audio and video playlists, so you can showcase your music and clips.' ); ?> </p>
2013-07-27 08:10:58 -04:00
</ div >
2012-06-01 21:16:35 -04:00
</ div >
</ div >
2013-12-07 23:12:11 -05:00
< hr >
2013-12-06 02:50:12 -05:00
2014-04-14 21:31:14 -04:00
< div class = " changelog customize " >
2013-10-24 18:54:13 -04:00
< div class = " feature-section col two-col " >
2013-10-24 18:53:14 -04:00
< div >
2014-04-15 03:53:14 -04:00
< img src = " //wordpress.org/images/core/3.9/theme.jpg?0 " />
< h4 >< ? php _e ( 'Live widget and header previews' ); ?> </h4>
< p >< ? php _e ( 'Add, edit, and rearrange your site’s widgets right in the theme customizer. No “save and surprise” — preview your changes live and only save them when you’re ready.' ); ?> </p>
< p >< ? php _e ( 'The improved header image tool also lets you upload, crop, and manage headers while customizing your theme.' ); ?> </p>
2013-10-24 18:53:14 -04:00
</ div >
2014-04-08 13:47:15 -04:00
< div class = " last-feature " >
2014-04-14 21:31:14 -04:00
< img src = " //wordpress.org/images/core/3.9/theme.jpg?0 " />
2014-04-12 16:52:14 -04:00
< h4 >< ? php _e ( 'Stunning new theme browser' ); ?> </h4>
< p >< ? php _e ( 'Looking for a new theme should be easy and fun. Lose yourself in the boundless supply of free WordPress.org themes with the beautiful new theme browser.' ); ?> </p>
2014-04-15 03:53:14 -04:00
< ? php if ( current_user_can ( 'install_themes' ) ) { ?>
< p >< a href = " <?php echo network_admin_url( 'theme-install.php' ); ?> " class = " button button-large button-primary " >< ? php _e ( 'Browse Themes' ); ?> </a></p>
< ? php } ?>
2013-10-24 18:53:14 -04:00
</ div >
</ div >
2013-10-24 18:54:13 -04:00
</ div >
2013-12-07 23:12:11 -05:00
< hr >
2013-12-06 02:50:12 -05:00
2014-04-14 21:31:14 -04:00
< div class = " changelog under-the-hood " >
2014-04-08 13:47:15 -04:00
< h3 >< ? php _e ( 'Under the Hood' ); ?> </h3>
2013-12-06 02:50:12 -05:00
2014-04-08 13:47:15 -04:00
< div class = " feature-section col three-col " >
2013-12-06 02:50:12 -05:00
< div >
2014-04-12 16:52:14 -04:00
< h4 >< ? php _e ( 'Semantic Captions and Galleries' ); ?> </h4>
< p >< ? php _e ( 'Theme developers have new options for images and galleries that use intelligent HTML5 markup.' ); ?> </p>
2014-04-08 13:47:15 -04:00
2014-04-12 16:52:14 -04:00
< h4 >< ? php _e ( 'Inline Code Documentation' ); ?> </h4>
< p >< ? php _e ( 'Every action and filter hook in WordPress is now documented, along with expanded documentation for the media manager and customizer APIs.' ); ?> </p>
2014-04-08 13:47:15 -04:00
</ div >
< div >
2014-04-12 16:52:14 -04:00
< h4 >< ? php _e ( 'External Libraries' ); ?> </h4>
< p >< ? php _e ( 'Updated libraries: TinyMCE 4, jQuery 1.11, Backbone 1.1, Underscore 1.6, Plupload 2, MediaElement 2.14, Masonry 3.' ); ?> </p>
2014-04-08 13:47:15 -04:00
2014-04-12 16:52:14 -04:00
< h4 >< ? php _e ( 'Improved Database Layer' ); ?> </h4>
< p >< ? php _e ( 'Database connections are now more fault-resistant and have improved compatibility with PHP 5.5 and MySQL 5.6.' ); ?> </p>
2014-04-08 13:47:15 -04:00
</ div >
< div class = " last-feature " >
2014-04-12 16:52:14 -04:00
< h4 >< ? php _e ( 'New Utility Functions' ); ?> </h4>
< p >< ? php _e ( 'Identify a hook in progress with <code>doing_action()</code> and <code>doing_filter()</code>, and manipulate custom image sizes with <code>has_image_size()</code> and <code>remove_image_size()</code>.' ); ?> </p>
2014-04-15 04:26:15 -04:00
< p >< ? php _e ( 'Plugins and themes registering custom image sizes can now register suggested cropping points. For example, prevent heads from being cropped out of photos with a top-center crop.' ); ?> </p>
2013-12-06 02:50:12 -05:00
</ div >
</ div >
2013-12-07 23:12:11 -05:00
< hr >
2013-12-06 02:50:12 -05:00
2011-11-03 19:13:50 -04:00
< div class = " return-to-dashboard " >
2011-11-30 23:38:51 -05:00
< ? php if ( current_user_can ( 'update_core' ) && isset ( $_GET [ 'updated' ] ) ) : ?>
2012-01-06 12:53:41 -05:00
< a href = " <?php echo esc_url( self_admin_url( 'update-core.php' ) ); ?> " >< ? php
2011-11-30 23:38:51 -05:00
is_multisite () ? _e ( 'Return to Updates' ) : _e ( 'Return to Dashboard → Updates' );
?> </a> |
2011-11-23 18:38:36 -05:00
< ? php endif ; ?>
2012-01-06 12:53:41 -05:00
< a href = " <?php echo esc_url( self_admin_url() ); ?> " >< ? php
2012-01-06 13:08:45 -05:00
is_blog_admin () ? _e ( 'Go to Dashboard → Home' ) : _e ( 'Go to Dashboard' ); ?> </a>
2011-11-03 19:13:50 -04:00
</ div >
2011-09-21 19:20:26 -04:00
</ div >
< ? php
2012-01-06 12:53:41 -05:00
include ( ABSPATH . 'wp-admin/admin-footer.php' );
2011-12-01 18:13:56 -05:00
// These are strings we may use to describe maintenance/security releases, where we aim for no new strings.
return ;
_n_noop ( 'Maintenance Release' , 'Maintenance Releases' );
_n_noop ( 'Security Release' , 'Security Releases' );
_n_noop ( 'Maintenance and Security Release' , 'Maintenance and Security Releases' );
/* translators: 1: WordPress version number. */
_n_noop ( '<strong>Version %1$s</strong> addressed a security issue.' ,
'<strong>Version %1$s</strong> addressed some security issues.' );
2011-12-02 12:17:08 -05:00
/* translators: 1: WordPress version number, 2: plural number of bugs. */
_n_noop ( '<strong>Version %1$s</strong> addressed %2$s bug.' ,
2011-12-01 18:13:56 -05:00
'<strong>Version %1$s</strong> addressed %2$s bugs.' );
2011-12-02 12:17:08 -05:00
/* translators: 1: WordPress version number, 2: plural number of bugs. Singular security issue. */
_n_noop ( '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.' ,
2011-12-01 18:13:56 -05:00
'<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.' );
2011-12-02 12:17:08 -05:00
/* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */
_n_noop ( '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.' ,
2011-12-01 18:13:56 -05:00
'<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.' );
2011-12-02 12:17:08 -05:00
__ ( 'For more information, see <a href="%s">the release notes</a>.' );