Changeset 6878 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-roadmap.php
- Timestamp:
- 03/15/2018 04:42:32 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-roadmap.php
r6869 r6878 39 39 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 40 40 <header class="entry-header"> 41 <h1 class="entry-title col-8"><?php _esc_html_e( 'Roadmap', 'wporg' ); ?></h1>41 <h1 class="entry-title col-8"><?php esc_html_e( 'Roadmap', 'wporg' ); ?></h1> 42 42 </header><!-- .entry-header --> 43 43 … … 47 47 <?php 48 48 /* translators: 1: Link to Ideas forum; 2: Link to Core Trac */ 49 printf( wp_kses_post( __ _( 'After the 2.1 release, we decided to adopt a regular release schedule every 3-4 months with the features primarily driven by <a href="%1$s">ideas voted on by our users</a>. Here are the current planned releases, and links to their respective milestones in our <a href="%2$s">issue tracker</a>.', 'wporg' ) ), esc_url( 'https://wordpress.org/ideas/' ), esc_url( 'https://core.trac.wordpress.org/' ) );49 printf( wp_kses_post( __( 'After the 2.1 release, we decided to adopt a regular release schedule every 3-4 months with the features primarily driven by <a href="%1$s">ideas voted on by our users</a>. Here are the current planned releases, and links to their respective milestones in our <a href="%2$s">issue tracker</a>.', 'wporg' ) ), esc_url( 'https://wordpress.org/ideas/' ), esc_url( 'https://core.trac.wordpress.org/' ) ); 50 50 ?> 51 51 </p> 52 <p><?php _esc_html_e( 'Any projected dates are for discussion and planning purposes, and will be firmed up as we get closer to release.', 'wporg' ); ?></p>52 <p><?php esc_html_e( 'Any projected dates are for discussion and planning purposes, and will be firmed up as we get closer to release.', 'wporg' ); ?></p> 53 53 <table> 54 <thead><tr><th><?php _esc_html_e( 'Version', 'wporg' ); ?></th><th><?php _esc_html_e( 'Planned', 'wporg' ); ?></th></tr></thead>54 <thead><tr><th><?php esc_html_e( 'Version', 'wporg' ); ?></th><th><?php esc_html_e( 'Planned', 'wporg' ); ?></th></tr></thead> 55 55 <tbody> 56 56 <tr><th><a href="https://make.wordpress.org/core/5-0/">5.0</a></th><td>2018</td></tr> … … 58 58 </table> 59 59 60 <p><?php _esc_html_e( 'The month prior to a release new features are frozen and the focus is entirely on ensuring the quality of the release by eliminating bugs and profiling the code for any performance issues.', 'wporg' ); ?></p>61 62 <h3><?php _esc_html_e( 'Jazzers and Release Dates', 'wporg' ); ?></h3>60 <p><?php esc_html_e( 'The month prior to a release new features are frozen and the focus is entirely on ensuring the quality of the release by eliminating bugs and profiling the code for any performance issues.', 'wporg' ); ?></p> 61 62 <h3><?php esc_html_e( 'Jazzers and Release Dates', 'wporg' ); ?></h3> 63 63 64 64 <p> 65 65 <?php 66 66 /* translators: 1: Link to playlist */ 67 printf( wp_kses_post( __ _( 'WordPress core developers share a love of jazz music, and all our major releases are named in honor of jazz musicians we personally admire. Here’s a list of releases and the musicians they were named for. <a href="%s">You can listen to a Last.fm station of all the musicians we named a release for</a>.', 'wporg' ) ), esc_url( 'http://www.last.fm/tag/wordpress-release-jazz' ) );67 printf( wp_kses_post( __( 'WordPress core developers share a love of jazz music, and all our major releases are named in honor of jazz musicians we personally admire. Here’s a list of releases and the musicians they were named for. <a href="%s">You can listen to a Last.fm station of all the musicians we named a release for</a>.', 'wporg' ) ), esc_url( 'http://www.last.fm/tag/wordpress-release-jazz' ) ); 68 68 ?> 69 69 </p> … … 72 72 <thead> 73 73 <tr> 74 <th><?php _esc_html_e( 'Version', 'wporg' ); ?></th>75 <th><?php _esc_html_e( 'Musician', 'wporg' ); ?></th>76 <th><?php _esc_html_e( 'Date', 'wporg' ); ?></th>74 <th><?php esc_html_e( 'Version', 'wporg' ); ?></th> 75 <th><?php esc_html_e( 'Musician', 'wporg' ); ?></th> 76 <th><?php esc_html_e( 'Date', 'wporg' ); ?></th> 77 77 </tr> 78 78 </thead> … … 80 80 <tr> 81 81 <th><a href="https://wordpress.org/news/2003/05/wordpress-now-available/">.70</a></th> 82 <td><?php _esc_html_e( 'No musician chosen.', 'wporg' ); ?></td>82 <td><?php esc_html_e( 'No musician chosen.', 'wporg' ); ?></td> 83 83 <td><?php echo esc_html( date_i18n( $date_format, strtotime( 'May 27, 2003' ) ) ); ?></td> 84 84 </tr>
Note: See TracChangeset
for help on using the changeset viewer.