Skip to content

Commit

Permalink
Update as upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
preco21 committed Dec 2, 2015
1 parent cc84124 commit 75c28ff
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 7 deletions.
7 changes: 7 additions & 0 deletions docs-translations/ko-KR/api/process.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ process.once('loaded', function() {
});
```

## Properties

### `process.noAsar`

이 속성을 `true`로 지정하면 Node 빌트인 모듈의 `asar` 아카이브 지원을 비활성화 시킬
수 있습니다.

## Methods

`process` 객체는 다음과 같은 메서드를 가지고 있습니다:
Expand Down
8 changes: 6 additions & 2 deletions docs-translations/ko-KR/api/tray.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,12 +184,16 @@ __주의:__ `bounds`는 OS X 와 Windows에서만 작동합니다.

트레이에 풍선 팝업을 생성합니다.

### `Tray.popContextMenu([position])` _OS X_ _Windows_
### `Tray.popUpContextMenu([menu, position])` _OS X_ _Windows_

* `position` Object (optional) - 팝업 메뉴 위치
* `menu` Menu (optional)
* `position` Object (optional) - 팝업 메뉴의 위치
* `x` Integer
* `y` Integer

트레이 아이콘의 컨텍스트 메뉴를 팝업시킵니다. `menu`가 전달되면, `menu`가 트레이
메뉴의 컨텍스트 메뉴 대신 표시됩니다.

`position`은 Windows에서만 사용할 수 있으며 기본값은 (0, 0)입니다.

### `Tray.setContextMenu(menu)`
Expand Down
4 changes: 2 additions & 2 deletions docs-translations/ko-KR/api/web-view-tag.md
Original file line number Diff line number Diff line change
Expand Up @@ -441,15 +441,15 @@ Returns:

프레임 문서의 로드가 끝나면 발생하는 이벤트입니다.

### Event: 'page-title-set'
### Event: 'page-title-updated'

Returns:

* `title` String
* `explicitSet` Boolean

탐색하는 동안에 페이지의 제목이 설정되면 발생하는 이벤트입니다. `explicitSet`는 파일
URL에서 종합(synthesised)된 제목인 경우 false로 표시됩니다.
URL에서 합성(synthesised)된 제목인 경우 false로 표시됩니다.

### Event: 'page-favicon-updated'

Expand Down
8 changes: 8 additions & 0 deletions docs-translations/ko-KR/tutorial/application-packaging.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,14 @@ var originalFs = require('original-fs');
originalFs.readFileSync('/path/to/example.asar');
```

또한 `process.noAsar``true`로 지정하면 `fs` 모듈의 `asar` 지원을 비활성화 시킬 수
있습니다.

```javascript
process.noAsar = true;
fs.readFileSync('/path/to/example.asar');
```

## Node API의 한계

`asar` 아카이브를 Node API가 최대한 디렉터리 구조로 작동하도록 노력해왔지만 여전히
Expand Down
6 changes: 3 additions & 3 deletions docs-translations/ko-KR/tutorial/debugging-main-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@

## node-inspector로 디버깅 하기

__참고:__ Electron은 node v0.11.13 버전을 사용합니다. 그리고 현재 node-inspector
유틸리티와 호환성 문제가 있습니다. 추가로 node-inspector 콘솔 내에서 메인 프로세스의
`process` 객체를 탐색할 경우 크래시가 발생할 수 있습니다.
__참고:__ Electron은 현재 node-inspector 유틸리티와 호환성 문제가 있습니다. 따라서
node-inspector 콘솔 내에서 메인 프로세스의 `process` 객체를 탐색할 경우 크래시가
발생할 수 있습니다.

### 1. [node-inspector][node-inspector] 서버 시작

Expand Down

0 comments on commit 75c28ff

Please sign in to comment.