Skip to content

Commit 8a83ab9

Browse files
committed
translate components in src
1 parent a8c69e1 commit 8a83ab9

File tree

7 files changed

+24
-24
lines changed

7 files changed

+24
-24
lines changed

content/footerNav.yml

Lines changed: 8 additions & 8 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: Több
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
3232
- 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 sikeürlt 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ód pé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}

0 commit comments

Comments
 (0)