Display a post attachment depending on the caption

Can you try something along these lines and report back the result?

<?php if(qtrans_getLanguage()=='en'): ?>

  // attachment if statement


<?php else if(qtrans_getLanguage()=='fr'): ?>

  // attachment if statement

<?php endif; ?>

Technically you could omit the second else if statement and replace it just with <?php else : ?> assuming you only have two languages you are dealing with because if the first condition fails then it will automatically run your second if statement for your attachment.