Making WordPress.org

Changeset 6584


Ignore:
Timestamp:
02/09/2018 08:51:48 PM (9 years ago)
Author:
obenland
Message:

Main: Revert changes in existing templates.

These strings should remain to be translatable.

See [6583].

Location:
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-releases.php

    r6583 r6584  
    2424                                if ( isset( $releases['latest'] ) ) :
    2525                                        ?>
    26                                         <h3 id="latest"><?php _esc_html_e( 'Latest release', 'wporg' ); ?></h3>
     26                                        <h3 id="latest"><?php esc_html_e( 'Latest release', 'wporg' ); ?></h3>
    2727                                        <table class="releases latest">
    2828                                                <?php release_row( $releases['latest'] ); ?>
     
    5858                                if ( ! empty( $releases['betas'] ) ) :
    5959                                        ?>
    60                                         <h3 id="betas"><?php _esc_html_e( 'Beta &amp; RC releases', 'wporg' ); ?></h3>
     60                                        <h3 id="betas"><?php esc_html_e( 'Beta &amp; RC releases', 'wporg' ); ?></h3>
    6161                                        <table id="beta" class="releases">
    6262                                                <?php
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-txt-download.php

    r6583 r6584  
    2121                                <aside class="col-3 alignright">
    2222                                        <?php
    23                                         the_widget( ___NAMESPACE__ . '\WPORG_Widget_Download' );
     23                                        the_widget( __NAMESPACE__ . '\WPORG_Widget_Download' );
    2424
    2525                                        the_widget( 'WP_Widget_Links', array(), array(
    2626                                                'before_title' => '<h4>',
    27                                                 'after_title'  => '</h4><p>' . ___( 'For help with installing or using WordPress, consult our documentation in your language.', 'wporg' ) . '</p>',
     27                                                'after_title'  => '</h4><p>' . __( 'For help with installing or using WordPress, consult our documentation in your language.', 'wporg' ) . '</p>',
    2828                                        ) );
    2929                                        ?>
Note: See TracChangeset for help on using the changeset viewer.