salarcode / AutoResxTranslator

A tool to automatically translate Resx files to any language using Google Translator. No API key is required for the translator. This tool also provides a text translator out of the box.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

there is a new translator (DeepL) with api

webspiderteam opened this issue · comments

I saw a new translator and it translates better than google. May be you want to add. It has simple api

EXAMPLE REQUEST
curl -X POST 'https://api-free.deepl.com/v2/translate'
--header 'Authorization: DeepL-Auth-Key [yourAuthKey]'
--header 'Content-Type: application/json'
--data '{
"text": [
"Hello, world!"
],
"target_lang": "DE"
}'
EXAMPLE RESPONSE
{
"translations": [
{
"detected_source_language": "EN",
"text": "Hallo, Welt!"
}
]
}

Sorry, this project is maintenance mode, I only accept pull requests

I made code and created Pull request #19