Skip to content

Update docs in Korean (2.6.0+) #1625

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 22 commits into from
Jul 25, 2017
Merged

Update docs in Korean (2.6.0+) #1625

merged 22 commits into from
Jul 25, 2017

Conversation

ChangJoo-Park
Copy link
Contributor

Update all docs in Korean :)

Copy link
Member

@kazupon kazupon left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for your PR!
Could you review to someone please?

@ChangJoo-Park
Copy link
Contributor Author

ChangJoo-Park commented Jul 22, 2017

I do not have reviewer in Korean officially. I will be looking for a Korean review as soon as possible.
😢

@ChangJoo-Park
Copy link
Contributor Author

@kazupon Please add @kciter to reviewer. He is co-organizer of Vue.js Korean user group.

@posva posva requested a review from LinusBorg July 24, 2017 10:58
@posva
Copy link
Member

posva commented Jul 24, 2017

I cannot request a review from him in the github menu 😞
He should be able to de the review anyway

@kciter
Copy link

kciter commented Jul 24, 2017

@posva Okay, I will reivew without reviewer. :)

@posva
Copy link
Member

posva commented Jul 24, 2017

@LinusBorg Sorry for the review request xD
@kciter But until now, anybody could review any pr, have that changed 😢 ?

@posva posva removed the request for review from LinusBorg July 24, 2017 12:27
@LinusBorg
Copy link
Member

LinusBorg commented Jul 24, 2017

@posva I think you are mistaken. You could assign any contributor as a reviewer, not just and "random" github user. kciter isn't a contributor yet.

I thinkk I actually saw requests on twitter to @github to allow multiple times. ..

@posva
Copy link
Member

posva commented Jul 24, 2017

@LinusBorg aaah, I didn't know it worked like that. Thanks for the info!

Copy link

@kciter kciter left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

몇 가지 수정하면 좋을 것 같은 곳에 코멘트를 남겼습니다. :)

다음 뷰에 대한 리소스를 가져 오는 동안 사용자는 현재 뷰를 유지합니다. 따라서 데이터를 가져 오는 동안 진행률 표시줄이나 일종의 표시기를 표시하는 것을 추천합니다. 데이터 가져 오기가 실패하면 일종의 전역 경고 메시지를 표시해야합니다.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

가져 오는 -> 가져오는
가져 오기 -> 가져오기
이 부분의 맞춤법만 수정하면 될 것 같습니다 :)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

감사합니다 👍

