Changeset 6584
- Timestamp:
- 02/09/2018 08:51:48 PM (8 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main
- Files:
-
- 2 edited
-
page-releases.php (modified) (2 diffs)
-
page-txt-download.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-releases.php
r6583 r6584 24 24 if ( isset( $releases['latest'] ) ) : 25 25 ?> 26 <h3 id="latest"><?php _esc_html_e( 'Latest release', 'wporg' ); ?></h3>26 <h3 id="latest"><?php esc_html_e( 'Latest release', 'wporg' ); ?></h3> 27 27 <table class="releases latest"> 28 28 <?php release_row( $releases['latest'] ); ?> … … 58 58 if ( ! empty( $releases['betas'] ) ) : 59 59 ?> 60 <h3 id="betas"><?php _esc_html_e( 'Beta & RC releases', 'wporg' ); ?></h3>60 <h3 id="betas"><?php esc_html_e( 'Beta & RC releases', 'wporg' ); ?></h3> 61 61 <table id="beta" class="releases"> 62 62 <?php -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-txt-download.php
r6583 r6584 21 21 <aside class="col-3 alignright"> 22 22 <?php 23 the_widget( __ _NAMESPACE__ . '\WPORG_Widget_Download' );23 the_widget( __NAMESPACE__ . '\WPORG_Widget_Download' ); 24 24 25 25 the_widget( 'WP_Widget_Links', array(), array( 26 26 '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>', 28 28 ) ); 29 29 ?>
Note: See TracChangeset
for help on using the changeset viewer.