I translated my email template using the wpbe_html_body filter and preg_replace. Not elegant but it works.
Example:
function translate_wp_better_email_template($message){
if(ICL_LANGUAGE_CODE != 'fr')
return $message;
$message = preg_replace('/Email sent/','Courriel envoyé', $message);
return $message;
} add_action('wpbe_html_body','translate_wp_better_email_template');