Horje

If your just looking for a way for your site to be viewed in other languages I would defiantly recommend using Google Translate Tools. I just add it to the theme:



<p id="google_translate_element">
<span id="trans">
Translate: </span>
</p>


You can hide the Google Logo and funky colors in your css:



.goog-logo-link{display:none;} 

Instead of calling the Google Translate js I just copy the return script and add it to my main js file.

Edit

Google provides embed code to use on your website:



 <p id="google_translate_element">
</p>
<script>
function googleTranslateElementInit() { new google.translate.TranslateElement({ pageLanguage: 'en', layout: google.translate.TranslateElement.InlineLayout.SIMPLE }, 'google_translate_element');
}</script>
<script src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit">
</script>


The first line:

can be placed where you want the translate drop down box to be shown:

alt text

The section between the first set of