有中英翻译API服务吗?
我有一份中文产品名称列表。我想将这些翻译成英文,我尝试过Google AJAX语言API,但似乎翻译不好,如果有人能给我一些建议或指出我更好的选择,那就太好了。
谢谢。
I have a list of product names in Chinese. I want to translate these into English, I have tried Google AJAX language API, but it seems that translation is not good, it would be great if someone could give me some advice about or point me towards a better choice.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
呃,谷歌当然是一个很棒的翻译服务,但如果你正在寻找可靠的翻译,你可能需要人工翻译 - 机器翻译最多只能是粗略的。 myGengo 有一个 API 可以促进机器翻译;你的问题被标记为“python”,所以我在下面抛出了一些示例代码,但是你可以 如果您愿意,可以获取更广泛的演练。
最酷的是,您可以在等待人工翻译完成的同时获得机器翻译,因此,如果您在这段时间需要某些东西,您也不会感到兴奋和干燥。 ;)
首先,安装适用于 Python 的 mygengo API 库:
然后,请求如下翻译:
Eh, Google is certainly a great translation service, but if you're looking for reliable translations you probably need to go human - machine translation can be sketchy at best. myGengo has an API to facilitate machine translation; your question is tagged with "python", so I've thrown some sample code below, but you can get a more extensive walkthrough if you so desire.
The cool thing is that you can get a machine translation while you wait for your human translation to be done, so if you need something in the time between you're not high and dry. ;)
First, install the mygengo API library for Python:
Then, request translations like below:
我认为谷歌可能是最好的基于网络的自动翻译服务之一。
I think Google are probably one of the best web based automatic translation services.