PHP 和谷歌翻译 API 替代品

发布于 2024-11-10 05:25:10 字数 59 浏览 0 评论 0 原文

由于 Google 将在今年年底前停止其翻译 API,是否有人已经找到了一个好的(免费或收费)替代方案?

Since Google is going to pull the plug out of their translator API (by the end of this year), Is there someone who already found a good (free or $) alternative?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

陌伤ぢ 2024-11-17 05:25:10

尝试 http://translateth.is/ 上的 TranslateThis...

非常简单!要查看效果,请尝试这段代码:

<!-- Begin TranslateThis Button -->

<div id="translate-this"><a style="width:180px;height:18px;display:block;" class="translate-this-button" href="http://translateth.is/">Translate</a></div>

<script type="text/javascript" src="http://x.translateth.is/translate-this.js"></script>
<script type="text/javascript">
TranslateThis();
</script>

<!-- End TranslateThis Button -->

不要担心按钮方面...您可以自定义它!

Try TranslateThis on http://translateth.is/...

Is very simple! To see the effects try this piece of code:

<!-- Begin TranslateThis Button -->

<div id="translate-this"><a style="width:180px;height:18px;display:block;" class="translate-this-button" href="http://translateth.is/">Translate</a></div>

<script type="text/javascript" src="http://x.translateth.is/translate-this.js"></script>
<script type="text/javascript">
TranslateThis();
</script>

<!-- End TranslateThis Button -->

Don't worry about the button aspect... You can customize it!

明月松间行 2024-11-17 05:25:10

谷歌正在提供网站翻译的替代方案。它是 GOOGLE WEB ElementS,以及 google 的 web elements 主页 本身用于翻译的一些代码

<!-- Google Translate Element -->
<div id="google_translate_element" style="display:block"></div><script>
function googleTranslateElementInit() {
  new google.translate.TranslateElement({pageLanguage: "af"}, "google_translate_element");
};</script>

其他替代方案:
微软翻译工具
他们提供 HTTPHTTPSOAPSDK< /a> 集成接口。

Google is offering and alternative to website translation. Its the GOOGLE WEB ELEMENTS, and some code from the google's web elements homepage itself for translation

<!-- Google Translate Element -->
<div id="google_translate_element" style="display:block"></div><script>
function googleTranslateElementInit() {
  new google.translate.TranslateElement({pageLanguage: "af"}, "google_translate_element");
};</script>

Other alternatives:
Microsoft Translation Tools
they offer HTTP, SOAP and SDK interfaces for integration.

若言繁花未落 2024-11-17 05:25:10

如果您只需要语言检测,可以使用免费的 API:

http://DetectLanguage.com

它会生成 JSON 输出,就像 Google 一样翻译。

If you need just language detection, there is free API:

http://detectlanguage.com

It produces JSON output, just like Google Translate.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文