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.
92 stars 37 forks source link

there is a new translator (DeepL) with api #18

Open webspiderteam opened 1 year ago

webspiderteam commented 1 year ago

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!" } ] }

salarcode commented 1 year ago

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

webspiderteam commented 3 months ago

I made code and created Pull request #19