Using plugin blog-in-blog with plugin qtranslate, the title of the posts is displayed with all languages
i.e.: My Title Mon Titre
To fix it, change the following in the blog-in-blog.php:
replace line:
$data['post_title'] = $post->post_title;
with:
$data['post_title'] = apply_filters('the_content', $post->post_title);
I the blog-in-blog author could include this in the next plugin update