DeepL’s networks consistently outperform other translation systems, making ours the world’s best translation machine. Try it out for yourself or read on to see a quantitative comparison of our system to others.
119 paragraphs from different domains were translated by the various systems. External professional translators were hired to review the translations - without information about which system produced which translation. The graph displays how often each system’s translations were rated better than all other translations. Not shown are cases where several systems produced the best translation. The tests were performed in January 2020.
How it works:
Use headless mode of Chrome to visit translation websites (such as https://www.deepl.com/translator) and get results.
Usage:
Very simple.
Code: Select all
DeepLTranslator.init() ; Initialize interface
MsgBox,% DeepLTranslator.translate("text") ; Show translation results.
DeepLTranslator.free() ; Release interface resources.
#Include <DeepLTranslator> ; Library reference
Different interfaces are used in the same way.
For example, if you want to translate with Sogou.
Code: Select all
SogouTranslator.init() ; Initialize interface
MsgBox,% SogouTranslator.translate("text") ; Show translation results.
SogouTranslator.free() ; Release interface resources.
#Include <SogouTranslator> ; Library reference
The examples contains a simple translator with GUI, which supports translation between Chinese and English.
Download:
Releases(recommend)
Source Code(need to install Chrome by yourself, not recommend)