Making WordPress.org


Ignore:
Timestamp:
03/15/2018 04:42:32 AM (8 years ago)
Author:
dd32
Message:

Main: About: Mark the strings as translatable.
Some strings are deliberately not translated right now.

See #3046.

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  
    3939                <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    4040                        <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>
    4242                        </header><!-- .entry-header -->
    4343
     
    4747                                                <?php
    4848                                                /* 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/' ) );
    5050                                                ?>
    5151                                        </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>
    5353                                        <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>
    5555                                                <tbody>
    5656                                                <tr><th><a href="https://make.wordpress.org/core/5-0/">5.0</a></th><td>2018</td></tr>
     
    5858                                        </table>
    5959
    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>
    6363
    6464                                        <p>
    6565                                                <?php
    6666                                                /* 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&#8217;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&#8217;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' ) );
    6868                                                ?>
    6969                                        </p>
     
    7272                                                <thead>
    7373                                                        <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>
    7777                                                        </tr>
    7878                                                </thead>
     
    8080                                                <tr>
    8181                                                        <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>
    8383                                                        <td><?php echo esc_html( date_i18n( $date_format, strtotime( 'May 27, 2003' ) ) ); ?></td>
    8484                                                </tr>
Note: See TracChangeset for help on using the changeset viewer.