-
Notifications
You must be signed in to change notification settings - Fork 174
Translate Forwarding Refs #222
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Deploy preview for tr-reactjs ready! Built with commit 46618a5 |
@alioguzhan could you please check |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the translation. Please see my review comment.
content/docs/forwarding-refs.md
Outdated
|
||
Consider a `FancyButton` component that renders the native `button` DOM element: | ||
Yerel (native) `button` öğesisini oluşturan `FancyButton` bileşeni düşünün: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo in öğesisini
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bileseni
-> bilesenini
content/docs/forwarding-refs.md
Outdated
|
||
**Ref forwarding is an opt-in feature that lets some components take a `ref` they receive, and pass it further down (in other words, "forward" it) to a child.** | ||
**Ref yönlendirme, bazı bileşenlerin aldıkları bir ref'yi almasını ve daha alt elemene aktarmasını sağlayan bir etkinleştirme özelliğidir** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ref'yi
-> ref'i
There are several places in this file that this change should be applied to. Please check those places, too.
content/docs/forwarding-refs.md
Outdated
`embed:forwarding-refs/fancy-button-ref.js` | ||
|
||
Fortunately, we can explicitly forward refs to the inner `FancyButton` component using the `React.forwardRef` API. `React.forwardRef` accepts a render function that receives `props` and `ref` parameters and returns a React node. For example: | ||
Neyse ki, ref'leri `React.forwardRef` API'sını kullanarak iç `FancyButton` bileşenine iletebiliriz. `React.forwardRef`, `props` ve `ref` parametrelerini alan ve bir React node'u döndüren render fonksiyonu kabul eder. Örneğin: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
API'sını
-> API'sini
(api-sini)
or
API'sını
-> API'ını
(ey-pi-ay-ını)
@alioguzhan @yunusemredilber requested changes applied. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the update
This PR translates the
Advanced > Forwarding Refs
page into Turkish.Please review the document. Let me know about the possible improvements.