Skip to content

Commit 79f3121

Browse files
committed
translate translate react compiler page
1 parent b3c5335 commit 79f3121

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/content/learn/react-compiler.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,15 +108,15 @@ function TableContainer({ items }) {
108108

109109
Ancak, `expensivelyProcessAReallyLargeArrayOfObjects` gerçekten pahalı bir işlevse, React dışında kendi memoizasyonunu uygulamayı düşünebilirsiniz, çünkü:
110110

111-
- React Compiler only memoizes React components and hooks, not every function
112-
- React Compiler's memoization is not shared across multiple components or hooks
111+
- React Derleyici her işlevi değil, yalnızca React bileşenlerini ve hook'larını belleğe alır
112+
- React Compiler'ın memoizasyonu birden fazla bileşen veya hook arasında paylaşılmaz
113113

114-
So if `expensivelyProcessAReallyLargeArrayOfObjects` was used in many different components, even if the same exact items were passed down, that expensive calculation would be run repeatedly. We recommend [profiling](https://react.dev/reference/react/useMemo#how-to-tell-if-a-calculation-is-expensive) first to see if it really is that expensive before making code more complicated.
114+
Dolayısıyla, `expensivelyProcessAReallyLargeArrayOfObjects' birçok farklı bileşende kullanılmışsa, aynı öğeler aşağı aktarılsa bile, bu pahalı hesaplama tekrar tekrar çalıştırılacaktır. Kodu daha karmaşık hale getirmeden önce gerçekten bu kadar pahalı olup olmadığını görmek için önce [profiling](https://react.dev/reference/react/useMemo#how-to-tell-if-a-calculation-is-expensive) öneririz.
115115
</DeepDive>
116116

117-
### Should I try out the compiler? {/*should-i-try-out-the-compiler*/}
117+
### Derleyiciyi denemeli miyim? {/*should-i-try-out-the-compiler*/}
118118

119-
Please note that the compiler is still in Beta and has many rough edges. While it has been used in production at companies like Meta, rolling out the compiler to production for your app will depend on the health of your codebase and how well you've followed the [Rules of React](/reference/rules).
119+
Lütfen derleyicinin hala Beta aşamasında olduğunu ve birçok pürüze sahip olduğunu unutmayın. Meta gibi şirketlerde üretimde kullanılmış olsa da, derleyiciyi uygulamanız için üretime almak kod tabanınızın sağlığına ve [React Kuralları](/reference/rules)'nı ne kadar iyi takip ettiğinize bağlı olacaktır.
120120

121121
**You don't have to rush into using the compiler now. It's okay to wait until it reaches a stable release before adopting it.** However, we do appreciate trying it out in small experiments in your apps so that you can [provide feedback](#reporting-issues) to us to help make the compiler better.
122122

0 commit comments

Comments
 (0)