Skip to content

Commit a7937a7

Browse files
authored
Merge pull request #45 from reactjs/src-components
Components translation
2 parents 7802938 + 7eb7b99 commit a7937a7

File tree

18 files changed

+77
-79
lines changed

18 files changed

+77
-79
lines changed

content/404.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
layout: single
3-
title: Page Not Found
3+
title: Az oldal nem található
44
permalink: 404.html
55
---
66

7-
We couldn't find what you were looking for.
7+
Nem találtuk meg, amit kerestél.
88

9-
Please contact the owner of the site that linked you to the original URL and let them know their link is broken.
9+
Kérjük vedd fel a kapcsolatot az oldal tulajdonosával, ami erre az URL-re küldött téged, és tudasd velük, hogy a link nem működik.

content/footerNav.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
11
community:
2-
title: Community
2+
title: Közösség
33

44
docs:
5-
title: Docs
5+
title: Dokumentáció
66

77
more:
8-
title: More
8+
title: Egyéb
99
items:
10-
- title: Tutorial
10+
- title: Tutoriál
1111
to: /tutorial/tutorial.html
1212
- title: Blog
1313
to: /blog
14-
- title: Acknowledgements
14+
- title: Elismerések
1515
to: /acknowledgements.html
1616
- title: React Native
1717
to: https://facebook.github.io/react-native/
1818
external: true
1919

2020
channels:
21-
title: Channels
21+
title: Csatornák
2222
items:
2323
- title: GitHub
2424
to: https://github.com/facebook/react
2525
external: true
2626
- title: Stack Overflow
2727
to: https://stackoverflow.com/questions/tagged/reactjs
2828
external: true
29-
- title: Discussion Forums
29+
- title: Kibeszélő fórumok
3030
to: https://reactjs.org/community/support.html#popular-discussion-forums
3131
external: true
32-
- title: Reactiflux Chat
32+
- title: Reactiflux chat
3333
to: https://discord.gg/reactiflux
3434
external: true
35-
- title: DEV Community
35+
- title: DEV közösség
3636
to: https://dev.to/t/react
3737
external: true
3838
- title: Facebook

content/headerNav.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
items:
2-
- title: Docs
2+
- title: Dokumentáció
33
to: /docs/getting-started.html
44
activeSelector: /docs/
5-
- title: Tutorial
5+
- title: Tutoriál
66
to: /tutorial/tutorial.html
77
activeSelector: /tutorial
88
- title: Blog
99
to: /blog/
1010
activeSelector: /blog
11-
- title: Community
11+
- title: Közösség
1212
to: /community/support.html
1313
activeSelector: /community

