Hello,

first of all, thanks for your work on this module! We appreciate it very much!

We'd like to be able to configure the input format of the original content (body) in the Translation Editor. In line 201 of the file icl_translate/icl_translate.editor_form.inc it says

. '<br /><div class="field_data">' . $field_data . '</div></div>'

and we've patched it look like this

. '<br /><div class="field_data">' . check_markup($field_data) . '</div></div>'

(see http://api.drupal.org/api/drupal/modules%21filter%21filter.module/functi... for more information - in short the default input format will be applied through check_markup())

The background is that we have specified our own mark up syntax to simplify content creation and this markup needs to be parsed so that the original content looks like it does on the original page. I'd rather have a configuration setting for this instead of having to use a patch. Do you think you could do that?

Thanks for your attention!