A vscode plugin to translate to specified languages.
- MacOS:
Cmd + shift + t
- Window:
Ctrl + shift + t
You can use limited Google Translate API. (default)
If you want to use Papago Translate API of NAVER, you need NAVER API key.
- Free up to 10,000 per day
- NAVER API Registration Guide
translator.type
: translate API type (google, naver). default is googletranslator.rules
: suggest prefix rulestranslator.naver.clientId
: Naver API ClientIDtranslator.naver.clientSecret
: Naver API clientSecret
// ...
{
"lang": "es",
"langName": "Español",
"detail": "Traducir al español",
"active": true
},
{
"lang": "en",
"langName": "English",
"detail": "English tranlation",,
"active": true
},
"translator.naver.clientId": "Naver API clientID",
"translator.naver.clientSecret": "Naver API clientSecret",
- add google translate API (default)
- change shortcut from
cmd + alt + t
tocmd + shift + t
on MacOS - change shortcut from
ctrl + alt + t
toctrl + shift + t
on Window
Initial release of Translator.