const Baz = r => require.ensure([], () => r(require('./Baz.vue')), 'group-foo')
const Foo = () => import(/* webpackChunkName: "group-foo" */ './Foo.vue')
const Bar = () => import(/* webpackChunkName: "group-foo" */ './Bar.vue')
const Baz = () => import(/* webpackChunkName: "group-foo" */ './Baz.vue')
```

Webpack은 동일한 묶음 이름을 가진 비동기 모듈을 같은 비동기 묶음으로 그룹화합니다. 이것은 또한`require.ensure`에 대한 종속성을 더 이상 명시 적으로 나열할 필요가 없음을 의미합니다(따라서 빈 배열을 전달합니다).
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이 부분의 내용이 최신 버전에서는
webpack will group any async module with the same chunk name into the same async chunk.
으로 수정되었습니다.
Webpack은 동일한 이름의 묶음을 가진 비동기 모듈을 동일한 비동기 묶음으로 그룹화합니다.
으로 번역하면 될 것 같습니다.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

감사합니다 👍

> 2.6.0+

- type: `boolean`
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이곳에만 자료형이라고 안적혔습니다.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Translate type to 자료형

브라우저가 `history.pushState`를 지원하지 않을 때 라우터가 `hash`모드로 변경되어야할지 설정합니다. 기본값은 `true`입니다.

이를 `false`로 설정하면 IE9에서 모든 라우터 링크를 탐색 할 수 있습니다. 이것은 해시모드 URL이 SSR에서 작동하지 않기 때문에 앱이 서버에서 렌더링되어 IE9에서 작동해야하는 경우에 유용합니다.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

라우터 링크 -> router-link가 좋을 것 같습니다. :)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

변경했습니다 👍

@@ -54,7 +54,7 @@ export default {
fetchData () {
this.error = this.post = null
this.loading = true
// getPost를 데이터 가져 오기 위한 유틸리티/API 래퍼로 변경합니다.
// `getPost`를 데이터 가져 오기 위한 유틸리티/API 래퍼로 변경합니다.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

마찬가지로
가져 오기 -> 가져오기
맞춤법 수정이 필요합니다.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

감사합니다 👍

@@ -109,4 +109,4 @@ export default {
}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

98라인에도 57라인과 통일해서 백틱을 넣으면 좋겠습니다.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

추가했습니다 👍

8. 전역 `beforeResolve` 가드 호출 (2.5이상)
1. 네비게이션이 트리거됨.
2. 비활성화될 컴포넌트에서 가드를 호출.
3. 전역 `beforeEach` 가드 호출.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(넘나 미미한데 눈이 띄어서......)
'전역' 다음에 공백이 2칸입니다.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

놓친 부분인데 감사합니다

- type: `boolean`

브라우저가 `history.pushState`를 지원하지 않을 때 라우터가 `hash`모드로 변경되어야할지 설정합니다. 기본값은 `true`입니다.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

변경되어야할지 -> 변경되어야 할지

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

감사합니다 👍

@@ -99,7 +99,7 @@
이것의 결과는 `<router-link to="/">`가 모든 라우터에 대해 활성화 될 것입니다! 링크를 "완전 일치 모드"로 강제하려면 `exact` prop를 사용하십시오.

``` html
<!-- 이 링크는 / 에서만 active 됩니다 -->
<!-- 이 링크는 `/` 에서만 active 됩니다 -->
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

active -> 활성화

@@ -14,7 +14,7 @@ const router = new VueRouter({
})
```

명명 된 라우트에 링크하려면, 객체를 `router-link`, 컴포넌트의 `to` prop로 전달할 수 있습니다.
이름을 가진 된 라우트에 링크하려면, 객체를 `router-link`, 컴포넌트의 `to` prop로 전달할 수 있습니다.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이름을 가진 된 -> 이름을 가진

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

감사합니다 👍

@@ -14,7 +14,7 @@ const router = new VueRouter({
})
```

명명 된 라우트에 링크하려면, 객체를 `router-link`, 컴포넌트의 `to` prop로 전달할 수 있습니다.
이름을 가진 된 라우트에 링크하려면, 객체를 `router-link`, 컴포넌트의 `to` prop로 전달할 수 있습니다.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

prop로 -> prop으로
(props 가 아니기 때문에.. "으로"가 더 잘 읽히네요)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

네 저도 다시 읽어보니 맞는 것 같아 말씀해주신대로 변경했습니다

이 두 가지를 결합하여 Webpack에 의해 자동으로 코드 분할될 비동기 컴포넌트를 정의하는 방법입니다.

``` js
const Foo = () => import('./Foo.vue')
```

라우트 설정에서 아무것도 바꿀 필요가 없습니다. 보통 `Foo`만 사용하십시오.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

보통 Foo만 사용하십시오.
→ 보통 Foo만 사용하면 됩니다. (?)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

보통을 빼고 Foo만 사용하면 됩니다. 로 변경했습니다.

@ChangJoo-Park
Copy link
Contributor Author

ChangJoo-Park commented Jul 25, 2017

@kciter @yu1222 말씀해주신 내용에 맞춰 수정했습니다. 정말 감사합니다.

@kazupon Now, I've got awesome reviewers! 😄
Please check commits and reviews.

@posva
Copy link
Member

posva commented Jul 25, 2017

@ChangJoo-Park ping me when it's ready 🙂
Thanks a lot 👍

@kazupon
Copy link
Member

kazupon commented Jul 25, 2017

@ChangJoo-Park Thanks! Also for reviewers!

@kazupon kazupon merged commit 7f33d1e into vuejs:dev Jul 25, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants