A vscode plugin for Koreans that can help you write classes, variables, and function names.
클래스, 변수 및 함수 이름을 작성할 때 한국사용자에게 도움을 주는 vscode 플러그인이다.
- Translates English(Korean) into Korean(English)
영어(한국어)를 한국어(영어)로 번역합니다. - Provides a method name with a prefix that can be applied to the translated text when you translate Korean.
한국어를 번역 할 때, 번역 된 텍스트에 적용 할 수 있는 접두사가 있는 메서드 이름을 제공합니다.
- MacOS:
Cmd + shift + t
- Window:
Ctrl + shift + t
You can use limited Google Translate API. (default)
제한된 Google 번역 API를 사용할 수 있습니다. (default)
If you want to use Papago Translate API of NAVER, you need NAVER API key.
만약 네이버의 파파고 API
를 사용하고자 한다면, NAVER API 키가 필요합니다.
- Free up to 10,000 per day
매일 10,000까지 무료 - NAVER API Registration Guide
NAVER API 등록 가이드
translator.type
: translate API type (google, naver). default is googletranslator.rules
: suggest prefix rulestranslator.naver.clientId
: Naver API ClientIDtranslator.naver.clientSecret
: Naver API clientSecret
// ...
"translator.rules": [
{
"prefix": "create",
"description": "생성한다",
"detail": "기존에 없던 것을 창조한다.",
"antonymPrefix": "destroy"
},
{
"prefix": "make",
"description": "생성한다 ",
"detail": "기존에 있던 것에서 부가 자료를 생성한다."
},
{
"prefix": "destroy",
"description": "파괴한다. 자원을 해제한다.",
"antonymPrefix": "create"
}
// ...
]
"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.