From ee9e28dfdfb71a5318f44596486b1a256f1351d7 Mon Sep 17 00:00:00 2001 From: Plusb Preco Date: Tue, 17 May 2016 21:18:31 +0900 Subject: [PATCH] :memo: Update Korean docs as upstream [ci skip] --- docs-translations/ko-KR/README.md | 1 + docs-translations/ko-KR/api/accelerator.md | 1 + docs-translations/ko-KR/api/dialog.md | 7 ++++++- docs-translations/ko-KR/faq/electron-faq.md | 2 +- 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/docs-translations/ko-KR/README.md b/docs-translations/ko-KR/README.md index 629c3ec8c210..ecb79c0b1fa5 100644 --- a/docs-translations/ko-KR/README.md +++ b/docs-translations/ko-KR/README.md @@ -23,6 +23,7 @@ Electron에 대해 자주 묻는 질문이 있습니다. 이슈를 생성하기 * [보안](tutorial/security.md) * [어플리케이션 배포](tutorial/application-distribution.md) * [Mac 앱스토어 어플리케이션 제출 가이드](tutorial/mac-app-store-submission-guide.md) +* [Windows 스토어 가이드](tutorial/windows-store-guide.md) * [어플리케이션 패키징](tutorial/application-packaging.md) * [네이티브 Node 모듈 사용하기](tutorial/using-native-node-modules.md) * [메인 프로세스 디버깅하기](tutorial/debugging-main-process.md) diff --git a/docs-translations/ko-KR/api/accelerator.md b/docs-translations/ko-KR/api/accelerator.md index 58d4b41d972a..05532d06c08e 100644 --- a/docs-translations/ko-KR/api/accelerator.md +++ b/docs-translations/ko-KR/api/accelerator.md @@ -39,6 +39,7 @@ Linux와 Windows에서는 `Command`키가 없으므로 작동하지 않습니다 * `~`, `!`, `@`, `#`, `$`, etc 와 같은 구두점 기호들 * `Plus` * `Space` +* `Tab` * `Backspace` * `Delete` * `Insert` diff --git a/docs-translations/ko-KR/api/dialog.md b/docs-translations/ko-KR/api/dialog.md index 30132383b5b8..949a26835db9 100644 --- a/docs-translations/ko-KR/api/dialog.md +++ b/docs-translations/ko-KR/api/dialog.md @@ -27,6 +27,8 @@ const {dialog} = require('electron').remote; * `options` Object * `title` String * `defaultPath` String + * `buttonLabel` String - 확인 버튼을 위한 커스텀 라벨이며, 빈칸으로 둘 경우 기본 + 라벨이 사용됩니다. * `filters` Array * `properties` Array - 대화 상자가 사용할 기능(모드)이 담긴 배열입니다. 다음을 포함할 수 있습니다: `openFile`, `openDirectory`, `multiSelections`, @@ -71,6 +73,8 @@ const {dialog} = require('electron').remote; * `options` Object * `title` String * `defaultPath` String + * `buttonLabel` String - 확인 버튼을 위한 커스텀 라벨이며, 빈칸으로 둘 경우 기본 + 라벨이 사용됩니다. * `filters` Array * `callback` Function (optional) @@ -90,7 +94,8 @@ const {dialog} = require('electron').remote; * `type` String - `"none"`, `"info"`, `"error"`, `"question"`, `"warning"` 중 하나를 사용할 수 있습니다. Windows에선 따로 `icon`을 설정하지 않은 이상 "question"과 "info"는 같은 아이콘으로 표시됩니다. - * `buttons` Array - 버튼들의 라벨을 포함한 배열입니다. + * `buttons` Array - 버튼들의 라벨을 포함한 배열입니다. Windows에서 빈 배열로 둘 + 경우, "OK" 버튼 하나가 포함됩니다. * `defaultId` Integer - 메시지 박스가 열렸을 때 기본적으로 선택될 버튼 배열의 버튼 인덱스입니다. * `title` String - 대화 상자의 제목입니다. 몇몇 플랫폼에선 보이지 않을 수 있습니다. diff --git a/docs-translations/ko-KR/faq/electron-faq.md b/docs-translations/ko-KR/faq/electron-faq.md index 38235e2d8980..c186d148c2a0 100644 --- a/docs-translations/ko-KR/faq/electron-faq.md +++ b/docs-translations/ko-KR/faq/electron-faq.md @@ -9,7 +9,7 @@ Electron의 Chrome 버전은 보통 새로운 Chrome 안정 버전이 릴리즈 Electron은 크롬이 사용하는 안정된 채널만을 이용합니다, 만약 중요한 수정이 베타 또는 개발 채널에 패치된 경우, 이전 버전의 채널로 롤백합니다. -자세한 내용은 [보안 설명](../tutorial/electron-security.md)을 참고하세요. +자세한 내용은 [보안 설명](../tutorial/security.md)을 참고하세요. ## Electron은 언제 최신 버전의 Node.js로 업그레이드 하나요?