如何使用谷歌翻译api所有页面

时间:2016-06-23 20:13:53

标签: google-translate

我在我的网页上使用谷歌翻译api。我将google翻译脚本添加到index.php。我的网页上有很多页面。如果我传递到另一个页面谷歌翻译脚本不起作用,只需在我添加的页面上工作。我想使用所有页面。我应该逐个添加谷歌翻译脚本所有页面吗?有没有简单的方法来添加所有页面?

2 个答案:

答案 0 :(得分:0)

是的,您必须将其添加到所有页面。

在此处注册您的网站https://translate.google.com/manager/website/

在所有页面上添加代码后,所有页面都将根据用户优先选择自动翻译。用户无需在每个页面上选择首选语言。

答案 1 :(得分:0)

我不确定我是否理解你的问题......

如果您想将Google翻译API代码动态地包含在所有页面中,而不是以多种方式执行此操作

1. create one translate.js file with the api code inside. 
then use include("translate.js"); in all pages where you need it.

2. create inline <script>(paste here, translate api code)</script> 
in dynamic header or footer page if you've one already. than use

include("header.php"); use it in all pages where you need it. 
if you place the tracking code in a header file..

include("footer.php"); use it in all pages where you need it. 
if you place the translate code in a footer file..