Index: buddypress.org/public_html/wp-content/themes/bbpress-org/header-front.php
===================================================================
--- buddypress.org/public_html/wp-content/themes/bbpress-org/header-front.php	(revision 5726)
+++ buddypress.org/public_html/wp-content/themes/bbpress-org/header-front.php	(working copy)
@@ -1,9 +1,9 @@
 <?php if ( is_front_page() ) : ?>
 	<div id="headline"><div id="headline-inner">
 		<h2 class="graphic home"><?php bloginfo( 'description' ); ?></h2>
-		<p>bbPress is forum software with a twist from the creators of WordPress. Easily setup discussion forums inside your WordPress.org powered site.</p>
+		<p><?php _e( 'bbPress is forum software with a twist from the creators of WordPress. Easily setup discussion forums inside your WordPress.org powered site.', 'bbporg' ); ?></p>
 		<div>
-			<a href="//bbpress.org/download/" id="big-demo-button" class="button">Download bbPress &rarr;</a>
+			<a href="//bbpress.org/download/" id="big-demo-button" class="button"><?php _e( 'Download bbPress &rarr;', 'bbporg' ); ?></a>
 			<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/screenshots.png?v=6" srcset="<?php echo get_stylesheet_directory_uri(); ?>/images/screenshots.png?v=6 1x, <?php echo get_stylesheet_directory_uri(); ?>/images/screenshots-2x.png?v=6 2x" alt="Screenshots">
 		</div>
 	</div></div>
@@ -12,19 +12,31 @@
 	<div id="showcase"><div id="showcase-inner">
 		<div class="feature">
 			<h3><?php _e( 'Simple Setup', 'bbporg' ); ?></h3>
-			<p><a href="//bbpress.org/about/simple/"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/feature_forums.gif" alt="" width="78" height="58"></a>Easy to setup.<br /> Easy to moderate.<br /> Fast, and clean.</p>
+			<p>
+				<a href="//bbpress.org/about/simple/"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/feature_forums.gif" alt="" width="78" height="58"></a>
+				<?php _e( 'Easy to setup.<br /> Easy to moderate.<br /> Fast, and clean.', 'bbporg' ); ?>
+			</p>
 		</div>
 		<div class="feature">
 			<h3><?php _e( 'Fully Integrated', 'bbporg' ); ?></h3>
-			<p><a href="//bbpress.org/about/integration/"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/feature_integration.gif" alt="" width="78" height="58"></a>One central account.<br /> One unified admin area.<br /> One click install.</p>
+			<p>
+				<a href="//bbpress.org/about/integration/"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/feature_integration.gif" alt="" width="78" height="58"></a>
+				<?php _e( 'One central account.<br /> One unified admin area.<br /> One click install.', 'bbporg' ); ?>
+			</p>
 		</div>
 		<div class="feature" style="margin:0;">
 			<h3><?php _e( 'Single Installation', 'bbporg' ); ?></h3>
-			<p><a href="//bbpress.org/about/installation/"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/feature_installation.gif" alt="" width="78" height="58"></a>Simple step-by-step installation walks you through your options.</p>
+			<p>
+				<a href="//bbpress.org/about/installation/"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/feature_installation.gif" alt="" width="78" height="58"></a>
+				<?php _e( 'Simple step-by-step installation walks you through your options.', 'bbporg' ); ?>
+			</p>
 		</div>
 		<div class="feature">
 			<h3><?php _e( 'Multisite Forums', 'bbporg' ); ?></h3>
-			<p><a href="//bbpress.org/about/multisite/"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/feature_blogs.gif" alt="" width="78" height="58"></a>Divide your site into sections. Allow your users to create content.</p>
+			<p>
+				<a href="//bbpress.org/about/multisite/"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/feature_blogs.gif" alt="" width="78" height="58"></a>
+				<?php _e( 'Divide your site into sections. Allow your users to create content.', 'bbporg' ); ?>
+			</p>
 		</div>
 	</div></div>
 	<hr class="hidden" />
