You've setup a multilingual website using Joomla! and Joom!Fish to translate your content between languages. For some reason however, you want to offer your users the ability to experience different content -like banners- depending on the selected language. So what is the easiest way to do something like that?
Let's assume we offer our content in 2 languages, English and French. We open up our template's index.php file and locate where this change should occur, e.g. in the place of a current module position:
<?php mosLoadModules ('banner_en',-1); ?>
We change this to the following:
<?php
if ($mosConfig_lang == 'english' ) {
mosLoadModules ('banner_en',-1);
} else if {
if ($mosConfig_lang == 'french' ) {
mosLoadModules ('banner_fr',-1);
} else { // default - if no language is defined for some reason
mosLoadModules ('banner_en',-1);
}
?>
Got it?

Now, note down this: you CAN use this tip to even pass different CSS files to the browser or even images depending on the selected language!