-
-
Notifications
You must be signed in to change notification settings - Fork 5k
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
Conversation
There was a problem hiding this 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?
I do not have reviewer in Korean officially. I will be looking for a Korean review as soon as possible. |
I cannot request a review from him in the github menu 😞 |
@posva Okay, I will reivew without reviewer. :) |
@LinusBorg Sorry for the review request xD |
@LinusBorg aaah, I didn't know it worked like that. Thanks for the info! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
몇 가지 수정하면 좋을 것 같은 곳에 코멘트를 남겼습니다. :)
docs/kr/advanced/data-fetching.md
Outdated
다음 뷰에 대한 리소스를 가져 오는 동안 사용자는 현재 뷰를 유지합니다. 따라서 데이터를 가져 오는 동안 진행률 표시줄이나 일종의 표시기를 표시하는 것을 추천합니다. 데이터 가져 오기가 실패하면 일종의 전역 경고 메시지를 표시해야합니다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
가져 오는 -> 가져오는
가져 오기 -> 가져오기
이 부분의 맞춤법만 수정하면 될 것 같습니다 :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
감사합니다 👍
docs/kr/advanced/lazy-loading.md
Outdated
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`에 대한 종속성을 더 이상 명시 적으로 나열할 필요가 없음을 의미합니다(따라서 빈 배열을 전달합니다). |
There was a problem hiding this comment.
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은 동일한 이름의 묶음을 가진 비동기 모듈을 동일한 비동기 묶음으로 그룹화합니다.
으로 번역하면 될 것 같습니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
감사합니다 👍
docs/kr/api/options.md
Outdated
> 2.6.0+ | ||
|
||
- type: `boolean` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이곳에만 자료형
이라고 안적혔습니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Translate type
to 자료형
docs/kr/api/options.md
Outdated
브라우저가 `history.pushState`를 지원하지 않을 때 라우터가 `hash`모드로 변경되어야할지 설정합니다. 기본값은 `true`입니다. | ||
|
||
이를 `false`로 설정하면 IE9에서 모든 라우터 링크를 탐색 할 수 있습니다. 이것은 해시모드 URL이 SSR에서 작동하지 않기 때문에 앱이 서버에서 렌더링되어 IE9에서 작동해야하는 경우에 유용합니다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
라우터 링크 -> router-link
가 좋을 것 같습니다. :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
변경했습니다 👍
docs/kr/advanced/data-fetching.md
Outdated
@@ -54,7 +54,7 @@ export default { | |||
fetchData () { | |||
this.error = this.post = null | |||
this.loading = true | |||
// getPost를 데이터 가져 오기 위한 유틸리티/API 래퍼로 변경합니다. | |||
// `getPost`를 데이터 가져 오기 위한 유틸리티/API 래퍼로 변경합니다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
마찬가지로
가져 오기 -> 가져오기
맞춤법 수정이 필요합니다.
There was a problem hiding this comment.
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 { | |||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
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` 가드 호출. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(넘나 미미한데 눈이 띄어서......)
'전역' 다음에 공백이 2칸입니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
놓친 부분인데 감사합니다
docs/kr/api/options.md
Outdated
- type: `boolean` | ||
|
||
브라우저가 `history.pushState`를 지원하지 않을 때 라우터가 `hash`모드로 변경되어야할지 설정합니다. 기본값은 `true`입니다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
변경되어야할지
-> 변경되어야 할지
There was a problem hiding this comment.
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 됩니다 --> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
active -> 활성화
docs/kr/essentials/named-routes.md
Outdated
@@ -14,7 +14,7 @@ const router = new VueRouter({ | |||
}) | |||
``` | |||
|
|||
명명 된 라우트에 링크하려면, 객체를 `router-link`, 컴포넌트의 `to` prop로 전달할 수 있습니다. | |||
이름을 가진 된 라우트에 링크하려면, 객체를 `router-link`, 컴포넌트의 `to` prop로 전달할 수 있습니다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이름을 가진 된
-> 이름을 가진
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
감사합니다 👍
docs/kr/essentials/named-routes.md
Outdated
@@ -14,7 +14,7 @@ const router = new VueRouter({ | |||
}) | |||
``` | |||
|
|||
명명 된 라우트에 링크하려면, 객체를 `router-link`, 컴포넌트의 `to` prop로 전달할 수 있습니다. | |||
이름을 가진 된 라우트에 링크하려면, 객체를 `router-link`, 컴포넌트의 `to` prop로 전달할 수 있습니다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
prop로
-> prop으로
(props 가 아니기 때문에.. "으로"가 더 잘 읽히네요)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
네 저도 다시 읽어보니 맞는 것 같아 말씀해주신대로 변경했습니다
docs/kr/advanced/lazy-loading.md
Outdated
이 두 가지를 결합하여 Webpack에 의해 자동으로 코드 분할될 비동기 컴포넌트를 정의하는 방법입니다. | ||
|
||
``` js | ||
const Foo = () => import('./Foo.vue') | ||
``` | ||
|
||
라우트 설정에서 아무것도 바꿀 필요가 없습니다. 보통 `Foo`만 사용하십시오. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
보통 Foo
만 사용하십시오.
→ 보통 Foo
만 사용하면 됩니다. (?)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
보통을 빼고 Foo
만 사용하면 됩니다. 로 변경했습니다.
@ChangJoo-Park ping me when it's ready 🙂 |
@ChangJoo-Park Thanks! Also for reviewers! |
Update all docs in Korean :)