Skip to content

Commit 0752efe

Browse files
authored
Merge pull request #402 from kuntik17/patch-1
Translate React-Developer-Tools
2 parents 95d591d + eb5e989 commit 0752efe

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

src/content/learn/react-developer-tools.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -4,30 +4,31 @@ title: React Developer Tools
44

55
<Intro>
66

7-
Use React Developer Tools to inspect React [components](/learn/your-first-component), edit [props](/learn/passing-props-to-a-component) and [state](/learn/state-a-components-memory), and identify performance problems.
7+
React [bileşenlerini](/learn/your-first-component) incelemek, [prop'ları](/learn/passing-props-to-a-component) ve [state](/learn/state-a-components-memory) özelliklerini düzenlemek, performans sorunlarını belirlemek için React Developer Tools'u kullanın.
88

99
</Intro>
1010

1111
<YouWillLearn>
1212

13-
* How to install React Developer Tools
13+
* React Developer Tools nasıl kurulur?
1414

1515
</YouWillLearn>
1616

17-
## Browser extension {/*browser-extension*/}
17+
## Tarayıcı eklentisi {/*browser-extension*/}
1818

19-
The easiest way to debug websites built with React is to install the React Developer Tools browser extension. It is available for several popular browsers:
19+
React ile oluşturulmuş web sitelerinin hata ayıklaması için en kolay yol, React Developer Tools tarayıcı uzantısını yüklemektir. Uzantının kullanılabilir olduğu popüler tarayıcılar:
2020

21-
* [Install for **Chrome**](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=en)
22-
* [Install for **Firefox**](https://addons.mozilla.org/en-US/firefox/addon/react-devtools/)
23-
* [Install for **Edge**](https://microsoftedge.microsoft.com/addons/detail/react-developer-tools/gpphkfbcpidddadnkolkpfckpihlkkil)
21+
* [**Chrome** için yükle](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=en)
22+
* [**Firefox** için yükle](https://addons.mozilla.org/en-US/firefox/addon/react-devtools/)
23+
* [**Edge** için yükle](https://microsoftedge.microsoft.com/addons/detail/react-developer-tools/gpphkfbcpidddadnkolkpfckpihlkkil)
2424

25-
Now, if you visit a website **built with React,** you will see the _Components_ and _Profiler_ panels.
25+
Artık **React ile oluşturulmuş** bir web sitesini ziyaret ettiğinizde, _Components_ ve _Profiler_ panellerini göreceksiniz.
2626

27-
![React Developer Tools extension](/images/docs/react-devtools-extension.png)
27+
![React Developer Tools eklentisi](/images/docs/react-devtools-extension.png)
28+
29+
### Safari ve diğer tarayıcılar {/*safari-and-other-browsers*/}
30+
Diğer tarayıcılar için (örneğin Safari için), [`react-devtools`](https://www.npmjs.com/package/react-devtools) paketini yükleyin:
2831

29-
### Safari and other browsers {/*safari-and-other-browsers*/}
30-
For other browsers (for example, Safari), install the [`react-devtools`](https://www.npmjs.com/package/react-devtools) npm package:
3132
```bash
3233
# Yarn
3334
yarn global add react-devtools
@@ -36,26 +37,25 @@ yarn global add react-devtools
3637
npm install -g react-devtools
3738
```
3839

39-
Next open the developer tools from the terminal:
40+
Daha sonra, terminalden React Developer Tools'u açın:
4041
```bash
4142
react-devtools
4243
```
4344

44-
Then connect your website by adding the following `<script>` tag to the beginning of your website's `<head>`:
45+
Daha sonra, `<script>` etiketini web sitenizin `<head>` etiketinin başlangıcına etkleyerek bağlanın :
4546
```html {3}
4647
<html>
4748
<head>
4849
<script src="http://localhost:8097"></script>
4950
```
51+
Web sitenizi geliştirici araçlarında görüntülemek sayfayı yenileyin.
5052

51-
Reload your website in the browser now to view it in developer tools.
52-
53-
![React Developer Tools standalone](/images/docs/react-devtools-standalone.png)
53+
![Tek başına React Developer Tools](/images/docs/react-devtools-standalone.png)
5454

55-
## Mobile (React Native) {/*mobile-react-native*/}
56-
React Developer Tools can be used to inspect apps built with [React Native](https://reactnative.dev/) as well.
55+
## Mobil (React Native) {/*mobile-react-native*/}
56+
React Developer Tools, [React Native](https://reactnative.dev/) ile oluşturulan uygulamaları incelemek için de kullanılabilir.
5757

58-
The easiest way to use React Developer Tools is to install it globally:
58+
React Developer Tools'u kullanmanın en kolay yolu, onu global olarak yüklemektir:
5959
```bash
6060
# Yarn
6161
yarn global add react-devtools
@@ -64,13 +64,13 @@ yarn global add react-devtools
6464
npm install -g react-devtools
6565
```
6666

67-
Next open the developer tools from the terminal.
67+
Daha sonra, terminalden React Developer Tools'u açın.
6868
```bash
6969
react-devtools
7070
```
7171

72-
It should connect to any local React Native app that's running.
72+
Yerelde çalışan herhangi bir React Native uygulamasına bağlanmalıdır.
7373

74-
> Try reloading the app if developer tools doesn't connect after a few seconds.
74+
> Birkaç saniye sonra React Developer Tools bağlanmazsa, uygulamayı yeniden yüklemeyi deneyin.
7575
76-
[Learn more about debugging React Native.](https://reactnative.dev/docs/debugging)
76+
[React Native'de hata ayıklama hakkında daha fazla bilgi edinmek için.](https://reactnative.dev/docs/debugging)

0 commit comments

Comments
 (0)