最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Automatically Translate Website based on URL Parameter using Google Translate - Stack Overflow

programmeradmin2浏览0评论

I have a Website which currently is only in English. However, we have a Google Translate widget which will translate the website to any language selected by the user. Here's the small snippet:

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

Now, I will be routing some traffic from Spanish speaking users to the site. Considering I know these are spanish speaking users, is there any call I can make on the code to Automatically translate the website to Spanish (i.e to simulate a user selecting a given option on the Translate)? I'd be using a specific URL param, such as for example lang=spa.

I tried browsing the code that gets inserted when the DIV is loaded, but it was just a very messy code to even look at.

Has anyone tried such thing, can you provide a code bit to follow up from?

Thanks.

I have a Website which currently is only in English. However, we have a Google Translate widget which will translate the website to any language selected by the user. Here's the small snippet:

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

Now, I will be routing some traffic from Spanish speaking users to the site. Considering I know these are spanish speaking users, is there any call I can make on the code to Automatically translate the website to Spanish (i.e to simulate a user selecting a given option on the Translate)? I'd be using a specific URL param, such as for example lang=spa.

I tried browsing the code that gets inserted when the DIV is loaded, but it was just a very messy code to even look at.

Has anyone tried such thing, can you provide a code bit to follow up from?

Thanks.

Share Improve this question asked Mar 4, 2014 at 5:51 daniel_c05daniel_c05 11.5k18 gold badges62 silver badges78 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 10

This should help... just pass it into the URL like this:

https://support.google./translate/?hl=en#2643150

发布评论

评论列表(0)

  1. 暂无评论