src/components/CodeEditor/CodeEditor.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ class CodeEditor extends Component {
6262
if (showBabelErrorMessage) {
6363
errorMessage = (
6464
<span>
65-
Babel could not be loaded.
65+
A Babelt nem sikerült betölteni.
6666
<br />
6767
<br />
68-
This can be caused by an ad blocker. If you're using one, consider
69-
adding reactjs.org to the whitelist so the live code examples will
70-
work.
68+
Ez lehet, hogy egy hirdetés blokkoló miatt történt. Ha használsz ilyet,
69+
fontold meg ennek az oldlanak a kivételekhez adását, hogy az élő
70+
kódpéldák nyugodtan tudjanak működni.
7171
</span>
7272
);
7373
} else if (error != null) {
@@ -175,7 +175,7 @@ class CodeEditor extends Component {
175175
cssProps={{
176176
color: colors.white,
177177
}}>
178-
Error
178+
Hiba
179179
</MetaTitle>
180180
</div>
181181
<pre
@@ -206,7 +206,7 @@ class CodeEditor extends Component {
206206
padding: '0 10px',
207207
backgroundColor: colors.divider,
208208
}}>
209-
<MetaTitle>Result</MetaTitle>
209+
<MetaTitle>Eredmény</MetaTitle>
210210
</div>
211211
<div
212212
id={containerNodeID}

src/components/CodeExample/CodeExample.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class CodeExample extends Component {
6161
{loaded ? (
6262
<CodeEditor code={code} containerNodeID={containerNodeID} />
6363
) : (
64-
<h4>Loading code example...</h4>
64+
<h4>Kódpélda betöltése...</h4>
6565
)}
6666
</div>
6767
);

src/components/ErrorDecoder/ErrorDecoder.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,16 +69,16 @@ function ErrorResult(props: {|code: ?string, msg: string|}) {
6969
if (!code) {
7070
return (
7171
<p>
72-
When you encounter an error, you'll receive a link to this page for that
73-
specific error and we'll show you the full error text.
72+
Ha egy hibába ütközöl, egy linket fogsz kapni, ami erre az oldalra mutat
73+
azzal a specifikus hibával és itt megmutatjuk a hiba teljes szövegét.
7474
</p>
7575
);
7676
}
7777

7878
return (
7979
<div>
8080
<p>
81-
<b>The full text of the error you just encountered is:</b>
81+
<b>A hiba teljes szövege amibe beleütköztél:</b>
8282
</p>
8383
<code>
8484
<b>{urlify(errorMsg)}</b>

src/components/LayoutFooter/Footer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ const Footer = ({layoutHasSidebar = false}: {layoutHasSidebar: boolean}) => (
8787
<MetaTitle onDark={true}>{navFooter.community.title}</MetaTitle>
8888
<ExternalFooterLink
8989
href={`https://github.com/facebook/react/blob/master/CODE_OF_CONDUCT.md`}>
90-
Code of Conduct
90+
Magatartási kódex
9191
</ExternalFooterLink>
9292
{sectionListCommunity.map(section => (
9393
<FooterLink
@@ -139,7 +139,7 @@ const Footer = ({layoutHasSidebar = false}: {layoutHasSidebar: boolean}) => (
139139
color: colors.subtleOnDark,
140140
paddingTop: 15,
141141
}}>
142-
{`Copyright © ${new Date().getFullYear()} Facebook Inc.`}
142+
{`Szerzői jog © ${new Date().getFullYear()} Facebook Inc.`}
143143
</p>
144144
</section>
145145
</div>

src/components/MarkdownPage/MarkdownPage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ const MarkdownPage = ({
8888
{date}{' '}
8989
{hasAuthors && (
9090
<span>
91-
by{' '}
91+
szerzők{' '}
9292
{toCommaSeparatedList(authors, author => (
9393
<a
9494
css={sharedStyles.link}

src/pages/404.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ const PageNotFound = ({location}: Props) => (
2121
<Container>
2222
<div css={sharedStyles.articleLayout.container}>
2323
<div css={sharedStyles.articleLayout.content}>
24-
<Header>Page Not Found</Header>
24+
<Header>Az oldal nem található</Header>
2525
<TitleAndMetaTags title="React - Page Not Found" />
2626
<div css={sharedStyles.markdown}>
27-
<p>We couldn't find what you were looking for.</p>
27+
<p>Nem találtuk meg, amit kerestél.</p>
2828
<p>
29-
Please contact the owner of the site that linked you to the
30-
original URL and let them know their link is broken.
29+
Kérjük vedd fel a kapcsolatot az oldal tulajdonosával, ami
30+
erre az URL-re küldött téged és tudasd velük, hogy a link nem működik.
3131
</p>
3232
</div>
3333
</div>

src/pages/acknowledgements.html.js

Lines changed: 20 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ const Acknowlegements = ({data, location}) => (
1919
<Container>
2020
<div css={sharedStyles.articleLayout.container}>
2121
<div css={sharedStyles.articleLayout.content}>
22-
<Header>Acknowledgements</Header>
22+
<Header>Elismerések</Header>
2323
<TitleAndMetaTags
2424
canonicalUrl={`${urlRoot}/acknowledgements.html`}
25-
title="React - Acknowledgements"
25+
title="React - Elismerések"
2626
/>
2727

2828
<div css={sharedStyles.markdown}>
29-
<p>We'd like to thank all of our contributors:</p>
29+
<p>Minden közreműködőnek nagy köszönet:</p>
3030

3131
<ul
3232
css={{
@@ -44,38 +44,36 @@ const Acknowlegements = ({data, location}) => (
4444
))}
4545
</ul>
4646

47-
<p>In addition, we're grateful to</p>
47+
<p>Valamint hálásak vagyunk</p>
4848
<ul>
4949
<li>
50-
<a href="https://github.com/jeffbski">Jeff Barczewski</a> for
51-
allowing us to use the{' '}
52-
<a href="https://www.npmjs.com/package/react">react</a> package
53-
name on npm.
50+
<a href="https://github.com/jeffbski">Jeff Barczewski</a>nek,
51+
hogy használhatjuk a{' '}
52+
<a href="https://www.npmjs.com/package/react">react</a> csomagnevet npm-en.
5453
</li>
5554
<li>
56-
<a href="https://christopheraue.net/">Christopher Aue</a> for
57-
letting us use the{' '}
58-
<a href="https://reactjs.com/">reactjs.com</a> domain name and
59-
the <a href="https://twitter.com/reactjs">@reactjs</a> username
60-
on Twitter.
55+
<a href="https://christopheraue.net/">Christopher Aue</a>nek, hogy
56+
használhatjuk a{' '}
57+
<a href="https://reactjs.com/">reactjs.com</a> doménnevet és
58+
a <a href="https://twitter.com/reactjs">@reactjs</a> felhasználónevet
59+
Twitteren.
6160
</li>
6261
<li>
63-
<a href="https://github.com/ProjectMoon">ProjectMoon</a> for
64-
letting us use the{' '}
65-
<a href="https://www.npmjs.com/package/flux">flux</a> package
66-
name on npm.
62+
<a href="https://github.com/ProjectMoon">ProjectMoon</a>nak, hogy
63+
használhatjuk a{' '}
64+
<a href="https://www.npmjs.com/package/flux">flux</a> csomagnvet npm-en.
6765
</li>
6866
<li>
69-
Shane Anderson for allowing us to use the{' '}
70-
<a href="https://github.com/react">react</a> org on GitHub.
67+
Shane Andersonnak, hogy használhatjuk a{' '}
68+
<a href="https://github.com/react">react</a> szervezet nevet GitHubon.
7169
</li>
7270
<li>
73-
<a href="https://github.com/voronianski">Dmitri Voronianski</a>{' '}
74-
for letting us use the{' '}
71+
<a href="https://github.com/voronianski">Dmitri Voronianski</a>nak,{' '}
72+
hogy használhatjuk az{' '}
7573
<a href="https://labs.voronianski.com/oceanic-next-color-scheme/">
7674
Oceanic Next
7775
</a>{' '}
78-
color scheme on this website.
76+
színsémát ezen az oldalon.
7977
</li>
8078
</ul>
8179
</div>

0 commit comments

Comments
 (0)