Skip to content

Commit 2e70fa5

Browse files
Translate "<progress>" component (#640)
* Translate "<progress>" component * fix translation for indeterminate case --------- Co-authored-by: Soichiro Miki <[email protected]>
1 parent ea6fb5c commit 2e70fa5

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

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

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ 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.
7+
[ブラウザ組み込みの `<progress>` コンポーネント](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress)を利用することで、進行状況のインジケータをレンダーすることができます。
88

99
```js
1010
<progress value={0.5} />
@@ -16,36 +16,36 @@ 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

31-
#### Props {/*props*/}
31+
#### 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) をすべてサポートしています。
3434

35-
Additionally, `<progress>` supports these props:
35+
さらに、`<progress>` は以下の props もサポートしています:
3636

37-
* [`max`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress#max): A number. Specifies the maximum `value`. Defaults to `1`.
38-
* [`value`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress#value): A number between `0` and `max`, or `null` for indeterminate progress. Specifies how much was done.
37+
* [`max`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress#max): 数値。`value` の最大値を指定します。デフォルトは `1` です。
38+
* [`value`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress#value)`0` から `max` までの数値、または進行状況が不定 (indeterminate) であることを表す `null`。完了した量を指定します。
3939

4040
---
4141

42-
## Usage {/*usage*/}
42+
## 使用法 {/*usage*/}
4343

44-
### Controlling a progress indicator {/*controlling-a-progress-indicator*/}
44+
### 進行状況のインジケータの制御 {/*controlling-a-progress-indicator*/}
4545

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.
46+
進行状況のインジケータを表示するためには、`<progress>` コンポーネントをレンダーします。`0` から `max` 値までの数値を `value` として渡すことができます。`max` 値を渡さない場合、デフォルトで `1` とみなされます。
4747

48-
If the operation is not ongoing, pass `value={null}` to put the progress indicator into an indeterminate state.
48+
進行状況のインジケータを不定状態にするには `value={null}` を渡します。
4949

5050
<Sandpack>
5151

0 commit comments

Comments
 (0)