Skip to content

Commit ae8c2fe

Browse files
Merge pull request #7 from gergely-nagy/hello-world
Hello World translation
2 parents 1d4d395 + 5f9a59f commit ae8c2fe

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

content/docs/hello-world.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,50 @@
11
---
22
id: hello-world
3-
title: Hello World
3+
title: Helló, világ!
44
permalink: docs/hello-world.html
55
prev: cdn-links.html
66
next: introducing-jsx.html
77
---
88

9-
The smallest React example looks like this:
9+
A legkisebb React példa így néz ki:
1010

1111
```js
1212
ReactDOM.render(
13-
<h1>Hello, world!</h1>,
13+
<h1>Helló, világ!</h1>,
1414
document.getElementById('root')
1515
);
1616
```
1717

18-
It displays a heading saying "Hello, world!" on the page.
18+
Ez egy címsort jelenít meg "Helló, világ!" szöveggel a weboldalon.
1919

2020
[](codepen://hello-world)
2121

22-
Click the link above to open an online editor. Feel free to make some changes, and see how they affect the output. Most pages in this guide will have editable examples like this one.
22+
Kattints a fenti hivatkozásra az online szerkesztő megnyitásához. Bátran végezz változtatásokat, és figyeld meg hogyan befolyásolják a kimenetet. Az útmutató legtöbb oldala ehhez hasonló szerkeszthető példákat tartalmaz.
2323

2424

25-
## How to Read This Guide {#how-to-read-this-guide}
25+
## Hogyan használd helyesen az útmutatót {#how-to-read-this-guide}
2626

27-
In this guide, we will examine the building blocks of React apps: elements and components. Once you master them, you can create complex apps from small reusable pieces.
27+
Ebben az útmutatóban a React alkalmazások építőkockáit fogjuk megvizsgálni: elemeket és komponenseket. Miután elsajátítottad használatukat, összetett alkalmazásokat tudsz majd létrehozni kis újrafelhasználható részekből.
2828

29-
>Tip
29+
>Tipp
3030
>
31-
>This guide is designed for people who prefer **learning concepts step by step**. If you prefer to learn by doing, check out our [practical tutorial](/tutorial/tutorial.html). You might find this guide and the tutorial complementary to each other.
31+
>Ez az útmutató azok számára készült, akik előnyben részesítik a **koncepciók lépésről lépésre történő tanulását**. Ha jobban szereted gyakorlati példák közben megszerezni a tudást, nézd meg a [gyakorlati tutoriált](/tutorial/tutorial.html). Ezt az útmutatót és a tutoriált egymás kiegészítésének is tekintheted.
3232
33-
This is the first chapter in a step-by-step guide about main React concepts. You can find a list of all its chapters in the navigation sidebar. If you're reading this from a mobile device, you can access the navigation by pressing the button in the bottom right corner of your screen.
33+
Ez az első fejezet lépésről lépésre vezet végig a React alapvető fogalmain. A navigációs oldalsávon megtalálhatod az összes fejezet listáját. Ha ezt mobilkészülékről olvasod, akkor a képernyő jobb alsó sarkában található gomb megnyomásával érheted el a navigációt.
3434

35-
Every chapter in this guide builds on the knowledge introduced in earlier chapters. **You can learn most of React by reading the “Main Concepts” guide chapters in the order they appear in the sidebar.** For example, [“Introducing JSX](/docs/introducing-jsx.html) is the next chapter after this one.
35+
Az útmutató minden fejezete a korábbi fejezetekben megszerzett tudásra épít. **A React nagy részét meg tudod tanulni azzal, ha elolvasod a "Fő fogalmak" című útmutató fejezeteit az oldalsávban megjelenő sorrendben.** Például a következő fejezet a ["Bevezetés a JSX-be"](/docs/introducing-jsx.html) ez után.
3636

37-
## Knowledge Level Assumptions {#knowledge-level-assumptions}
37+
## Feltételezett tudásszint {#knowledge-level-assumptions}
3838

39-
React is a JavaScript library, and so we'll assume you have a basic understanding of the JavaScript language. **If you don't feel very confident, we recommend [going through a JavaScript tutorial](https://developer.mozilla.org/en-US/docs/Web/JavaScript/A_re-introduction_to_JavaScript) to check your knowledge level** and enable you to follow along this guide without getting lost. It might take you between 30 minutes and an hour, but as a result you won't have to feel like you're learning both React and JavaScript at the same time.
39+
A React egy JavaScript könyvtár, ezért feltételezzük, hogy van alapvető ismereted a JavaScript programozási nyelvből. **Ha nem érzed magabiztosnak magad nézd át [a JavaScript tutoriált](https://developer.mozilla.org/hu/docs/Web/JavaScript/a_javascript_ujboli_bemutatasa), hogy ellenőrizd a tudásszinted** és hogy biztosan haladni tudj az útmutató olvasása közben anélkül, hogy elakadnál. Ez körübelül 30 perc és egy óra közötti időtartamot vesz igénybe, de utána nem fogod úgy érezni, mintha egyszerre kell megtanulnod a React-et és a JavaScript nyelvet is.
4040

41-
>Note
41+
>Megjegyzés
4242
>
43-
>This guide occasionally uses some of the newer JavaScript syntax in the examples. If you haven't worked with JavaScript in the last few years, [these three points](https://gist.github.com/gaearon/683e676101005de0add59e8bb345340c) should get you most of the way.
43+
>Ez az útmutató esetenként újabb JavaScript szintaxist használ a példákban. Ha az elmúlt években nem foglalkoztál a JavaScript nyelvvel, [ez a három pont](https://gist.github.com/gaearon/683e676101005de0add59e8bb345340c) segíteni fog eligazodni.
4444
4545

46-
## Let's Get Started! {#lets-get-started}
46+
## Lássunk neki! {#lets-get-started}
4747

48-
Keep scrolling down, and you'll find the link to the [next chapter of this guide](/docs/introducing-jsx.html) right before the website footer.
48+
Folytasd a görgetést lefelé, és a hivatkozás az [útmutató következő fejezetéhez](/docs/introducing-jsx.html) közvetlenül a honlap lábléce előtt lesz megtalálható.
4949

5050

examples/hello-world.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
ReactDOM.render(
2-
<h1>Hello, world!</h1>,
2+
<h1>Helló, világ!</h1>,
33
document.getElementById('root')
44
);

0 commit comments

Comments
 (0)