]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/about.php
WordPress 3.6.1-scripts
[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 point-releases">
37         <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 1 ); ?></h3>
38         <p><?php printf( _n( '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
39          '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.', 13 ), '3.6.1', number_format_i18n( 13 ) ); ?>
40                 <?php printf( __( 'For more information, see <a href="%s">the release notes</a>.' ), 'http://codex.wordpress.org/Version_3.6.1' ); ?>
41         </p>
42 </div>
43
44 <div class="changelog">
45         <h3><?php _e( 'Colorful New Theme' ); ?></h3>
46
47         <div class="feature-section images-stagger-right">
48                 <img alt="" src="<?php echo is_ssl() ? 'https://' : '//s.'; ?>wordpress.org/images/core/3.6/twentythirteen.png" class="image-66" />
49                 <h4><?php _e( 'Introducing Twenty Thirteen' ); ?></h4>
50                 <p><?php printf( __( "The new default theme puts focus on your content with a colorful, single-column design made for media-rich blogging." ) ); ?></p>
51                 <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>
52         </div>
53 </div>
54
55 <div class="changelog">
56         <h3><?php _e( 'Write with Confidence' ); ?></h3>
57
58         <div class="feature-section images-stagger-right">
59                 <img alt="" src="<?php echo is_ssl() ? 'https://' : '//s.'; ?>wordpress.org/images/core/3.6/revisions.png" class="image-66" />
60                 <h4><?php _e( 'Explore Revisions' ); ?></h4>
61                 <p></p>
62                 <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>
63                 <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>
64         </div>
65
66         <div class="feature-section col two-col">
67                 <div>
68                         <h4><?php _e( 'Improved Autosaves' ); ?></h4>
69                         <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>
70                 </div>
71                 <div class="last-feature">
72                         <h4><?php _e( 'Better Post Locking' ); ?></h4>
73                         <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>
74                 </div>
75         </div>
76 </div>
77
78 <div class="changelog">
79         <h3><?php _e( 'Support for Audio and Video' ); ?></h3>
80
81         <div class="feature-section images-stagger-right">
82                 <div class="video image-66"><?php
83                         $sample_video = ( is_ssl() ? 'https://' : 'http://s.' ) . 'wordpress.org/images/core/3.6/sample-video';
84                         $args = array(
85                                 'mp4' => "$sample_video.mp4",
86                                 'ogv' => "$sample_video.ogv",
87                                 'width' => 625,
88                                 'height' => 360,
89                         );
90                         // Opera 12 (Presto, pre-Chromium) fails to load ogv properly
91                         // when combined with ME.js. Works fine in Opera 15.
92                         // Don't serve ogv to Opera 12 to avoid complete brokeness.
93                         if ( $GLOBALS['is_opera'] )
94                                 unset( $args['ogv'] );
95                         // Our current ME.js API is limited to shortcodes in posts.
96                         echo wp_video_shortcode( $args );
97                 ?></div>
98                 <h4><?php _e( 'New Media Player' ); ?></h4>
99                 <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>
100
101                 <h4><?php _e( 'Embed Music from Spotify, Rdio, and SoundCloud' ); ?></h4>
102                 <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>
103                 <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>
104         </div>
105 </div>
106
107 <div class="changelog">
108         <h3><?php _e( 'Under the Hood' ); ?></h3>
109
110         <div class="feature-section col three-col">
111                 <div>
112                         <h4><?php _e( 'Audio/Video API' ); ?></h4>
113                         <p><?php _e( 'The new audio/video APIs give developers access to powerful media metadata, like ID3 tags.' ); ?></p>
114                 </div>
115                 <div>
116                         <h4><?php _e( 'Semantic Markup' ); ?></h4>
117                         <p><?php _e( 'Themes can now choose improved HTML5 markup for comment forms, search forms, and comment lists.' ); ?></p>
118                 </div>
119                 <div class="last-feature">
120                         <h4><?php _e( 'JavaScript Utilities' ); ?></h4>
121                         <p><?php _e( 'Handy JavaScript utilities ease common tasks like Ajax requests, templating, and Backbone view management.' ); ?></p>
122                 </div>
123         </div>
124
125         <div class="feature-section col three-col">
126                 <div>
127                         <h4><?php _e( 'Shortcode Improvements' ); ?></h4>
128                         <p><?php _e( 'Search content for shortcodes with <code>has_shortcode()</code> and adjust shortcode attributes with a new filter.' ); ?></p>
129                 </div>
130                 <div>
131                         <h4><?php _e( 'Revision Control' ); ?></h4>
132                         <p><?php _e( 'Fine-grained revision controls allow you to keep a different number of revisions for each post type.' ); ?></p>
133                 </div>
134                 <div class="last-feature">
135                         <h4><?php _e( 'External Libraries' ); ?></h4>
136                         <p><?php
137                                 /* translators: placeholders 2, 3 and 4 are version numbers */
138                                 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>
139                 </div>
140         </div>
141 </div>
142
143 <div class="return-to-dashboard">
144         <?php if ( current_user_can( 'update_core' ) && isset( $_GET['updated'] ) ) : ?>
145         <a href="<?php echo esc_url( self_admin_url( 'update-core.php' ) ); ?>"><?php
146                 is_multisite() ? _e( 'Return to Updates' ) : _e( 'Return to Dashboard &rarr; Updates' );
147         ?></a> |
148         <?php endif; ?>
149         <a href="<?php echo esc_url( self_admin_url() ); ?>"><?php
150                 is_blog_admin() ? _e( 'Go to Dashboard &rarr; Home' ) : _e( 'Go to Dashboard' ); ?></a>
151 </div>
152
153 </div>
154 <?php
155
156 include( ABSPATH . 'wp-admin/admin-footer.php' );
157
158 // These are strings we may use to describe maintenance/security releases, where we aim for no new strings.
159 return;
160
161 _n_noop( 'Maintenance Release', 'Maintenance Releases' );
162 _n_noop( 'Security Release', 'Security Releases' );
163 _n_noop( 'Maintenance and Security Release', 'Maintenance and Security Releases' );
164
165 /* translators: 1: WordPress version number. */
166 _n_noop( '<strong>Version %1$s</strong> addressed a security issue.',
167          '<strong>Version %1$s</strong> addressed some security issues.' );
168
169 /* translators: 1: WordPress version number, 2: plural number of bugs. */
170 _n_noop( '<strong>Version %1$s</strong> addressed %2$s bug.',
171          '<strong>Version %1$s</strong> addressed %2$s bugs.' );
172
173 /* translators: 1: WordPress version number, 2: plural number of bugs. Singular security issue. */
174 _n_noop( '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.',
175          '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.' );
176
177 /* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */
178 _n_noop( '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
179          '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.' );
180
181 __( 'For more information, see <a href="%s">the release notes</a>.' );