How to use get_option() without any filter?

I’m guessing that you are using language tags around ‘polish textdeutschland text’ i.e. <!--:pl-->polish text<!--:--><!--:de-->deutschland text<!--:--> but that they got ignored when you posted your answer.

I’m pretty sure what you need to be doing is using the __() (which returns the translation for use in php code) and _e() (echo’s direct to screen) wordpress functions. If you look at the qTranslate support forum FAQ #14, he uses the example:

<?php _e("<!--:en-->english text<!--:--><!--:de-->german text<!--:-->"); ?> 

In your case I think you want to use:

<?php __(get_option('example')); ?>

This is assuming that you are using it within your plugin. If you’re using it in a page template you’d use:

<?php _e(get_option('example')); ?>