Making WordPress.org


Ignore:
Timestamp:
01/12/2018 03:47:10 AM (7 years ago)
Author:
dd32
Message:

BuddyPress.org: Localise strings in the BuddyPress theme.

Props SergeyBiryukov, ramiy.
Fixes #1284.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/buddypress.org/public_html/wp-content/themes/buddypress-org/sidebar.php

    r5923 r6364  
    2323
    2424            <div>
    25                 <h3><?php _e( 'Forum Info', 'bporg'); ?></h3>
     25                <h3><?php _e( 'Forum Info', 'bporg' ); ?></h3>
    2626                <ul class="forum-info">
    2727                    <?php bb_base_single_forum_description(); ?>
     
    3232
    3333            <div>
    34                 <h3><?php _e( 'Forum Feeds', 'bporg'); ?></h3>
     34                <h3><?php _e( 'Forum Feeds', 'bporg' ); ?></h3>
    3535                <ul>
    36                     <li><a class="feed" href="<?php bbp_forum_permalink(); ?>feed/" title="Forum Posts">Recent Posts</a></li>
    37                     <li><a class="feed" href="<?php bbp_forum_permalink(); ?>feed/?type=topic" title="Forum Topics">Recent Topics</a></li>
     36                    <li><a class="feed" href="<?php bbp_forum_permalink(); ?>feed/"><?php _e( 'Recent Posts', 'bporg' ); ?></a></li>
     37                    <li><a class="feed" href="<?php bbp_forum_permalink(); ?>feed/?type=topic"><?php _e( 'Recent Topics', 'bporg' ); ?></a></li>
    3838                </ul>
    3939            </div>
     
    4242
    4343            <div>
    44                 <h3><?php _e( 'Topic Info', 'bporg'); ?></h3>
     44                <h3><?php _e( 'Topic Info', 'bporg' ); ?></h3>
    4545                <ul class="topic-info">
    4646                    <?php bb_base_single_topic_description(); ?>
     
    5050            <div>
    5151                <?php bbp_topic_tag_list( 0, array(
    52                     'before' => '<h3>Topic Tags</h3><ul class="topic-tags"><li>',
     52                    'before' => '<h3>' . __( 'Topic Tags', 'bporg' ) . '</h3><ul class="topic-tags"><li>',
    5353                    'after'  => '</li></ul>',
    5454                    'sep'    => '</li><li>',
     
    6363                    <?php bbp_topic_admin_links( array (
    6464                        'id'     => bbp_get_topic_id(),
    65                         'before' => '<h3>Topic Admin</h3><ul class="topic-admin-links"><li>',
     65                        'before' => '<h3>' . __( 'Topic Admin', 'bporg' ) . '</h3><ul class="topic-admin-links"><li>',
    6666                        'after'  => '</li></ul>',
    6767                        'sep'    => '</li><li>',
     
    7575
    7676            <div>
    77                 <h3><?php _e( 'Forums', 'bporg'); ?></h3>
     77                <h3><?php _e( 'Forums', 'bporg' ); ?></h3>
    7878                <?php echo do_shortcode( '[bbp-forum-index]' ); ?>
    7979            </div>
     
    8181
    8282            <div>
    83                 <h3><?php _e( 'Views', 'bporg'); ?></h3>
     83                <h3><?php _e( 'Views', 'bporg' ); ?></h3>
    8484                <ul>
    8585
    8686                    <?php foreach ( bbp_get_views() as $view => $args ) : ?>
    8787
    88                         <li><a class="bbp-view-title" href="<?php bbp_view_url( $view ); ?>" title="<?php bbp_view_title( $view ); ?>"><?php bbp_view_title( $view ); ?></a></li>
     88                        <li><a class="bbp-view-title" href="<?php bbp_view_url( $view ); ?>"><?php bbp_view_title( $view ); ?></a></li>
    8989
    9090                    <?php endforeach; ?>
     
    9494
    9595            <div>
    96                 <h3><?php _e( 'Feeds', 'bporg'); ?></h3>
     96                <h3><?php _e( 'Feeds', 'bporg' ); ?></h3>
    9797                <ul>
    98                     <li><a class="feed" href="<?php bbp_forums_url(); ?>feed/" title="All Recent Posts">All Recent Posts</a></li>
    99                     <li><a class="feed" href="<?php bbp_topics_url(); ?>feed/" title="All Recent Topics">All Recent Topics</a></li>
     98                    <li><a class="feed" href="<?php bbp_forums_url(); ?>feed/"><?php _e( 'All Recent Posts', 'bporg' ); ?></a></li>
     99                    <li><a class="feed" href="<?php bbp_topics_url(); ?>feed/"><?php _e( 'All Recent Topics', 'bporg' ); ?></a></li>
    100100                </ul>
    101101            </div>
    102102
    103103            <div>
    104                 <h3><?php _e( 'Tags', 'bporg'); ?></h3>
     104                <h3><?php _e( 'Tags', 'bporg' ); ?></h3>
    105105                <?php echo do_shortcode( '[bbp-topic-tags]' ); ?>
    106106            </div>
     
    112112        <div class="feature">
    113113            <h3><?php _e( 'Theme Development', 'bporg' ); ?></h3>
    114             <p><a href="https://www.packtpub.com/web-development/buddypress-theme-development" title="BuddyPress Theme Development"><img width="225" alt="A book by: Tammie Lister" src="<?php echo get_stylesheet_directory_uri(); ?>/images/buddypress-packt.jpg"/></a></p>
    115             <p class="book-description">An in-depth guide to designing, developing, and testing your very own custom BuddyPress theme.</p>
     114            <p><a href="https://www.packtpub.com/web-development/buddypress-theme-development"><img width="225" alt="<?php esc_attr_e( 'BuddyPress Theme Development. A book by Tammie Lister', 'bporg' ); ?>" src="<?php echo get_stylesheet_directory_uri(); ?>/images/buddypress-packt.jpg"/></a></p>
     115            <p class="book-description"><?php _e( 'An in-depth guide to designing, developing, and testing your very own custom BuddyPress theme.', 'bporg' ); ?></p>
    116116        </div>
    117117
     
    121121
    122122        <div>
    123             <h3><?php _e( 'Legacy', 'bporg'); ?></h3>
     123            <h3><?php _e( 'Legacy', 'bporg' ); ?></h3>
    124124            <ul>
    125                 <li><a href="https://buddypress.org/support/forum/plugin-forums/" title="Plugin Forums">Legacy Plugin Forums</a></li>
     125                <li><a href="https://buddypress.org/support/forum/plugin-forums/"><?php _e( 'Legacy Plugin Forums', 'bporg' ); ?></a></li>
    126126            </ul>
    127127        </div>
     
    130130
    131131        <div>
    132             <h3><?php _e( 'Categories', 'bporg'); ?></h3>
     132            <h3><?php _e( 'Categories', 'bporg' ); ?></h3>
    133133            <ul>
    134134                <?php wp_list_categories( array( 'title_li' => false ) ); ?>
     
    137137
    138138        <div>
    139             <h3><?php _e( 'Tags', 'bporg'); ?></h3>
     139            <h3><?php _e( 'Tags', 'bporg' ); ?></h3>
    140140            <?php wp_tag_cloud(); ?>
    141141        </div>
Note: See TracChangeset for help on using the changeset viewer.