Index: sites/trunk/buddypress.org/public_html/wp-content/themes/bb-base/functions.php
===================================================================
--- sites/trunk/buddypress.org/public_html/wp-content/themes/bb-base/functions.php	(revision 4078)
+++ sites/trunk/buddypress.org/public_html/wp-content/themes/bb-base/functions.php	(working copy)
@@ -178,13 +178,32 @@

 	?>

-	<li class="topic-forum">In: <a href="<?php bbp_forum_permalink( bbp_get_topic_forum_id() ); ?>"><?php bbp_topic_forum_title(); ?></a></li>
-	<?php if ( !empty( $reply_count ) ) : ?><li class="reply-count"><?php echo $reply_count; ?></li><?php endif; ?>
-	<?php if ( !empty( $voice_count ) ) : ?><li class="voice-count"><?php echo $voice_count; ?></li><?php endif; ?>
+	<li class="topic-forum"><?php
+		/* translators: %s: forum title */
+		printf( __( 'In: %s', 'bbporg' ),
+			sprintf( '<a href="%s">%s</a>', esc_url( bbp_get_forum_permalink( bbp_get_topic_forum_id() ) ), bbp_get_topic_forum_title() )
+		);
+	?></li>
+	<?php if ( !empty( $reply_count ) ) : ?>
+		<li class="reply-count"><?php echo $reply_count; ?></li>
+	<?php endif; ?>
+	<?php if ( !empty( $voice_count ) ) : ?>
+		<li class="voice-count"><?php echo $voice_count; ?></li>
+	<?php endif; ?>
 	<?php if ( !empty( $last_reply  ) ) : ?>
-		<li class="topic-freshness-author"><?php printf( __( 'Last reply from: %s', 'bbporg' ), bbp_get_author_link( array( 'type' => 'name', 'post_id' => $last_reply, 'size' => '15' ) ) ); ?></li>
+		<li class="topic-freshness-author"><?php
+			/* translators: %s: reply author link */
+			printf( __( 'Last reply from: %s', 'bbporg' ),
+				bbp_get_author_link( array( 'type' => 'name', 'post_id' => $last_reply, 'size' => '15' ) )
+			);
+		?></li>
 	<?php endif; ?>
-	<?php if ( !empty( $time_since  ) ) : ?><li class="topic-freshness-time"><?php printf( __( 'Last activity: %s', 'bbporg' ), $time_since ); ?></li><?php endif; ?>
+	<?php if ( !empty( $time_since  ) ) : ?>
+		<li class="topic-freshness-time"><?php
+			/* translators: %s: date/time link to the latest post */
+			printf( __( 'Last activity: %s', 'bbporg' ), $time_since );
+		?></li>
+	<?php endif; ?>
 	<?php if ( is_user_logged_in() ) : ?>
 		<?php $_topic_id = bbp_is_reply_edit() ? bbp_get_reply_topic_id() : $topic_id; ?>
 		<li class="topic-subscribe"><?php bbp_topic_subscription_link( array( 'before' => '', 'topic_id' => $_topic_id ) ); ?></li>
