Ticket #1489: wporg-make-i18n.patch
File wporg-make-i18n.patch, 4.2 KB (added by , 9 years ago) |
---|
-
trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-makehome/404.php
5 5 6 6 <div id="404" class="post 404"> 7 7 8 <h2 class="section-title"> Not Found</h2>8 <h2 class="section-title"><?php _e( 'Not Found', 'make-wporg' ); ?></h2> 9 9 <article style="width:100%"> 10 <p> Are you looking to contribute to WordPress? Check out the <a href="//make.wordpress.org/">many ways to get involved</a>.</p>10 <p><?php _e( 'Are you looking to contribute to WordPress? Check out the <a href="//make.wordpress.org/">many ways to get involved</a>.', 'make-wporg' ); ?></p> 11 11 </article> 12 12 </div> 13 13 </div><!-- /wrapper --> -
trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-makehome/archive-meeting.php
1 1 <?php get_header(); ?> 2 2 3 3 <div class="wrapper"> 4 <h2 class="title"><?php _e( 'Upcoming WordPress Meetings','wporg'); ?></h2>4 <h2 class="title"><?php _e( 'Upcoming WordPress Meetings', 'make-wporg' ); ?></h2> 5 5 <table class="schedule"> 6 6 <thead> 7 7 <tr> 8 <th><?php _e( 'Team','wporg'); ?></th>9 <th><?php _e( 'Name','wporg'); ?></th>10 <th><?php _e( 'Next Meeting','wporg'); ?></th>11 <th><?php _e( 'Location','wporg'); ?></th>8 <th><?php _e( 'Team', 'make-wporg' ); ?></th> 9 <th><?php _e( 'Name', 'make-wporg' ); ?></th> 10 <th><?php _e( 'Next Meeting', 'make-wporg' ); ?></th> 11 <th><?php _e( 'Location', 'make-wporg' ); ?></th> 12 12 </tr> 13 13 </thead> 14 14 <tbody> … … 34 34 // convert the displayed date time to a local one to the viewing browser, if possible 35 35 function wporg_makehome_time_converter_script() { 36 36 $timestrings = array( 37 'months' => array(__('January'), __('February'), __('March'),__('April'),__('May'),__('June'),__('July'),__('August'),__('September'),__('October'),__('November'), 37 'months' => array(__('January'), __('February'), __('March'),__('April'),__('May'),__('June'),__('July'),__('August'),__('September'),__('October'),__('November'),__('December')), 38 38 ); 39 39 ?> 40 40 <script type="text/javascript"> -
trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-makehome/front-page.php
29 29 <div class="team-description"> 30 30 <?php the_content(); ?> 31 31 <?php if ( $url ) : ?> 32 <p><a href="<?php echo esc_url( $url ); ?>"> Learn more about <?php the_title(); ?> »</a></p>32 <p><a href="<?php echo esc_url( $url ); ?>"><?php printf( __( 'Learn more about %s »', 'make-wporg' ), get_the_title() ); ?></a></p> 33 33 <?php endif; ?> 34 34 </div> 35 35 -
trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-makehome/subhead.php
8 8 <?php /* jetpack_do_subscription_form( $args = array() ); */ ?> 9 9 <form action="#" method="post"> 10 10 <fieldset> 11 <label for="signup-email"> Get news updates in your email:</label>11 <label for="signup-email"><?php _e( 'Get news updates in your email:', 'make-wporg' ); ?></label> 12 12 <input type="email" name="email" class="text" id="signup-email" /> 13 <button type="submit" class="button button-primary"> Sign Up</button>13 <button type="submit" class="button button-primary"><?php _e( 'Sign Up', 'make-wporg' ); ?></button> 14 14 </fieldset> 15 15 </form> 16 16 <?php endif; ?>