From 9857aa25a35f18516cbdde220f4cbcaf423e5f62 Mon Sep 17 00:00:00 2001 From: Plusb Preco Date: Wed, 12 Oct 2016 12:02:04 +0900 Subject: [PATCH] :memo: Update Korean docs as upstream [ci skip] --- docs-translations/ko-KR/api/menu.md | 5 ++--- .../ko-KR/development/build-instructions-osx.md | 8 ++++---- .../ko-KR/tutorial/mac-app-store-submission-guide.md | 2 +- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/docs-translations/ko-KR/api/menu.md b/docs-translations/ko-KR/api/menu.md index e066ca2203..152cb6da71 100644 --- a/docs-translations/ko-KR/api/menu.md +++ b/docs-translations/ko-KR/api/menu.md @@ -14,7 +14,7 @@ 다음은 템플릿 API를 사용하여 메인 프로세스에서 어플리케이션 메뉴를 생성하는 예시입니다: ```javascript -const {Menu} = require('electron') +const {app, Menu} = require('electron') const template = [ { @@ -109,9 +109,8 @@ const template = [ ] if (process.platform === 'darwin') { - const name = require('electron').remote.app.getName() template.unshift({ - label: name, + label: app.getName(), submenu: [ { role: 'about' diff --git a/docs-translations/ko-KR/development/build-instructions-osx.md b/docs-translations/ko-KR/development/build-instructions-osx.md index 00576d7d58..a6053a14d1 100644 --- a/docs-translations/ko-KR/development/build-instructions-osx.md +++ b/docs-translations/ko-KR/development/build-instructions-osx.md @@ -8,9 +8,9 @@ * [Xcode](https://developer.apple.com/technologies/tools/) >= 5.1 * [node.js](http://nodejs.org) (external) -만약 Homebrew를 이용해 파이선을 설치했다면 다음 Python 모듈도 같이 설치해야 합니다: +만약 Homebrew를 이용해 Python을 설치했다면 다음 Python 모듈도 같이 설치해야 합니다: -* pyobjc +* [pyobjc](https://pythonhosted.org/pyobjc/install.html) ## 코드 가져오기 @@ -47,8 +47,8 @@ $ ./script/build.py -c D ## 32비트 지원 -Electron은 현재 macOS 64비트만 지원하고 있습니다. 그리고 앞으로도 macOS 32비트는 지원할 -계획이 없습니다. +Electron은 현재 macOS 64비트만 지원하고 있습니다. 그리고 앞으로도 macOS 32비트는 +지원할 계획이 없습니다. ## 정리하기 diff --git a/docs-translations/ko-KR/tutorial/mac-app-store-submission-guide.md b/docs-translations/ko-KR/tutorial/mac-app-store-submission-guide.md index 1262561368..d2827373f1 100644 --- a/docs-translations/ko-KR/tutorial/mac-app-store-submission-guide.md +++ b/docs-translations/ko-KR/tutorial/mac-app-store-submission-guide.md @@ -32,7 +32,7 @@ Electron은 v0.34.0 버전부터 앱 패키지를 Mac App Store(MAS)에 제출 준비 작업이 끝난 후, [애플리케이션 배포](application-distribution.md) 문서에 따라 애플리케이션을 패키징한 후 애플리케이션에 서명합니다. -먼저, Team ID를 키로 가지고 있는 애플리케이션의 `Info.plist`에 `ElectronTeamID` 키를 +먼저, Team ID를 키로 가지고 있는 애플리케이션의 `Info.plist`에 `ElectronTeamID` 값을 추가해야 합니다: ```xml