That’s great. No one has sent a finished translation to me so that’s why there aren’t any. I can see why those strings aren’t being translated, that’s my fault. Please open wp-bulletin-board/php/wpbb-view-forum.php around line 139 to 144 find:
<th><?php _e('Status'); ?></th>
<th><?php _e('Topic'); ?></th>
<th><?php _e('Author'); ?></th>
<th><?php _e('Posts'); ?></th>
<th><?php _e('Last Reply'); ?></th>
<th><?php _e('Action'); ?></th>
Change to:
<th><?php _e('Status'); ?></th>
<th><?php _e('Topic', 'wp-bb'); ?></th>
<th><?php _e('Author' 'wp-bb'); ?></th>
<th><?php _e('Posts' 'wp-bb'); ?></th>
<th><?php _e('Last Reply' 'wp-bb'); ?></th>
<th><?php _e('Action' 'wp-bb'); ?></th>
Let me know if you find anymore, will fix it ASAP.
Thanks again.