The problem is that at function bp_format_time, lines 819-823 the code uses a time offset.
Don’t know why it does that, but it is causing the error.
`
// Get GMT offset from root blog
$root_blog_offset = get_blog_option( BP_ROOT_BLOG, ‘gmt_offset’ );
// Calculate offset time
$time_offest = $time + ( $root_blog_offset * 3600 );
`
A quick fix is to add this code after line 824, but I don’t know what it will break.
`
$time_offest = $time;
`
Another issue is that `date( ‘F j, Y ‘, $time_offest );` is not translated.