Estos son los traductores que puedes usar tocando el config. Entiendo que puedes usar el traductor que quieras tal como viene al final(custom traslate) usando los parámetros que te indican.
- GoogleTranslate, based on the online Google translation service. Does not require authentication.
- No limitations, but unstable.
- GoogleTranslateLegitimate, based on the Google cloud translation API. Requires an API key.
- Provides trial period of 1 year with $300 credits. Enough for 15 million characters translations.
- BingTranslate, based on the online Bing translation service. Does not require authentication.
- No limitations, but unstable.
- BingTranslateLegitimate, based on the Azure text translation. Requires an API key.
- Free up to 2 million characters per month.
- PapagoTranslate, based on the online Google translation service. Does not require authentication.
- No limitations, but unstable.
- BaiduTranslate, based on Baidu translation service. Requires AppId and AppSecret.
- Not sure on quotas on this one.
- YandexTranslate, based on the Yandex translation service. Requires an API key.
- Free up to 1 million characters per day, but max 10 million characters per month.
- WatsonTranslate, based on IBM's Watson. Requires a URL and an API key.
- Free up to 1 million characters per month.
- LecPowerTranslator15, based on LEC's Power Translator. Does not require authentication, but does require the software installed.
- No limitations.
- CustomTranslate. Alternatively you can also specify any custom HTTP url that can be used as a translation endpoint (GET request). This must use the query parameters "from", "to" and "text" and return only a string with the result (try HTTP without SSL first, as unity-mono often has issues with SSL).
- NOTE: This is a developer-centric option. You cannot simply specify "CustomTranslate" and expect it to work with any arbitrary translation service you find online. See FAQ
- Example Configuration:
- Endpoint=CustomTranslate
- [Custom]
- Url=http://my-custom-tra...e.net/translate
- Example Request: GET http://my-custom-translation-service.net/translate?from=ja&to=en&text=こんにちは
- Example Response (only body): Hello
NOTE: If you use any of the online translators that does not require some form of authentication, that this plugin may break at any time.
Since 3.0.0, you can also implement your own translators. To do so, follow the instruction
Editado por Baal Hammon, 02 July 2019 - 10:14 AM.