Same with the hand coding the translations into your template, you do for the fields, but you need to use add_filters() to your get_field(code) to make sure then quicktags or langage tages render properly:
enter your content like this in the ACF you created:
<!--en-->your content<!--:--><!--es-->your content<!--:-->
in your template you echo out your results:
<?php echo add_filters('the_content',get_field("yourfieldname")); ?>
The above will also render out Shortcodes that you may have in your field
<!--en-->[shortcode for some element]<!--:--><!--es-->[shortcode for some element]<!--:-->
You cannot use shortcodes with the qTranslate quickcodes ([:en] [:es]) , you have to use the fulle language code (<!–:en–> <!–:–> )