Making WordPress.org


Ignore:
Timestamp:
01/26/2016 11:41:27 PM (9 years ago)
Author:
coffee2code
Message:

W.org Showcase: Pass all strings through i18n functions.

Props ramiy, coffee2code.
Fixes #1507.

File:
1 edited

Legend:

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

    r1705 r2376  
    2626                            <a href="<?php echo $wpsc_url; ?>" class="wpsc-linkout">
    2727                                <?php echo str_replace( parse_url( $wpsc_url, PHP_URL_SCHEME ) . '://', '', untrailingslashit( $wpsc_url ) ); ?>
    28                                 <span class="linkout-symbol">&#10162;</span>
     28                                <span class="linkout-symbol"><?php _ex( '&#10162;', 'linkout symbol', 'wporg-showcase' ); ?></span>
    2929                            </a>
    3030                            <?php endif; // $wpsc_url ?>
     
    3535                            ?>
    3636                            <a class="wpsc-hero-learnmore" href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
    37                                 Learn More &rarr;
     37                                <?php _e( 'Learn More &rarr;', 'wporg-showcase' ); ?>
    3838                            </a>
    3939                        </div><!-- .wpsc-hero-slide-content -->
     
    5656            <?php query_posts( array( 'cat' => 4, 'posts_per_page' => 3, 'tag' => 'business', 'orderby' => 'rand' ) ); ?>
    5757            <?php if ( have_posts() ) : ?>
    58             <h3>Featured Business Sites</h3>
     58            <h3><?php _e( 'Featured Business Sites', 'wporg-showcase' ); ?></h3>
    5959            <ul class="wpsc-recent">
    6060               
     
    7979            <?php if ( have_posts() ) : ?>
    8080
    81             <h3>Recently Added Sites</h3>
     81            <h3><?php _e( 'Recently Added Sites', 'wporg-showcase' ); ?></h3>
    8282            <ul class="wpsc-recent">
    8383
     
    9797                <?php endwhile; // have_posts ?>
    9898            </ul>
    99             <a href="<?php echo home_url( '/archives/' ); ?>" class="wpsc-view-all">View All Showcase Sites &rarr;</a>
     99            <a href="<?php echo home_url( '/archives/' ); ?>" class="wpsc-view-all"><?php _e( 'View All Showcase Sites &rarr;', 'wporg-showcase' ); ?></a>
    100100           
    101101            <?php endif; // have_posts ?>
Note: See TracChangeset for help on using the changeset viewer.