diff --git a/src/content/reference/dev-tools/react-performance-tracks.md b/src/content/reference/dev-tools/react-performance-tracks.md
index dc2912da2..e31f35663 100644
--- a/src/content/reference/dev-tools/react-performance-tracks.md
+++ b/src/content/reference/dev-tools/react-performance-tracks.md
@@ -1,14 +1,14 @@
---
-title: React Performance tracks
+title: React パフォーマンストラック
---
@@ -19,86 +19,86 @@ These tracks are designed to provide developers with comprehensive insights into
---
-## Usage {/*usage*/}
+## 使用法 {/*usage*/}
-React Performance tracks are only available in development and profiling builds of React:
+React パフォーマンストラックは、開発用ビルドおよびプロファイリングビルドの React でのみ使用できます。
-- **Development**: enabled by default.
-- **Profiling**: Only Scheduler tracks are enabled by default. The Components track only lists Components that are in subtrees wrapped with [`
@@ -107,22 +107,22 @@ Similar to render durations, effect durations are also represented as a flamegra
@@ -138,22 +138,22 @@ In development builds, when you click on a component render entry, you can inspe
#### Server Requests {/*server-requests*/}
-The Server Requests track visualized all Promises that eventually end up in a React Server Component. This includes any `async` operations like calling `fetch` or async Node.js file operations.
+サーバリクエストトラックは、最終的に React Server Component 内で使われるすべての Promise を可視化します。これには、`fetch` の呼び出しや非同期 Node.js ファイル操作などの `async` 操作が含まれます。
-React will try to combine Promises that are started from inside third-party code into a single span representing the the duration of the entire operation blocking 1st party code.
-For example, a third party library method called `getUser` that calls `fetch` internally multiple times will be represented as a single span called `getUser`, instead of showing multiple `fetch` spans.
+React は、サードパーティのコードから開始された Promise を、ファーストパーティコードをブロックする操作全体の継続時間を表す単一のスパンに結合しようとします。
+例えば、内部的に複数回 `fetch` を呼び出す `getUser` というサードパーティライブラリのメソッドは、複数の `fetch` スパンを表示するのではなく、`getUser` という単一のスパンとして表されます。
-Clicking on spans will show you a stack trace of where the Promise was created as well as a view of the value that the Promise resolved to, if available.
+スパンをクリックすると、Promise が作成された場所のスタックトレースと、利用可能な場合は Promise が解決した値のビューが表示されます。
-Rejected Promises are displayed as red with their rejected value.
+拒否された Promise は、拒否された値とともに赤色で表示されます。
#### Server Components {/*server-components*/}
-The Server Components tracks visualize the durations of React Server Components Promises they awaited. Timings are displayed as a flamegraph, where each entry represents the duration of the corresponding component render and all its descendant children components.
+サーバコンポーネントトラックは、React Server Components と、それらが待機した Promise の所要時間を可視化します。タイミングはフレームグラフとして表示され、各エントリは対応するコンポーネントのレンダーとすべての子孫コンポーネントの所要時間を表します。
-If you await a Promise, React will display duration of that Promise. To see all I/O operations, use the Server Requests track.
+Promise を待機する場合、React はその Promise の継続時間を表示します。すべての I/O 操作を確認するには、サーバリクエストトラックを使用してください。
-Different colors are used to indicate the duration of the component render. The darker the color, the longer the duration.
+コンポーネントのレンダーの継続時間を示すために異なる色が使用されます。色が濃いほど、継続時間が長いことを示します。
-The Server Components track group will always contain a "Primary" track. If React is able to render Server Components concurrently, it will display addititional "Parallel" tracks.
-If more than 8 Server Components are rendered concurrently, React will associate them with the last "Parallel" track instead of adding more tracks.
+サーバコンポーネントトラックグループには、常に"Primary"トラックが含まれます。React がサーバコンポーネントを並行してレンダーできる場合、追加の"Parallel"トラックが表示されます。
+8 つ以上のサーバコンポーネントが並行してレンダーされる場合、React はさらにトラックを追加するのではなく、最後の"Parallel"トラックに関連付けます。
diff --git a/src/sidebarReference.json b/src/sidebarReference.json
index c14215b05..33c688956 100644
--- a/src/sidebarReference.json
+++ b/src/sidebarReference.json
@@ -401,7 +401,7 @@
"sectionHeader": "React DevTools"
},
{
- "title": "React Performance tracks",
+ "title": "React パフォーマンストラック",
"path": "/reference/dev-tools/react-performance-tracks"
},
{