### Eclipse Workspace Patch 1.0 Index: wp-content/plugins/buddypress/bp-core/bp-core-templatetags.php =================================================================== --- wp-content/plugins/buddypress/bp-core/bp-core-templatetags.php (revision 181) +++ wp-content/plugins/buddypress/bp-core/bp-core-templatetags.php (working copy) @@ -904,10 +904,10 @@ $title = __( 'Blog', 'buddypress' ); } else if ( !empty( $bp->displayed_user->fullname ) ) { - $title = strip_tags( $bp->displayed_user->fullname . ' | ' . ucwords( $bp->current_component ) ); + $title = strip_tags( $bp->displayed_user->fullname . ' | ' . ucwords( __( $bp->current_component, 'buddypress' ) ) ); } else if ( $bp->is_single_item ) { - $title = ucwords( $bp->current_component ) . ' | ' . $bp->bp_options_title . ' | ' . $bp->bp_options_nav[$bp->current_component][$bp->current_action]['name']; + $title = ucwords( __( $bp->current_component, 'buddypress' ) ) . ' | ' . $bp->bp_options_title . ' | ' . $bp->bp_options_nav[$bp->current_component][$bp->current_action]['name']; } else if ( $bp->is_directory ) { if ( !$bp->current_component )