有没有办法根据访问者的IP和使用谷歌翻译插件的“接受语言”标题信息自动翻译我的网站?
谢谢!
答案 0 :(得分:1)
这是一个老问题,完全不建议这样做(因为用户只能使用 vpn)但我很无聊所以这是我想出的:
代码:
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-3.6.0.js"></script></head>
<script src="https://cdn.jsdelivr.net/npm/js-cookie@rc/dist/js.cookie.min.js"></script>
<body>
<center>
<br/>
<div id="google_translate_element"></div><br/>
Country: <span id="country"></span>
<h1>Hello my friends this is a cool code.</h1>
</center>
<script>
function hc(dc){
lang = Cookies.get('language');
if(lang != dc){
window.location.hash = 'googtrans(en|' + dc + ')';
location.reload();
Cookies.set('language', dc);
}
}
$.ajax({
type: "GET",
url: "https://geolocation-db.com/jsonp/",
jsonpCallback: "callback",
dataType: "jsonp",
success: function( location ) {
$('#country').html(location.country_code);
co = location.country_code;
co = co.toLowerCase();
hc(co); // Replace here
}
});
function googleTranslateElementInit() {
new google.translate.TranslateElement({pageLanguage: 'en', layout: google.translate.TranslateElement.InlineLayout.SIMPLE}, 'google_translate_element');
}
</script>
<script src="http://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
</body>
</html>
说明:
基本上它向 https://geolocation-db.com/(免费)发送 Ajax 请求,并使用 json 响应,取出国家代码,然后将哈希替换为国家代码,然后谷歌翻译进行翻译。现在这可能不是最好的方法,这肯定有问题,但它有效(有时?)。
问题:
尝试一下:
复制代码并尝试一下。如果您在美国或其他没有自己语言代码的国家/地区进行测试,只需将 hc(co);
替换为您自己的测试语言,例如 hc('ru');
。
要求:
答案 1 :(得分:-1)
您可以在此处查看enter link description here 对于插件,您将通过google获取源代码,您可以在其中根据需要设置默认语言。
function googleTranslateElementInit() {
new google.translate.TranslateElement({pageLanguage: 'en', includedLanguages: 'bn,en,gu,hi,ml,mr,pa,sd,si,ta,ur', layout: google.translate.TranslateElement.InlineLayout.SIMPLE}, 'google_translate_element');
}
就像我将'en'设置为默认语言一样。