]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/about.php
Wordpress 3.6
[autoinstalls/wordpress.git] / wp-admin / about.php
1 <?php
2 /**
3  * About This Version administration panel.
4  *
5  * @package WordPress
6  * @subpackage Administration
7  */
8
9 /** WordPress Administration Bootstrap */
10 require_once( './admin.php' );
11
12 $title = __( 'About' );
13
14 list( $display_version ) = explode( '-', $wp_version );
15
16 include( ABSPATH . 'wp-admin/admin-header.php' );
17 ?>
18 <div class="wrap about-wrap">
19
20 <h1><?php printf( __( 'Welcome to WordPress %s' ), $display_version ); ?></h1>
21
22 <div class="about-text"><?php printf( __( 'Thank you for updating to the latest version. WordPress %s makes your writing experience even better.' ), $display_version ); ?></div>
23
24 <div class="wp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div>
25
26 <h2 class="nav-tab-wrapper">
27         <a href="about.php" class="nav-tab nav-tab-active">
28                 <?php _e( 'What&#8217;s New' ); ?>
29         </a><a href="credits.php" class="nav-tab">
30                 <?php _e( 'Credits' ); ?>
31         </a><a href="freedoms.php" class="nav-tab">
32                 <?php _e( 'Freedoms' ); ?>
33         </a>
34 </h2>
35
36 <div class="changelog">
37         <h3><?php _e( 'Colorful New Theme' ); ?></h3>
38
39         <div class="feature-section images-stagger-right">
40                 <img alt="" src="<?php echo is_ssl() ? 'https://' : '//s.'; ?>wordpress.org/images/core/3.6/twentythirteen.png" class="image-66" />
41                 <h4><?php _e( 'Introducing Twenty Thirteen' ); ?></h4>
42                 <p><?php printf( __( "The new default theme puts focus on your content with a colorful, single-column design made for media-rich blogging." ) ); ?></p>
43                 <p><?php _e( 'Inspired by modern art, Twenty Thirteen features quirky details, beautiful typography, and bold, high-contrast colors &mdash; all with a flexible layout that looks great on any device, big or small.' ); ?></p>
44         </div>
45 </div>
46
47 <div class="changelog">
48         <h3><?php _e( 'Write with Confidence' ); ?></h3>
49
50         <div class="feature-section images-stagger-right">
51                 <img alt="" src="<?php echo is_ssl() ? 'https://' : '//s.'; ?>wordpress.org/images/core/3.6/revisions.png" class="image-66" />
52                 <h4><?php _e( 'Explore Revisions' ); ?></h4>
53                 <p></p>
54                 <p><?php _e( 'From the first word you write, WordPress saves every change. Each revision is always at your fingertips. Text is highlighted as you scroll through revisions at lightning speed, so you can see what changes have been made along the way.' ); ?></p>
55                 <p><?php _e( 'It&#8217;s easy to compare two revisions from any point in time, and to restore a revision and go back to writing. Now you can be confident that no mistake is permanent.' ); ?></p>
56         </div>
57
58         <div class="feature-section col two-col">
59                 <div>
60                         <h4><?php _e( 'Improved Autosaves' ); ?></h4>
61                         <p><?php _e( 'Never lose a word you&#8217;ve written. Autosaving is now even better; whether your power goes out, your browser crashes, or you lose your internet connection, your content is safe.' ); ?></p>
62                 </div>
63                 <div class="last-feature">
64                         <h4><?php _e( 'Better Post Locking' ); ?></h4>
65                         <p><?php _e( 'Always know who&#8217;s editing with live updates that appear in the list of posts. And if someone leaves for lunch with a post open, you can take over where they left off.' ); ?></p>
66                 </div>
67         </div>
68 </div>
69
70 <div class="changelog">
71         <h3><?php _e( 'Support for Audio and Video' ); ?></h3>
72
73         <div class="feature-section images-stagger-right">
74                 <div class="video image-66"><?php
75                         $sample_video = ( is_ssl() ? 'https://' : 'http://s.' ) . 'wordpress.org/images/core/3.6/sample-video';
76                         $args = array(
77                                 'mp4' => "$sample_video.mp4",
78                                 'ogv' => "$sample_video.ogv",
79                                 'width' => 625,
80                                 'height' => 360,
81                         );
82                         // Opera 12 (Presto, pre-Chromium) fails to load ogv properly
83                         // when combined with ME.js. Works fine in Opera 15.
84                         // Don't serve ogv to Opera 12 to avoid complete brokeness.
85                         if ( $GLOBALS['is_opera'] )
86                                 unset( $args['ogv'] );
87                         // Our current ME.js API is limited to shortcodes in posts.
88                         echo wp_video_shortcode( $args );
89                 ?></div>
90                 <h4><?php _e( 'New Media Player' ); ?></h4>
91                 <p><?php _e( 'Share your audio and video with the new built-in HTML5 media player. Upload files using the media manager and embed them in your posts.' ); ?></p>
92
93                 <h4><?php _e( 'Embed Music from Spotify, Rdio, and SoundCloud' ); ?></h4>
94                 <p><?php _e( 'Embed songs and albums from your favorite artists, or playlists you&#8217;ve mixed yourself. It&#8217;s as simple as pasting a URL into a post on its own line.' ); ?></p>
95                 <p><?php printf( __( '(Love another service? Check out all of the <a href="%s">embeds</a> that WordPress supports.)' ), 'http://codex.wordpress.org/Embeds' ); ?></p>
96         </div>
97 </div>
98
99 <div class="changelog">
100         <h3><?php _e( 'Under the Hood' ); ?></h3>
101
102         <div class="feature-section col three-col">
103                 <div>
104                         <h4><?php _e( 'Audio/Video API' ); ?></h4>
105                         <p><?php _e( 'The new audio/video APIs give developers access to powerful media metadata, like ID3 tags.' ); ?></p>
106                 </div>
107                 <div>
108                         <h4><?php _e( 'Semantic Markup' ); ?></h4>
109                         <p><?php _e( 'Themes can now choose improved HTML5 markup for comment forms, search forms, and comment lists.' ); ?></p>
110                 </div>
111                 <div class="last-feature">
112                         <h4><?php _e( 'JavaScript Utilities' ); ?></h4>
113                         <p><?php _e( 'Handy JavaScript utilities ease common tasks like Ajax requests, templating, and Backbone view management.' ); ?></p>
114                 </div>
115         </div>
116
117         <div class="feature-section col three-col">
118                 <div>
119                         <h4><?php _e( 'Shortcode Improvements' ); ?></h4>
120                         <p><?php _e( 'Search content for shortcodes with <code>has_shortcode()</code> and adjust shortcode attributes with a new filter.' ); ?></p>
121                 </div>
122                 <div>
123                         <h4><?php _e( 'Revision Control' ); ?></h4>
124                         <p><?php _e( 'Fine-grained revision controls allow you to keep a different number of revisions for each post type.' ); ?></p>
125                 </div>
126                 <div class="last-feature">
127                         <h4><?php _e( 'External Libraries' ); ?></h4>
128                         <p><?php
129                                 /* translators: placeholders 2, 3 and 4 are version numbers */
130                                 printf( __( 'New and updated libraries: <a href="%1$s">MediaElement.js</a>, jQuery %2$s, jQuery UI %3$s, jQuery Migrate, Backbone %4$s.' ), 'http://mediaelementjs.com/', '1.10.2', '1.10.3', '1.0' ); ?></p>
131                 </div>
132         </div>
133 </div>
134
135 <div class="return-to-dashboard">
136         <?php if ( current_user_can( 'update_core' ) && isset( $_GET['updated'] ) ) : ?>
137         <a href="<?php echo esc_url( self_admin_url( 'update-core.php' ) ); ?>"><?php
138                 is_multisite() ? _e( 'Return to Updates' ) : _e( 'Return to Dashboard &rarr; Updates' );
139         ?></a> |
140         <?php endif; ?>
141         <a href="<?php echo esc_url( self_admin_url() ); ?>"><?php
142                 is_blog_admin() ? _e( 'Go to Dashboard &rarr; Home' ) : _e( 'Go to Dashboard' ); ?></a>
143 </div>
144
145 </div>
146 <?php
147
148 include( ABSPATH . 'wp-admin/admin-footer.php' );
149
150 // These are strings we may use to describe maintenance/security releases, where we aim for no new strings.
151 return;
152
153 _n_noop( 'Maintenance Release', 'Maintenance Releases' );
154 _n_noop( 'Security Release', 'Security Releases' );
155 _n_noop( 'Maintenance and Security Release', 'Maintenance and Security Releases' );
156
157 /* translators: 1: WordPress version number. */
158 _n_noop( '<strong>Version %1$s</strong> addressed a security issue.',
159          '<strong>Version %1$s</strong> addressed some security issues.' );
160
161 /* translators: 1: WordPress version number, 2: plural number of bugs. */
162 _n_noop( '<strong>Version %1$s</strong> addressed %2$s bug.',
163          '<strong>Version %1$s</strong> addressed %2$s bugs.' );
164
165 /* translators: 1: WordPress version number, 2: plural number of bugs. Singular security issue. */
166 _n_noop( '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.',
167          '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.' );
168
169 /* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */
170 _n_noop( '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
171          '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.' );
172
173 __( 'For more information, see <a href="%s">the release notes</a>.' );