Changeset 2186 for sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-coming-soon-page/views/template-coming-soon.php
- Timestamp:
- 12/12/2015 12:12:06 AM (9 years ago)
- 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 24 24 25 25 <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 ); ?> 27 31 </p> 28 32 … … 35 39 <?php if ( in_array( 'contact-form', $active_modules ) && $contact_form_shortcode ) : ?> 36 40 <div class="wccsp-box"> 37 <h2> Contact the Organizers</h2>41 <h2><?php _e( 'Contact the Organizers' , 'wordcamporg' ); ?></h2> 38 42 39 43 <?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.