-
Notifications
You must be signed in to change notification settings - Fork 21
Translate tutorials/kubernetes-basics/expose in Korean #27
Conversation
kubernetes-basics-expose 한글화
1. content/ko/docs/home/expose-interactive.html 2. content/ko/docs/home/expose-intro.html
2. 불필요한 조사 (을/를) 제거 3. 불필요한 복수 -> 단수 표기 4. 불필요 2인칭 표현 생략
I have just reviewed the latest commit. Would you make this pull request having just one unique change and divide current pull request into multi pull requests and each pull request has corresponding atomic change => such reviewing procedure is definitely fine
=> The reviewer(s) need to review all things: (1), (2), and (3) |
@@ -21,7 +21,7 @@ | |||
<div class="katacoda"> | |||
|
|||
<div class="katacoda__alert"> | |||
To interact with the Terminal, please use the desktop/tablet version | |||
터미널과 상화작용하기 위해, 데스크탑/태블릿 버전을 이용한다. |
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.
Typo: "상화작용" -> "상호작용"
more application containers (such as Docker or rkt), and some shared resources for those containers. | ||
Those resources include:</p> | ||
<h2>쿠버네티스 파드</h2> | ||
<p>모듈 <a href="/docs/tutorials/kubernetes-basics/deploy-intro/">2</a>에서 배포를 생성했을 때, 쿠버네티스는 여러분의 애플리케이션 인스턴스에 <b>파드</b>를 생성했다. 파드는 하나 또는 그 이상의 애플리케이션 컨테이너 (도커 또는 rkt와 같은)들의 그룹을 나타내는 쿠버네티스의 추상적 개념으로 일부는 컨테이너에 대한 자원을 공유한다. 그 자원은 다음을 포함한다:</p> | ||
<ul> |
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.
The sentences are plain-style statements but "여러분" is used for polite expressions with polite-style statements. I would like to suggest to change "당신" or "대상".
Each Pod is tied to the Node where it is scheduled, and remains there until termination (according | ||
to restart policy) or deletion. In case of a Node failure, identical Pods are scheduled on other | ||
available Nodes in the cluster.</p> | ||
<p>파드는 특유한 "로컬호스트" 애플리케이션 모형을 만들어. 상대적으로 밀접하게 결합되어진 상이한 애플리케이션 컨테이너들을 수용할 수 있다. 가령, 파드는 Node.js 앱과 더불어 Node.js 웹서버에 의해 발행되는 데이터를 공급하는 상이한 컨테이너를 함께 수용할 수 있다. 파드 내 컨테이너는 IP 주소, 그리고 포트 스페이스를 공유하고 항상 함께 위치하고 함께 스케쥴링 되고 동일 노드 상의 컨텍스트를 공유하면서 동작한다.</p> |
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.
"로컬호스트" is not logical host. "논리 호스트" would be correct.
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.
How about changing "가령" to "예를 들어,"?
available Nodes in the cluster.</p> | ||
<p>파드는 특유한 "로컬호스트" 애플리케이션 모형을 만들어. 상대적으로 밀접하게 결합되어진 상이한 애플리케이션 컨테이너들을 수용할 수 있다. 가령, 파드는 Node.js 앱과 더불어 Node.js 웹서버에 의해 발행되는 데이터를 공급하는 상이한 컨테이너를 함께 수용할 수 있다. 파드 내 컨테이너는 IP 주소, 그리고 포트 스페이스를 공유하고 항상 함께 위치하고 함께 스케쥴링 되고 동일 노드 상의 컨텍스트를 공유하면서 동작한다.</p> | ||
|
||
<p>파드는 쿠버네티스 플랫폼 상에서 최소 단위가 된다. 우리가 쿠버네티스에서 배포를 생성할 때, 그 배포는 컨테이너 내부에서 컨테이너와 함께 파드를 생성한다. 각 파드는 스케쥴 되어진 노드에게 묶여지게 된다. 그리고 (재구동 정책에 따라) 소멸되거나 삭제되기 전까지 그 노드에 유지된다. 노드에 실패가 발생할 경우, 클러스터 내에 가용한 다른 노드들을 대상으로 스케쥴되어진다.</p> |
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.
I am a little bit worried about translating atomic
to "최소", since "최소" usually implies minimum
. Maybe "최소 (atomic)" would be better?
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.
@ianychoi 파드가 쿠버네티스에서 관리/처리되는 최소의 단위 즉, 더 조깰 수 없는 상태라는 의미인지라 "최소"라고 해석했는데, 더 좋은 표현이 있다면 제안 부탁드립니다~^
applications and their environments. The most common operations can be done with the following | ||
kubectl commands:</p> | ||
<h2>kubectl로 문제해결하기</h2> | ||
<p>모듈 <a href="/docs/tutorials/kubernetes-basics/deploy-intro/">2</a>에서, 여러분은 Kubectl 커맨드-라인 인터페이스를 사용하였다. 여러분은 배포된 애플리케이션과 그 환경에 대한 정보를 얻기 위해 모듈 3에서도 계속 그것을 사용하게 될 것이다. 가장 보편적인 운용업무는 다음 kubectl 명령어를 이용해 처리될 수 있다:</p> |
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.
If there would be no word replacing "여러분은", How about just deleting "여러분은", since deleting the word does not compromise the original meaning?
@ianychoi 리뷰 감사드립니다. 지적해주신 부분 수정완료 했습니다. 단, atomic에 대한 의견은 추가로 검토 부탁 드립니다~^ |
@gochist |
… 상호 등), 2인칭 생략" This reverts commit 45fc251.
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: If they are not already assigned, you can assign the PR to them by writing The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
#36 으로 계속 진행하겠습니다. |
@gochist: Closing this PR. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
explore 한글화작업에 대한 PR 요청 드립니다.
/assign @gochist