📝 Update Korean docs as upstream

[ci skip]
This commit is contained in:
Plusb Preco 2016-05-17 21:18:31 +09:00
parent 83e3d059b4
commit ee9e28dfdf
4 changed files with 9 additions and 2 deletions

View file

@ -23,6 +23,7 @@ Electron에 대해 자주 묻는 질문이 있습니다. 이슈를 생성하기
* [보안](tutorial/security.md) * [보안](tutorial/security.md)
* [어플리케이션 배포](tutorial/application-distribution.md) * [어플리케이션 배포](tutorial/application-distribution.md)
* [Mac 앱스토어 어플리케이션 제출 가이드](tutorial/mac-app-store-submission-guide.md) * [Mac 앱스토어 어플리케이션 제출 가이드](tutorial/mac-app-store-submission-guide.md)
* [Windows 스토어 가이드](tutorial/windows-store-guide.md)
* [어플리케이션 패키징](tutorial/application-packaging.md) * [어플리케이션 패키징](tutorial/application-packaging.md)
* [네이티브 Node 모듈 사용하기](tutorial/using-native-node-modules.md) * [네이티브 Node 모듈 사용하기](tutorial/using-native-node-modules.md)
* [메인 프로세스 디버깅하기](tutorial/debugging-main-process.md) * [메인 프로세스 디버깅하기](tutorial/debugging-main-process.md)

View file

@ -39,6 +39,7 @@ Linux와 Windows에서는 `Command`키가 없으므로 작동하지 않습니다
* `~`, `!`, `@`, `#`, `$`, etc 와 같은 구두점 기호들 * `~`, `!`, `@`, `#`, `$`, etc 와 같은 구두점 기호들
* `Plus` * `Plus`
* `Space` * `Space`
* `Tab`
* `Backspace` * `Backspace`
* `Delete` * `Delete`
* `Insert` * `Insert`

View file

@ -27,6 +27,8 @@ const {dialog} = require('electron').remote;
* `options` Object * `options` Object
* `title` String * `title` String
* `defaultPath` String * `defaultPath` String
* `buttonLabel` String - 확인 버튼을 위한 커스텀 라벨이며, 빈칸으로 둘 경우 기본
라벨이 사용됩니다.
* `filters` Array * `filters` Array
* `properties` Array - 대화 상자가 사용할 기능(모드)이 담긴 배열입니다. * `properties` Array - 대화 상자가 사용할 기능(모드)이 담긴 배열입니다.
다음을 포함할 수 있습니다: `openFile`, `openDirectory`, `multiSelections`, 다음을 포함할 수 있습니다: `openFile`, `openDirectory`, `multiSelections`,
@ -71,6 +73,8 @@ const {dialog} = require('electron').remote;
* `options` Object * `options` Object
* `title` String * `title` String
* `defaultPath` String * `defaultPath` String
* `buttonLabel` String - 확인 버튼을 위한 커스텀 라벨이며, 빈칸으로 둘 경우 기본
라벨이 사용됩니다.
* `filters` Array * `filters` Array
* `callback` Function (optional) * `callback` Function (optional)
@ -90,7 +94,8 @@ const {dialog} = require('electron').remote;
* `type` String - `"none"`, `"info"`, `"error"`, `"question"`, `"warning"` * `type` String - `"none"`, `"info"`, `"error"`, `"question"`, `"warning"`
하나를 사용할 수 있습니다. Windows에선 따로 `icon`을 설정하지 않은 이상 하나를 사용할 수 있습니다. Windows에선 따로 `icon`을 설정하지 않은 이상
"question"과 "info"는 같은 아이콘으로 표시됩니다. "question"과 "info"는 같은 아이콘으로 표시됩니다.
* `buttons` Array - 버튼들의 라벨을 포함한 배열입니다. * `buttons` Array - 버튼들의 라벨을 포함한 배열입니다. Windows에서 빈 배열로 둘
경우, "OK" 버튼 하나가 포함됩니다.
* `defaultId` Integer - 메시지 박스가 열렸을 때 기본적으로 선택될 버튼 배열의 * `defaultId` Integer - 메시지 박스가 열렸을 때 기본적으로 선택될 버튼 배열의
버튼 인덱스입니다. 버튼 인덱스입니다.
* `title` String - 대화 상자의 제목입니다. 몇몇 플랫폼에선 보이지 않을 수 있습니다. * `title` String - 대화 상자의 제목입니다. 몇몇 플랫폼에선 보이지 않을 수 있습니다.

View file

@ -9,7 +9,7 @@ Electron의 Chrome 버전은 보통 새로운 Chrome 안정 버전이 릴리즈
Electron은 크롬이 사용하는 안정된 채널만을 이용합니다, 만약 중요한 수정이 베타 또는 Electron은 크롬이 사용하는 안정된 채널만을 이용합니다, 만약 중요한 수정이 베타 또는
개발 채널에 패치된 경우, 이전 버전의 채널로 롤백합니다. 개발 채널에 패치된 경우, 이전 버전의 채널로 롤백합니다.
자세한 내용은 [보안 설명](../tutorial/electron-security.md)을 참고하세요. 자세한 내용은 [보안 설명](../tutorial/security.md)을 참고하세요.
## Electron은 언제 최신 버전의 Node.js로 업그레이드 하나요? ## Electron은 언제 최신 버전의 Node.js로 업그레이드 하나요?