Index: buddypress.org/public_html/wp-content/themes/bbpress-org/page-plugins.php
===================================================================
--- buddypress.org/public_html/wp-content/themes/bbpress-org/page-plugins.php	(revision 5726)
+++ buddypress.org/public_html/wp-content/themes/bbpress-org/page-plugins.php	(working copy)
@@ -12,7 +12,14 @@
 				<div class="bbp-pagination">
 					<div class="bbp-pagination-count">
 
-						<?php printf( 'Viewing %1$s to %2$s (%3$s)', number_format_i18n( $from_num ), number_format_i18n( $to_num ), number_format_i18n( $plugins->info['results'] ) ); ?>
+						<?php
+							/* translators: 1: starting number of plugins, 2: ending number, 3: total number */
+							printf( __( 'Viewing %1$s to %2$s (%3$s)', 'bbporg' ),
+								number_format_i18n( $from_num ),
+								number_format_i18n( $to_num ),
+								number_format_i18n( $plugins->info['results'] )
+							);
+						?>
 
 					</div>
 
@@ -40,7 +47,7 @@
 
 						$plugin_author_id = 0;
 
-						if ( !empty( $plugin->contributors ) ) {
+						if ( ! empty( $plugin->contributors ) ) {
 							$plugin_author    = get_user_by( 'login', key( $plugin->contributors ) );
 							$plugin_author_id = $plugin_author->ID;
 						}
@@ -47,13 +54,19 @@
 				?>
 
 				<div class="single-plugin">
-					<h3 class="plugin-title"><a href="<?php echo esc_url( 'https://wordpress.org/extend/plugins/' . $plugin->slug ); ?>/" title="Plugin Information"><?php echo esc_html( $plugin->name ); ?></a></h3>
+					<h3 class="plugin-title"><a href="<?php echo esc_url( 'https://wordpress.org/plugins/' . $plugin->slug ); ?>/"><?php echo esc_html( $plugin->name ); ?></a></h3>
 
 					<div class="plugin-meta">
-						<?php if ( !empty( $plugin->version  ) ) : ?><div>Version: <?php echo esc_html( $plugin->version ); ?></div><?php if ( !empty( $plugin->requires ) ) : ?><?php endif; ?><?php endif; ?>
-						<?php if ( !empty( $plugin->requires ) ) : ?><div>Requires: <?php echo esc_html( $plugin->requires ); ?></div><?php if ( !empty( $plugin->tested ) ) : ?><?php endif; ?><?php endif; ?>
-						<?php if ( !empty( $plugin->tested   ) ) : ?><div>Compatible up to: <?php echo esc_html( $plugin->tested ); ?></div><?php endif; ?>
-						<div>Rating: <?php echo $plugin->rating_html; // raw html - do not escape ?></div>
+						<?php if ( ! empty( $plugin->version ) ) : ?>
+							<div><?php _e( 'Version:', 'bbporg' ); ?> <?php echo esc_html( $plugin->version ); ?></div>
+						<?php endif; ?>
+						<?php if ( ! empty( $plugin->requires ) ) : ?>
+							<div><?php _e( 'Requires:', 'bbporg' ); ?> <?php echo esc_html( $plugin->requires ); ?></div>
+						<?php endif; ?>
+						<?php if ( ! empty( $plugin->tested ) ) : ?>
+							<div><?php _e( 'Compatible up to:', 'bbporg' ); ?> <?php echo esc_html( $plugin->tested ); ?></div>
+						<?php endif; ?>
+						<div><?php _e( 'Rating:', 'bbporg' ); ?> <?php echo $plugin->rating_html; // raw html - do not escape ?></div>
 					</div>
 
 					<p class="plugin-description" style="font-size: 12px">
@@ -67,7 +80,14 @@
 				<div class="bbp-pagination">
 					<div class="bbp-pagination-count">
 
-						<?php printf( 'Viewing %1$s to %2$s (%3$s)', number_format_i18n( $from_num ), number_format_i18n( $to_num ), number_format_i18n( $plugins->info['results'] ) ); ?>
+						<?php
+							/* translators: 1: starting number of plugins, 2: ending number, 3: total number */
+							printf( __( 'Viewing %1$s to %2$s (%3$s)', 'bbporg' ),
+								number_format_i18n( $from_num ),
+								number_format_i18n( $to_num ),
+								number_format_i18n( $plugins->info['results'] )
+							);
+						?>
 
 					</div>
 
Index: buddypress.org/public_html/wp-content/themes/bbpress-org/sidebar.php
===================================================================
--- buddypress.org/public_html/wp-content/themes/bbpress-org/sidebar.php	(revision 5726)
+++ buddypress.org/public_html/wp-content/themes/bbpress-org/sidebar.php	(working copy)
@@ -6,7 +6,7 @@
 		<?php if ( bbp_is_single_forum() || bb_base_topic_search_query( false ) ) : ?>
 
 			<div>
-				<h3><?php _e( 'Forum Info', 'bbporg'); ?></h3>
+				<h3><?php _e( 'Forum Info', 'bbporg' ); ?></h3>
 				<ul class="forum-info">
 					<?php bb_base_single_forum_description(); ?>
 				</ul>
@@ -15,10 +15,10 @@
 			<?php bb_base_topic_search_form(); ?>
 
 			<div>
-				<h3><?php _e( 'Forum Feeds', 'bbporg'); ?></h3>
+				<h3><?php _e( 'Forum Feeds', 'bbporg' ); ?></h3>
 				<ul>
-					<li><a class="feed" href="<?php bbp_forum_permalink(); ?>feed/" title="Forum Posts">Recent Posts</a></li>
-					<li><a class="feed" href="<?php bbp_forum_permalink(); ?>feed/?type=topic" title="Forum Topics">Recent Topics</a></li>
+					<li><a class="feed" href="<?php bbp_forum_permalink(); ?>feed/"><?php _e( 'Recent Posts', 'bbporg' ); ?></a></li>
+					<li><a class="feed" href="<?php bbp_forum_permalink(); ?>feed/?type=topic"><?php _e( 'Recent Topics', 'bbporg' ); ?></a></li>
 				</ul>
 			</div>
 
@@ -25,7 +25,7 @@
 		<?php elseif ( bbp_is_single_topic() || bbp_is_topic_edit() || bbp_is_reply_edit() ) : ?>
 
 			<div>
-				<h3><?php _e( 'Topic Info', 'bbporg'); ?></h3>
+				<h3><?php _e( 'Topic Info', 'bbporg' ); ?></h3>
 				<ul class="topic-info">
 					<?php bb_base_single_topic_description(); ?>
 				</ul>
@@ -58,18 +58,18 @@
 		<?php else : ?>
 
 			<div>
-				<h3><?php _e( 'Forums', 'bbporg'); ?></h3>
+				<h3><?php _e( 'Forums', 'bbporg' ); ?></h3>
 				<?php echo do_shortcode( '[bbp-forum-index]' ); ?>
 			</div>
 			<hr class="hidden" />
 
 			<div>
-				<h3><?php _e( 'Views', 'bbporg'); ?></h3>
+				<h3><?php _e( 'Views', 'bbporg' ); ?></h3>
 				<ul>
 
 					<?php foreach ( bbp_get_views() as $view => $args ) : ?>
 
-						<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>
+						<li><a class="bbp-view-title" href="<?php bbp_view_url( $view ); ?>"><?php bbp_view_title( $view ); ?></a></li>
 
 					<?php endforeach; ?>
 
@@ -77,15 +77,15 @@
 			</div>
 
 			<div>
-				<h3><?php _e( 'Feeds', 'bbporg'); ?></h3>
+				<h3><?php _e( 'Feeds', 'bbporg' ); ?></h3>
 				<ul>
-					<li><a class="feed" href="<?php bbp_forums_url(); ?>feed/" title="All Recent Posts">All Recent Posts</a></li>
-					<li><a class="feed" href="<?php bbp_topics_url(); ?>feed/" title="All Recent Topics">All Recent Topics</a></li>
+					<li><a class="feed" href="<?php bbp_forums_url(); ?>feed/"><?php _e( 'All Recent Posts', 'bbporg' ); ?></a></li>
+					<li><a class="feed" href="<?php bbp_topics_url(); ?>feed/"><?php _e( 'All Recent Topics', 'bbporg' ); ?></a></li>
 				</ul>
 			</div>
 
 			<div>
-				<h3><?php _e( 'Tags', 'bbporg'); ?></h3>
+				<h3><?php _e( 'Tags', 'bbporg' ); ?></h3>
 				<?php echo do_shortcode( '[bbp-topic-tags]' ); ?>
 			</div>
 
@@ -94,9 +94,9 @@
 	<?php elseif ( is_front_page() || is_404() ) : ?>
 
 		<div class="feature">
-			<h3><?php _e('bbPress Complete', 'bbporg'); ?></h3>
-			<p><a href="https://www.packtpub.com/web-development/bbpress-complete" title="bbPress Complete"><img width="225" alt="" src="<?php echo get_stylesheet_directory_uri(); ?>/images/bbpress-packt.jpg"/></a></p>
-			<p class="book-description">A step-by-step guide to creating, managing, and growing a community around your WordPress website.</p>
+			<h3><?php _e( 'bbPress Complete', 'bbporg' ); ?></h3>
+			<p><a href="https://www.packtpub.com/web-development/bbpress-complete"><img width="225" alt="<?php esc_attr_e( 'bbPress Complete', 'bbporg' ); ?>" src="<?php echo get_stylesheet_directory_uri(); ?>/images/bbpress-packt.jpg"/></a></p>
+			<p class="book-description"><?php _e( 'A step-by-step guide to creating, managing, and growing a community around your WordPress website.', 'bbporg' ); ?></p>
 		</div>
 
 	<?php elseif ( is_page( array( 'plugins', 116247 ) ) ) : ?>
@@ -104,9 +104,9 @@
 		<?php bb_base_plugin_search_form(); ?>
 
 		<div>
-			<h3><?php _e( 'Legacy', 'bbporg'); ?></h3>
+			<h3><?php _e( 'Legacy', 'bbporg' ); ?></h3>
 			<ul>
-				<li><a href="<?php echo get_permalink( 116247 ); ?>" title="Legacy Plugins">Plugins for bbPress 1.1</a></li>
+				<li><a href="<?php echo get_permalink( 116247 ); ?>"><?php _e( 'Plugins for bbPress 1.1', 'bbporg' ); ?></a></li>
 			</ul>
 		</div>
 
@@ -113,7 +113,7 @@
 	<?php elseif ( ( ! is_page( 'login' ) && ! is_page( 'register' ) && ! is_page( 'lost-password' ) ) || is_home() || is_singular( 'post' ) || is_archive() ) : ?>
 
 		<div>
-			<h3><?php _e( 'Categories', 'bbporg'); ?></h3>
+			<h3><?php _e( 'Categories', 'bbporg' ); ?></h3>
 			<ul>
 				<?php wp_list_categories( array( 'title_li' => false ) ); ?>
 			</ul>
@@ -120,7 +120,7 @@
 		</div>
 
 		<div>
-			<h3><?php _e( 'Tags', 'bbporg'); ?></h3>
+			<h3><?php _e( 'Tags', 'bbporg' ); ?></h3>
 			<?php wp_tag_cloud(); ?>
 		</div>
 
