Support is there add ons to translate the pages in English?

hema

Registered
Hello guys, is there an add ons that will translate everything to English from threads to posts? so the same page will be in 2 languages in google? so if someone search in 1 language he will find the page in that language or if he searches in English he will find it in English in google? thank you.
 
Solution
forum_list
Before that line

Code:
     <!-- Google Translate -->
        <li class="navTab upgrade PopupClosed">
            <a href="http://translate.google.com/translate?u={$logoLink}" class="navLink">Google Translate</a>
        </li>

Janet

Registered
forum_list
Before that line

Code:
     <!-- Google Translate -->
        <li class="navTab upgrade PopupClosed">
            <a href="http://translate.google.com/translate?u={$logoLink}" class="navLink">Google Translate</a>
        </li>
 
Solution

Merdas

Registered
Or
Code:
<div class="google">
<div id="google_translate_element"></div><script>
function googleTranslateElementInit() {
  new google.translate.TranslateElement({
    pageLanguage: 'en',
    layout: google.translate.TranslateElement.InlineLayout.HORIZONTAL
  }, 'google_translate_element');
}
</script><script src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
</div>
extra.less
Code:
/* google translate */
.google {   
float: right;
margin-top: -35px;
}
 
  • Tags
    is there add ons to translate the pages in english?
  • Back
    Top Bottom