Ticket #172: buddypress_l18n_friends_theme.patch
File buddypress_l18n_friends_theme.patch, 2.6 KB (added by , 16 years ago) |
---|
-
buddypress-theme/buddypress-member/friends/friend-finder.php
2 2 </div> 3 3 4 4 <div id="content"> 5 <h2> Friend Finder</h2>5 <h2><?php _e("Friend Finder", "buddypress"); ?></h2> 6 6 7 7 <div class="left-menu"> 8 8 <?php bp_friend_search_form('Find Friends') ?> … … 30 30 <div id="finder-message"> 31 31 <div id="message" class="info"> 32 32 <p> 33 <strong>Find your Friends using Friend Finder!</strong><br /> 34 Use the search box to find friends on the site. 35 You can enter any type of information you want, a first or last name, 36 email address or any specific interesting information. 37 </p> 33 <strong><?php _e("Find your Friends using Friend Finder!", "buddypress"); ?></strong><br /> 34 <?php _e("Use the search box to find friends on the site. You can enter any type of information you want, a first or last name, email address or any specific interesting information.", "buddypress"); ?></p> 38 35 </div> 39 36 </div> 40 37 -
buddypress-theme/buddypress-member/friends/requests.php
6 6 <?php bp_friend_pagination() ?> 7 7 </div> 8 8 9 <h2> Friendship Requests</h2>9 <h2><?php _e("Friendship Requests", "buddypress"); ?></h2> 10 10 <?php do_action( 'template_notices' ) // (error/success feedback) ?> 11 11 12 12 <?php if ( bp_has_friendships() ) : ?> … … 17 17 <h4><?php bp_friend_link() ?></h4> 18 18 <span class="activity"><?php bp_friend_time_since_requested() ?></span> 19 19 <div class="action"> 20 <a href="<?php bp_friend_accept_request_link() ?>" id="accept"> Accept</a>21 <a href="<?php bp_friend_reject_request_link() ?>" id="reject"> Reject</a>20 <a href="<?php bp_friend_accept_request_link() ?>" id="accept"><?php _e("Accept", "buddypress"); ?></a> 21 <a href="<?php bp_friend_reject_request_link() ?>" id="reject"><?php _e("Reject", "buddypress"); ?></a> 22 22 </div> 23 23 </li> 24 24 <?php endwhile; ?> … … 26 26 <?php else: ?> 27 27 28 28 <div id="message" class="info"> 29 <p> You have no pending friendship requests.</p>29 <p><?php _e("You have no pending friendship requests.", "buddypress"); ?></p> 30 30 </div> 31 31 32 32 <?php endif;?>