I got a multilingual website. Each domein has its own language. Sometimes i would like to echo one sentence in multiple languages. I'm using wordpress as site engine.
Does anyone know if something like this is possible with gettext?
<?php
echo __('some text', 'en_EN'); // echo this string in English.
echo __('some text', 'nl_NL'); // echo this string in Dutch.
echo __('some text', 'de_DE'); // echo this string in German.
?>