Making WordPress.org


Ignore:
Timestamp:
12/12/2015 12:12:06 AM (9 years ago)
Author:
iandunn
Message:

WordCamp Coming Soon Page: Internationalize all strings.

Fixes #1441
Props zodiac1978

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-coming-soon-page/views/template-coming-soon.php

    r491 r2186  
    2424       
    2525        <p id="wccsp-introduction">
    26             <?php echo esc_attr( get_bloginfo( 'name' ) ); ?> is in the early planning stages. In the meantime, you can subscribe to be notified when the site goes live, or contact the organizers to get involved.
     26            <?php printf(
     27                // translators: %s is the name of the blog
     28                __( '%s is in the early planning stages. In the meantime, you can subscribe to be notified when the site goes live, or contact the organizers to get involved.', 'wordcamporg' ),
     29                esc_html( get_bloginfo( 'name' ) )
     30            ); ?>
    2731        </p>
    2832
     
    3539        <?php if ( in_array( 'contact-form', $active_modules ) && $contact_form_shortcode ) : ?>
    3640            <div class="wccsp-box">
    37                 <h2>Contact the Organizers</h2>
     41                <h2><?php _e( 'Contact the Organizers' , 'wordcamporg' ); ?></h2>
    3842               
    3943                <?php echo $contact_form_shortcode; // intentionally not escaping because it's the output of do_shortcode() ?>
Note: See TracChangeset for help on using the changeset viewer.