Skip to content

Commit 2739c95

Browse files
committed
translate translate react compiler page
1 parent f027613 commit 2739c95

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/content/learn/react-compiler.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -319,25 +319,25 @@ Expo uygulamalarında React Derleyicisini etkinleştirmek ve kullanmak için lü
319319

320320
### Metro (React Native) {/*usage-with-react-native-metro*/}
321321

322-
React Native uses Babel via Metro, so refer to the [Usage with Babel](#usage-with-babel) section for installation instructions.
322+
React Native, Babel'i Metro aracılığıyla kullanır, bu nedenle kurulum talimatları için [Babel ile kullanım](#usage-with-babel) bölümüne bakın.
323323

324324
### Rspack {/*usage-with-rspack*/}
325325

326-
Please refer to [Rspack's docs](https://rspack.dev/guide/tech/react#react-compiler) to enable and use the React Compiler in Rspack apps.
326+
Rspack uygulamalarında React Derleyicisini etkinleştirmek ve kullanmak için lütfen [Rspack's docs](https://rspack.dev/guide/tech/react#react-compiler) adresine bakın.
327327

328328
### Rsbuild {/*usage-with-rsbuild*/}
329329

330-
Please refer to [Rsbuild's docs](https://rsbuild.dev/guide/framework/react#react-compiler) to enable and use the React Compiler in Rsbuild apps.
330+
Rsbuild uygulamalarında React Derleyicisini etkinleştirmek ve kullanmak için lütfen [Rsbuild'in dokümanlarına](https://rsbuild.dev/guide/framework/react#react-compiler) bakın.
331331

332332
## Troubleshooting {/*troubleshooting*/}
333333

334-
To report issues, please first create a minimal repro on the [React Compiler Playground](https://playground.react.dev/) and include it in your bug report. You can open issues in the [facebook/react](https://github.com/facebook/react/issues) repo.
334+
Sorunları bildirmek için lütfen önce [React Compiler Playground](https://playground.react.dev/) üzerinde minimal bir repro oluşturun ve bunu hata raporunuza ekleyin. Sorunları [facebook/react](https://github.com/facebook/react/issues) reposunda açabilirsiniz.
335335

336-
You can also provide feedback in the React Compiler Working Group by applying to be a member. Please see [the README for more details on joining](https://github.com/reactwg/react-compiler).
336+
Ayrıca üye olmak için başvurarak React Derleyici Çalışma Grubu'nda geri bildirim sağlayabilirsiniz. Üyelik hakkında daha fazla bilgi için lütfen [README'ye](https://github.com/reactwg/react-compiler) bakın.
337337

338-
### What does the compiler assume? {/*what-does-the-compiler-assume*/}
338+
### Derleyici ne varsayıyor? {/*what-does-the-compiler-assume*/}
339339

340-
React Compiler assumes that your code:
340+
React Compiler kodunuzun olduğunu varsayar:
341341

342342
1. Is valid, semantic JavaScript.
343343
2. Tests that nullable/optional values and properties are defined before accessing them (for example, by enabling [`strictNullChecks`](https://www.typescriptlang.org/tsconfig/#strictNullChecks) if using TypeScript), i.e., `if (object.nullableProperty) { object.nullableProperty.foo }` or with optional-chaining `object.nullableProperty?.foo`.

0 commit comments

Comments
 (0)