Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><strong>How about Google Translator for website ?</strong></p> <p>I am not sure about the accuracy level. But if you want to project your website in world's most of popular languages you could give a try to this. Google translator works with JS. For that you just need to add some JS code as below,</p> <pre><code>&lt;div id="google_translate_element"&gt;&lt;/div&gt; &lt;script type="text/javascript"&gt; function googleTranslateElementInit() { new google.translate.TranslateElement({ pageLanguage: 'en', layout: google.translate.TranslateElement.InlineLayout.SIMPLE, autoDisplay: false, includedLanguages: 'en,af,sq,ar,hy,az,eu,be,bg,ca,zh-CN,zh-TW,hr,cs,da,nl,et,tl,fi,fr,gl,ka,de,el,ht,iw,hi,hu,is,id,ga,it,ja,ko,lv,lt,mk,ms,mt,no,fa,pl,pt,ro,ru,sr,sk,sl,es,sw,sv,th,tr,uk,ur,vi,cy,yi,' }, 'google_translate_element'); } &lt;/script&gt; &lt;script type="text/javascript" src="http://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"&gt;&lt;/script&gt; </code></pre> <p><strong>Note: You can customize the languages by modifying "includedLanguages" (contains short forms).</strong></p> <p>Now when you use the above code Google will put a small header over your website and it looks ugly. That's why I made a simple CSS Hack to remove that header and make your website as it was. For that add the following css into your code ,</p> <pre><code>&lt;style type='text/css'&gt; #goog-gt-tt {display:none !important;} .goog-te-banner-frame {display:none !important;} .goog-te-gadget-icon {background-image:url(http://joomla-gtranslate.googlecode.com/svn/trunk/gt_logo_19x19.gif) !important;background-position:0 0 !important;} .goog-te-menu-value:hover {text-decoration:none !important;} &lt;/style&gt; </code></pre> <p>Hope it will help you.. :)</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload