Changeset 8099
- Timestamp:
- 01/18/2019 11:29:23 AM (6 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
r8098 r8099 42 42 <p> 43 43 <?php 44 /* translators: 1: Link to Ideas forum; 2: Link to Core Trac */ 45 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/' ) ); 44 printf( 45 /* translators: %s: Link to Gutenberg demo page */ 46 wp_kses_post( __( 'WordPress is continually under development. Currently, work is underway on Phase 2 of the Gutenberg project. The Gutenberg project is a reimagination of the way we manage content on the web. Its goal is to broaden access to web presence, which is a foundation of successful modern businesses. Phase 1 was the new block editor, which was released in WordPress 5.0, you can <a href="%s">see that in action here</a>. In 2019 we’re focusing on Phase 2 which brings block editing to the entire site, not just posts and pages.', 'wporg' ) ), 47 esc_url( 'https://wordpress.org/gutenberg/' ) 48 ); 46 49 ?> 47 50 </p> 48 <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> 51 52 <p><?php esc_html_e( 'For 2019 the project also has the following 9 priorities, as outlined in this post by project lead Matt Mullenweg:', 'wporg' ); ?> 53 54 <ul> 55 <li><?php esc_html_e( 'Creating a block for navigation menus.', 'wporg' ); ?></li> 56 <li><?php esc_html_e( 'Port all existing widgets to blocks.', 'wporg' ); ?></li> 57 <li><?php esc_html_e( 'Upgrade the widgets-editing areas and the Customizer to support blocks.', 'wporg' ); ?></li> 58 <li><?php esc_html_e( 'Provide a way for themes to visually register content areas, and expose them in Gutenberg.', 'wporg' ); ?></li> 59 <li> 60 <?php 61 printf( 62 /* translators: %s: Link to Health Check plugin */ 63 wp_kses_post( __( 'Merge <a href="%s">the site health check plugin</a> into Core, to assist with debugging and encourage good software hygiene.', 'wporg' ) ), 64 esc_url( home_url( '/plugins/health-check/' ) ) 65 ); 66 ?> 67 </li> 68 <li><?php esc_html_e( 'Provide a way for users to opt-in to automatic plugin and theme updates.', 'wporg' ); ?></li> 69 <li><?php esc_html_e( 'Provide a way for users to opt-in to automatic updates of major Core releases.', 'wporg' ); ?></li> 70 <li><?php esc_html_e( 'Build a WordPress.org directory for discovering blocks, and a way to seamlessly install them.', 'wporg' ); ?></li> 71 <li> 72 <?php 73 printf( 74 /* translators: %s: Link to open tickets in Core Trac */ 75 wp_kses_post( __( 'Form a Triage team to tackle our <a href="%s">6,500 open issues on Trac</a>.', 'wporg' ) ), 76 esc_url( 'https://core.trac.wordpress.org/query?status=!closed' ) 77 ); 78 ?> 79 </li> 80 </ul> 81 82 <p> 83 <?php 84 printf( 85 /* translators: %s: https://make.wordpress.org/ */ 86 wp_kses_post( __( 'Want to get involved? Head on over to <a href="%s">Make WordPress</a>! We can always use more people to help translate, design, document, develop and market WordPress.', 'wporg' ) ), 87 esc_url( 'https://make.wordpress.org/' ) 88 ); 89 ?> 90 </p> 91 92 <h3><?php esc_html_e( 'Currently planned releases', 'wporg' ); ?></h3> 93 94 <p> 95 <?php 96 printf( 97 /* translators: %s: Link to Core Trac */ 98 wp_kses_post( __( 'Here are the current planned releases, and links to their respective milestones in our <a href="%s">issue tracker</a>. Any projected dates are for discussion and planning purposes, and will be firmed up as we get closer to release.', 'wporg' ) ), 99 esc_url( 'https://core.trac.wordpress.org/' ) 100 ); 101 ?> 102 </p> 49 103 <table> 50 104 <thead> … … 60 114 <a href="https://core.trac.wordpress.org/tickets/major">(Trac)</a> 61 115 </th> 116 <td>February 2019</td> 117 </tr> 118 <tr> 119 <th> 120 5.2 121 <a href="https://core.trac.wordpress.org/milestone/5.2">(Trac)</a> 122 </th> 62 123 <td>2019</td> 63 124 </tr> … … 66 127 67 128 <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> 129 130 <p> 131 <?php 132 printf( 133 /* translators: %s: Link to History page */ 134 wp_kses_post( __( 'You can see an overview of previous release on our <a href="%s">history page</a>.', 'wporg' ) ), 135 esc_url( home_url( '/about/history/' ) ) 136 ); 137 ?> 138 </p> 139 140 <h3><?php esc_html_e( 'Long term roadmap', 'wporg' ); ?></h3> 141 142 <p><?php esc_html_e( 'While we expect to need most or all of 2019 to finish phase 2 of Gutenberg, there are already plans for Phase 3 and 4. Phase 3 will focus on collaboration and multi-user editing. Phase 4 will contain support for multilingual sites.', 'wporg' ); ?></p> 68 143 </section> 69 144 </div><!-- .entry-content -->
Note: See TracChangeset
for help on using the changeset viewer.