📝 Update Korean docs as upstream
[ci skip]
This commit is contained in:
parent
d4a8a64ba7
commit
9857aa25a3
3 changed files with 7 additions and 8 deletions
|
@ -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'
|
||||
|
|
|
@ -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비트는
|
||||
지원할 계획이 없습니다.
|
||||
|
||||
## 정리하기
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue