Skip to content

Commit 5459579

Browse files
Translate: <progress> (#607)
* Translate: <progress> * Fix: 피드백 수정
1 parent d38a07d commit 5459579

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

src/content/reference/react-dom/components/progress.md

+14-13
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ title: "<progress>"
44

55
<Intro>
66

7-
The [built-in browser `<progress>` component](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress) lets you render a progress indicator.
8-
7+
[브라우저 내장 컴포넌트 `<progress>`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress)를 사용하면 진행률 표시기를 렌더링할 수 있습니다.
8+
99
```js
1010
<progress value={0.5} />
1111
```
@@ -16,36 +16,37 @@ The [built-in browser `<progress>` component](https://developer.mozilla.org/en-U
1616

1717
---
1818

19-
## Reference {/*reference*/}
19+
## 레퍼런스 {/*reference*/}
2020

2121
### `<progress>` {/*progress*/}
2222

23-
To display a progress indicator, render the [built-in browser `<progress>`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress) component.
23+
진행률 표시기를 표시하려면 [브라우저 내장 컴포넌트 `<progress>`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress)를 렌더링합니다.
2424

2525
```js
2626
<progress value={0.5} />
2727
```
2828

29-
[See more examples below.](#usage)
29+
[아래에서 더 많은 예시를 확인하세요.](#usage)
3030

3131
#### Props {/*props*/}
3232

33-
`<progress>` supports all [common element props.](/reference/react-dom/components/common#props)
33+
`<progress>`는 모든 [일반적인 엘리먼트 props](/reference/react-dom/components/common#props)를 지원합니다.
34+
35+
또한 `<progress>`는 이러한 props를 지원합니다.
3436

35-
Additionally, `<progress>` supports these props:
37+
* [`max`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress#attr-max): 숫자. 최대 `value`를 지정합니다. 기본값은 `1`입니다.
3638

37-
* [`max`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress#attr-max): A number. Specifies the maximum `value`. Defaults to `1`.
38-
* [`value`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress#attr-value): A number between `0` and `max`, or `null` for intermedinate progress. Specifies how much was done.
39+
* [`value`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress#attr-value): `0`에서 `최대` 사이의 숫자 또는 결정되지 않은 상태인 경우 `null`입니다.
3940

4041
---
4142

42-
## Usage {/*usage*/}
43+
## 사용법 {/*usage*/}
4344

44-
### Controlling a progress indicator {/*controlling-a-progress-indicator*/}
45+
### 진행률 표시기 제어 {/*controlling-a-progress-indicator*/}
4546

46-
To display a progress indicator, render a `<progress>` component. You can pass a number `value` between `0` and the `max` value you specify. If you don't pass a `max` value, it will assumed to be `1` by default.
47+
진행률 표시기를 표시하려면 `<progress>` 컴포넌트를 렌더링합니다. `0`에서 지정한 `최대` 값 사이의 숫자 `value`를 전달할 수 있습니다. `최대`값을 전달하지 않으면 기본적으로 `1`로 간주됩니다.
4748

48-
If the operation is not ongoing, pass `value={null}` to put the progress indicator into an indeterminate state.
49+
작업이 진행 중이 아닌 경우, 진행률 표시기를 불확정 상태로 설정하려면 `value={null}`을 전달합니다.
4950

5051
<Sandpack>
5152

0 commit comments

Comments
 (0)