You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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).
Было обсуждение про то, что сервисы пытаются блокировать автопереводы и были идеи выгрузки в файл. Предложенный вариант с указанием своего адресаподойдет тем, кто может настроить у себя сервис перевода локально или использовать какой-либо внешний источник.
Есть ли возможность добавить полностью ручной сервис переводов? по такому (или похожему) типу https://github.com/bbepis/XUnity.AutoTranslator#translators
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-translation-service.net/translate
Example Request: GET http://my-custom-translation-service.net/translate?from=ja&to=en&text=こんにちは
Example Response (only body): Hello
The text was updated successfully, but these errors were encountered: