Skip to content

Commit c4dd20d

Browse files
committed
no message
1 parent 2502524 commit c4dd20d

File tree

1 file changed

+25
-28
lines changed

1 file changed

+25
-28
lines changed

docs/content-ko/misc/contribute.ngdoc

+25-28
Original file line numberDiff line numberDiff line change
@@ -56,73 +56,70 @@ and export our API explicitly rather than implicitly.
5656
* 보다 축소화될 수 있는 간결한 코드를 작성하기 위해서는 내부적으로 저희는 외부적인 API로 연결되는 가명을 사용합니다. 어떤의미인지 이해하기 위해서 우리의
5757
현존하는 코드를 확인하십시오.
5858

59-
* AngularJS 전반적으로 사용되는 내부 API가 아니고서는 개인적 API에 타입 주석에 얽매이지 않습니다. 가장 좋은 안내는 쉽게 이해하도록 하는 것입니다.
59+
* AngularJS 전반적으로 사용되는 내부 API가 아니라면 개인적인 API에 타입주석을 적는데 목매이지 않습니다. 가장 좋은 안내는 쉽게 이해하도록 하는 것입니다.
6060

6161

6262
<a name="H1_4"></a>
63-
# Checking Out and Building Angular
63+
# 체크아웃과 Angular빌드하기
6464

65-
The AngularJS source code is hosted at {@link http://github.com Github}, which we also use to
66-
accept code contributions. The AngularJS repository can be found at **<https://github.com/angular/angular.js>**.
65+
AngularJS 소스코드는 {@link http://github.com Github}에 호스팅 되어있고, 우리는 또한 코드기여를 허용하는데도 사용하고 있습니다.
66+
AngularJS 레파지토리는 **<https://github.com/angular/angular.js>**에서 찾으실 수 있습니다.
6767

68-
Several steps are needed to check out and build AngularJS:
68+
AngularJS 체크아웃과 빌드를 위해서는 몇가지 절차가 필요합니다:
6969

70+
## Dependency 설치
7071

71-
## Installation Dependencies
72+
AngularJS를 빌드하기 전에, 반듯이 당신의 컴퓨터에 다음과 같은 Dependency를 설정하고 설치해야만 합니다.
7273

73-
Before you can build AngularJS, you must install or configure the following dependencies on your
74-
machine:
74+
* Git: {@link http://help.github.com/mac-git-installation Github Guide to Installing Git}는 Git정보에 대한 정말 좋은 소스입니다.
7575

76-
* Git: The {@link http://help.github.com/mac-git-installation Github Guide to Installing Git} is
77-
quite a good source for information on Git.
76+
* {@link http://nodejs.org Node.js}: 우리는 서면화작업을 위해서, 웹서버 개발을 동작시키고, 테스트를 실행하고, 빌드 위해서 Node를 사용합니다.
77+
Node는 소스에서도 설치가 가능하고, 이미 준비된 번들로 설치도 가능합니다.
7878

79-
* {@link http://nodejs.org Node.js}: We use Node to generate the documentation, run a
80-
development web server, run tests, and generate a build. Depending on your system, you can install Node either from source or as a
81-
pre-packaged bundle.
82-
83-
Once installed, you'll also need several npms (node packages), which you can install once you checked out a local copy
84-
of the Angular repository (see below) with:
79+
한번 설치를 하면, Angular레퍼지토리의 로컬 복사로 체크아웃을 하면 설치가 가능한 몇가지 npms(노드 패키지)가 필요할 것입니다. 다음을 통해서 체크아웃이
80+
가능합니다:
8581

8682
* `cd angular.js`
8783
* `npm install`
8884

89-
* {@link http://gruntjs.com Grunt}: We use Grunt as our build system. Install the grunt command-line tool globally with:
85+
* {@link http://gruntjs.com Grunt}: 빌드 시스템으로 우리는 Grunt를 사용합니다. 다음으로 글로벌한 grunt 커멘드라인 툴을 설치하세요:
9086

9187
* `sudo npm install -g grunt-cli`
9288

9389

94-
## Creating a Github Account and Forking Angular
90+
## Github 계정 만들고, Angular 포크하기
9591

96-
To create a Github account, follow the instructions {@link https://github.com/signup/free here}.
97-
Afterwards, go ahead and {@link http://help.github.com/forking fork} the {@link
98-
https://github.com/angular/angular.js main angular repository}.
92+
Github 계정을 만들기 위해서 다음 {@link https://github.com/signup/free here}을 따라하세요.
93+
순서대로, {@link http://help.github.com/forking fork} {@link https://github.com/angular/angular.js main angular
94+
repository}를 계속 진행하십시오.
9995

10096

97+
## AngularJS 빌드하기
10198
## Building AngularJS
10299

103-
To build AngularJS, you check out the source code and use Grunt to generate the non-minified and
104-
minified AngularJS files:
100+
AngularJS를 빌드하기 위해서, 소스코드를 체크아웃하고, 축소판과 미축소판 AngularJS 파일을 만들기 위해서 Grunt를 사용하십시오.
105101

106-
1. To clone your Github repository, run:
102+
1. 당신의 Github를 복제하기 위해서 다음을 실행하세요:
107103

108104
git clone [email protected]:<github username>/angular.js.git
109105

110-
2. To go to the AngularJS directory, run:
106+
2. AngularJS 디렉토리로 이동하기 위해서 다음을 실행하세요:
111107

112108
cd angular.js
113109

114-
3. To add the main AngularJS repository as an upstream remote to your repository, run:
110+
3. 메인 AngularJS 레포지토리를 당신의 레포지토리로의 원격 업스트립으로 추가하려면 다음을 실행하세요:
115111

116112
git remote add upstream https://github.com/angular/angular.js.git
117113

118-
4. To add node.js dependencies
114+
4. node.js dependency를 추가하기 위해서
119115

120116
npm install
121117

122-
5. To build AngularJS, run:
118+
5. AngularJS 빌드하기 위해서 다음을 실행하세요:
123119

124120
grunt package
125121

122+
주의:
126123
NOTE: If you're using Windows you must run your command line with administrative privileges (right click, run as
127124
Administrator).
128125

0 commit comments

Comments
 (0)