Changeset 10790
- Timestamp:
- 03/06/2021 06:58:23 PM (3 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
r10502 r10790 41 41 <?php 42 42 printf( 43 /* translators: %s: Link to Gutenberg demo page */ 44 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>. Throughout 2020 there is a focus on full site editing as we continue to progress through Phase 2.', 'wporg' ) ), 45 esc_url( home_url( '/gutenberg/' ) ) 43 /* translators: 1: Link to Gutenberg demo page, 2: Link to Feature Projects Overview page */ 44 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="%1$s">see that in action here</a>. In 2021 we’re focusing on merging full site editing (Phase 2) into WordPress which brings block editing to the entire site, not just posts and pages. For more information on full site editing, its components, and other active feature work, check out the <a href="%2$s">Feature Projects Overview</a> page.', 'wporg' ) ), 45 esc_url( home_url( '/gutenberg/' ) ), 46 'https://make.wordpress.org/core/features/' 46 47 ); 47 48 ?> … … 52 53 printf( 53 54 /* translators: %s: Link to make/core blog post */ 54 wp_kses_post( __( 'For 202 0 the project also has the following 7 priorities, as outlined in <a href="%s">this post</a> by project executive director Josepha Haden:', 'wporg' ) ),55 'https://make.wordpress.org/ core/2019/12/06/update-9-projects-for-2019/'55 wp_kses_post( __( 'For 2021 the project has some big picture goals, as outlined in <a href="%s">this post</a>:', 'wporg' ) ), 56 'https://make.wordpress.org/updates/2021/01/21/big-picture-goals-2021/' 56 57 ); 57 58 ?> … … 59 60 60 61 <ul> 61 <li><?php esc_html_e( 'Creating a block for navigation menus.', 'wporg' ); ?></li> 62 <li><?php esc_html_e( 'Build a WordPress.org directory for discovering blocks, and a way to seamlessly install them.', 'wporg' ); ?></li> 63 <li><?php esc_html_e( 'Provide a way for users to opt-in to automatic plugin and theme updates.', 'wporg' ); ?></li> 64 <li><?php esc_html_e( 'Provide a way for themes to visually register content areas, and expose them in Gutenberg.', 'wporg' ); ?></li> 65 <li><?php esc_html_e( 'Upgrade the widgets-editing areas and the Customizer to support blocks.', 'wporg' ); ?></li> 66 <li><?php esc_html_e( 'Provide a way for users to opt-in to automatic updates of major Core releases.', 'wporg' ); ?></li> 67 <li> 68 <?php 69 printf( 70 /* translators: %s: Link to open tickets in Core Trac */ 71 wp_kses_post( __( 'Form a Triage team to tackle our <a href="%s">6,500 open issues on Trac</a>.', 'wporg' ) ), 72 'https://core.trac.wordpress.org/query?status=!closed' 73 ); 74 ?> 75 </li> 62 <li><?php echo wp_kses_post( __( '<strong>Full site editing</strong>: Bring into the Gutenberg plugin, and subsequently WordPress Core, the ability to edit all elements of a site using Gutenberg blocks. This will include all in-progress features designed to help existing users transition to Gutenberg as well. Scope/Timeline: MVP in the plugin by April 2021, v1 in Core by WordPress 5.8.', 'wporg' ) ); ?></li> 63 <li><?php echo wp_kses_post( __( '<strong>LearnWP</strong>: Enable WordPress skills-leveling by providing workshops, pre-recorded trainings, and self-serve learning opportunities on learn.wordpress.org. Scope/Timeline: regularly publish new workshops and lesson plans, maintain a high pass rate on workshop quizzes to establish learner success and comprehension.', 'wporg' ) ); ?></li> 64 <li><?php echo wp_kses_post( __( '<strong>Contributor tools</strong>: Decrease the manual overhead of maintenance work for teams through better tooling. Scope/Timeline: Varied, and pending additional testing.', 'wporg' ) ); ?></li> 76 65 </ul> 77 66 … … 80 69 printf( 81 70 /* translators: %s: https://make.wordpress.org/ */ 82 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' ) ),71 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' ) ), 83 72 'https://make.wordpress.org/' 84 73 ); … … 114 103 <tr> 115 104 <th>5.8</th> 116 <td><?php echo date_i18n( 'F Y', strtotime( 'Ju n2021' ) ); ?></td>105 <td><?php echo date_i18n( 'F Y', strtotime( 'Jul 2021' ) ); ?></td> 117 106 </tr> 118 107 <tr> 119 108 <th>5.9</th> 120 <td><?php echo date_i18n( 'F Y', strtotime( 'Sep 2021' ) ); ?></td>121 </tr>122 <tr>123 <th>6.0</th>124 109 <td><?php echo date_i18n( 'F Y', strtotime( 'Dec 2021' ) ); ?></td> 125 110 </tr> … … 142 127 printf( 143 128 /* translators: %s: Link to History page */ 144 wp_kses_post( __( 'You can see an overview of p reviousreleases on our <a href="%s">history page</a>.', 'wporg' ) ),129 wp_kses_post( __( 'You can see an overview of past releases on our <a href="%s">history page</a>.', 'wporg' ) ), 145 130 esc_url( home_url( '/about/history/' ) ) 146 131 ); … … 150 135 <h2><?php esc_html_e( 'Long term roadmap', 'wporg' ); ?></h2> 151 136 152 <p><?php 153 printf( 154 /* translators: %s: link to wordpress.tv State of the Word 2019 */ 155 wp_kses_post( __( 'While Phase 2 of Gutenberg is expected to continue at least through 2020, there are already plans for Phase 3 and 4. During the <a href="%s">State of the Word from WordCamp US 2019</a>, Matt shared the following vision for phases in Gutenberg:', 'wporg' ) ), 156 'https://wordpress.tv/2019/11/03/2019-state-of-the-word/' ); 157 ?> 158 </p> 137 <p><?php esc_html_e( 'Phase 2 of Gutenberg won’t be finished when it’s merged into WordPress. The work to gather feedback and iterate based on user needs will continue after WordPress 5.8 is released. As a reminder, these are the four phases outlined in the Gutenberg project:', 'wporg' ); ?></p> 159 138 160 139 <p><?php esc_html_e( 'The Four Phases of Gutenberg', 'wporg' ); ?></p>
Note: See TracChangeset
for help on using the changeset viewer.