Skip to content

Commit 0d1a1f5

Browse files
authored
Merge pull request #2 from reactjs/helloanil/home-page
Translate Home Page
2 parents cba8b45 + 1163c31 commit 0d1a1f5

8 files changed

+25
-24
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: A Component Using External Plugins
2+
title: Harici Eklentiler Kullanan Bir Bileşen
33
order: 3
44
domid: markdown-example
55
---
66

7-
React allows you to interface with other libraries and frameworks. This example uses **remarkable**, an external Markdown library, to convert the `<textarea>`'s value in real time.
7+
React, başka kütüphaneler ve frameworkleri arayüz olarak kullanmanıza olanak sağlar. Bu örnek, `<textarea>` değerini anlık dönüştürmek amacıyla, bir Markdown kütüphanesi olan **remarkable**'ı kullanmaktadır.
+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
title: A Simple Component
2+
title: Basit Bir Bileşen
33
order: 0
44
domid: hello-example
55
---
66

7-
React components implement a `render()` method that takes input data and returns what to display. This example uses an XML-like syntax called JSX. Input data that is passed into the component can be accessed by `render()` via `this.props`.
7+
React bileşenleri, girdi verileri alan ve ne gösterileceğini dönen bir `render()` methodu sağlar. Bu örnekte, XML benzeri bir sentaks olan JSX kullanılıyor. Bileşene iletilen girdi verilerine, `render()` methodunda `this.props` aracılığıyla ulaşılabilir.
88

9-
**JSX is optional and not required to use React.** Try the [Babel REPL](babel://es5-syntax-example) to see the raw JavaScript code produced by the JSX compilation step.
9+
**JSX isteğe bağlıdır ve React'i kullanmak için gerekli değildir.** JSX derleme adımı ile üretilen ham JavaScript kodunu görmek için [Babel REPL](babel://es5-syntax-example)'i deneyin.
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: A Stateful Component
2+
title: Durumlu Bir Bileşen
33
order: 1
44
domid: timer-example
55
---
66

7-
In addition to taking input data (accessed via `this.props`), a component can maintain internal state data (accessed via `this.state`). When a component's state data changes, the rendered markup will be updated by re-invoking `render()`.
7+
Bir bileşen, girdi verileri (`this.props` ile ulaşılabilir) almanın yanı sıra, dahili state verisi (`this.state` ile ulaşılabilir) yönetebilir. Bir bileşenin durum verileri değiştiğinde, oluşturulan görüntü `render()` methodunun tekrar çağırılması ile güncellenecektir.
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: An Application
2+
title: Bir Uygulama
33
order: 2
44
domid: todos-example
55
---
66

7-
Using `props` and `state`, we can put together a small Todo application. This example uses `state` to track the current list of items as well as the text that the user has entered. Although event handlers appear to be rendered inline, they will be collected and implemented using event delegation.
7+
`props` ve `state` kullanarak, küçük bir Todo uygulaması oluşturabiliriz. Bu örnekte `state`, hem öğelerin bulunduğu güncel listeyi hem de kullanıcının girmiş olduğu metni takip etmek için kullanılıyor. Olay yöneticileri, satıriçi oluşturuluyor gibi gözükmelerine rağmen, olay delagasyonu ile toplanıp gerçekleştirilir.
+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
2-
title: Component-Based
2+
title: Bileşen Tabanlı
33
order: 1
44
---
55

6-
Build encapsulated components that manage their own state, then compose them to make complex UIs.
6+
Kendi state'ini yöneten bileşenler geliştirin ve onları bir araya getirerek kompleks kullanıcı arayüzleri oluşturun.
77

8-
Since component logic is written in JavaScript instead of templates, you can easily pass rich data through your app and keep state out of the DOM.
8+
Bileşen mantığı, şablonlar yerine JavaScript'te yazıldığı için, uygulamanız boyunca kolayca zengin veri iletebilir ve state bilgisini DOM dışında tutabilirsiniz.

content/home/marketing/declarative.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
2-
title: Declarative
2+
title: Bildirimsel
33
order: 0
44
---
55

6-
React makes it painless to create interactive UIs. Design simple views for each state in your application, and React will efficiently update and render just the right components when your data changes.
6+
React, interaktif kullanıcı arayüzü geliştirmeyi acısız hale getirir. Siz uygulamanızdaki her durum için basit sayfalar tasarlayın. React, veriniz değiştinde sadece doğru bileşenleri verimli bir şekilde güncellesin ve oluştursun.
77

8-
Declarative views make your code more predictable and easier to debug.
8+
Bildirimsel sayfalar, kodunuzu daha öngörülebilir ve hata ayıklaması daha kolay hale getirir.
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
2-
title: Learn Once, Write Anywhere
2+
title: Bir kere öğrenin, Her yerde yazın
33
order: 2
44
---
55

6-
We don't make assumptions about the rest of your technology stack, so you can develop new features in React without rewriting existing code.
6+
Kullandığınız diğer teknolojilerle ilgili varsayımlar yapmıyoruz. Bu nedenle yeni özellikleri, mevcut kodunuzu baştan yazmadan React ile geliştirebilirsiniz.
77

8-
React can also render on the server using Node and power mobile apps using [React Native](https://facebook.github.io/react-native/).
8+
Aynı zamanda React, Node kullanarak sunucu tarafında sayfa oluşturabilir ve [React Native](https://facebook.github.io/react-native/) ile mobil uygulamalara güç sağlar.

src/pages/index.js

+7-6
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class Home extends Component {
5050
return (
5151
<Layout location={location}>
5252
<TitleAndMetaTags
53-
title="React &ndash; A JavaScript library for building user interfaces"
53+
title="React &ndash; Kullanıcı arayüzleri geliştirebileceğiniz bir JavaScript kütüphanesi"
5454
ogUrl={createOgUrl('index.html')}
5555
/>
5656
<div css={{width: '100%'}}>
@@ -133,7 +133,8 @@ class Home extends Component {
133133
fontSize: 30,
134134
},
135135
}}>
136-
A JavaScript library for building user interfaces
136+
Kullanıcı arayüzleri geliştirebileceğiniz bir JavaScript
137+
kütüphanesi
137138
</p>
138139
<Flex
139140
valign="center"
@@ -148,12 +149,12 @@ class Home extends Component {
148149
<ButtonLink
149150
to="/docs/getting-started.html"
150151
type="primary">
151-
Get Started
152+
Hemen Başla
152153
</ButtonLink>
153154
</CtaItem>
154155
<CtaItem>
155156
<ButtonLink to="/tutorial/tutorial.html" type="secondary">
156-
Take the Tutorial
157+
Öğreticiye Git
157158
</ButtonLink>
158159
</CtaItem>
159160
</Flex>
@@ -285,12 +286,12 @@ class Home extends Component {
285286
<Flex valign="center">
286287
<CtaItem>
287288
<ButtonLink to="/docs/getting-started.html" type="primary">
288-
Get Started
289+
Hemen Başla
289290
</ButtonLink>
290291
</CtaItem>
291292
<CtaItem>
292293
<ButtonLink to="/tutorial/tutorial.html" type="secondary">
293-
Take the Tutorial
294+
Öğreticiye Git
294295
</ButtonLink>
295296
</CtaItem>
296297
</Flex>

0 commit comments

Comments
 (0)