Skip to content

Commit abc5b66

Browse files
committed
translate all the things 🌈
1 parent 1ebab9e commit abc5b66

File tree

10 files changed

+50
-52
lines changed

10 files changed

+50
-52
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.

‎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>

‎src/pages/blog/all.html.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ const AllBlogPosts = ({data, location}: Props) => (
2828
<Container>
2929
<div css={sharedStyles.articleLayout.container}>
3030
<div css={sharedStyles.articleLayout.content}>
31-
<Header>All Posts</Header>
31+
<Header>Összes blogposzt</Header>
3232
<TitleAndMetaTags
3333
canonicalUrl={`${urlRoot}/blog/all.html`}
34-
title="React - All Posts"
34+
title="React - Összes blogposzt"
3535
/>
3636
<ul
3737
css={{
@@ -83,7 +83,7 @@ const AllBlogPosts = ({data, location}: Props) => (
8383
color: colors.subtle,
8484
marginTop: -5,
8585
}}>
86-
by{' '}
86+
szerzők {' '}
8787
{toCommaSeparatedList(node.frontmatter.author, author => (
8888
<span key={author.frontmatter.name}>
8989
{author.frontmatter.name}

‎src/pages/jsx-compiler.html.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ const JsxCompiler = ({location}: Props) => (
2424
<div css={sharedStyles.markdown}>
2525
<p>
2626
<strong>
27-
This tool has been removed as JSXTransformer has been
28-
deprecated.
27+
Ez az eszköz el lett távolítva, mivel a JSXTransformer
28+
elavultnak lett minősítve.
2929
</strong>
3030
</p>
3131
<p>
32-
We recommend using another tool such as{' '}
33-
<a href="https://babeljs.io/repl/">the Babel REPL</a>.
32+
Egy másik eszköt használatát ajánljuk, mint például{' '}
33+
<a href="https://babeljs.io/repl/">a Babel REPL</a>.
3434
</p>
3535
</div>
3636
</div>

‎src/pages/languages.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ const Language = ({code, name, status, translatedName}) => {
157157
href={`https://github.com/reactjs/${prefix}reactjs.org/`}
158158
target="_blank"
159159
rel="noopener">
160-
Contribute
160+
Közreműködés
161161
</a>
162162
</div>
163163
</li>

‎src/pages/versions.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,27 +25,27 @@ const Versions = ({location}: Props) => (
2525
<Container>
2626
<div css={sharedStyles.articleLayout.container}>
2727
<div css={sharedStyles.articleLayout.content}>
28-
<Header>React Versions</Header>
28+
<Header>React verziók</Header>
2929
<TitleAndMetaTags
3030
canonicalUrl={`${urlRoot}/versions/`}
31-
title="React - Versions"
31+
title="React - Verziók"
3232
/>
3333
<div css={sharedStyles.markdown}>
3434
<p>
35-
A complete release history for React is available{' '}
35+
A React teljes kiadási története elérhető{' '}
3636
<a
3737
href="https://github.com/facebook/react/releases"
3838
target="_blank"
3939
rel="noopener">
40-
on GitHub
40+
a GitHubon
4141
</a>
4242
.<br />
43-
Documentation for recent releases can also be found below.
43+
Lejjebb a jelenlegi kiadások dokumentációja is megtalálható.
4444
</p>
4545
<p>
46-
See our FAQ for information about{' '}
46+
Nézd meg a GY.I.K-et{' '}
4747
<a href="/docs/faq-versioning.html">
48-
our versioning policy and commitment to stability
48+
a számozási irányelveinkről és a stabilitási elkötelezttségünkről
4949
</a>
5050
.
5151
</p>
@@ -55,13 +55,13 @@ const Versions = ({location}: Props) => (
5555
<ul>
5656
<li>
5757
<a href={version.changelog} target="_blank" rel="noopener">
58-
Changelog
58+
Változási napló
5959
</a>
6060
</li>
6161
{version.path && (
6262
<li>
6363
<a href={version.path} rel="nofollow">
64-
Documentation
64+
Dokumntáció
6565
</a>
6666
</li>
6767
)}

‎src/templates/blog.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ import {createLinkBlog} from 'utils/createLink';
1212

1313
const toSectionList = allMarkdownRemark => [
1414
{
15-
title: 'Recent Posts',
15+
title: 'Friss blogposztok',
1616
items: allMarkdownRemark.edges
1717
.map(({node}) => ({
1818
id: node.fields.slug,
1919
title: node.frontmatter.title,
2020
}))
2121
.concat({
2222
id: '/blog/all.html',
23-
title: 'All posts ...',
23+
title: 'Összes blogposzt ...',
2424
}),
2525
},
2626
];

‎src/templates/codepen-example.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ class CodepenExample extends Component {
4545
<input type="hidden" name="data" value={payload} />
4646

4747
<p>
48-
Not automatically redirecting?
48+
Nem irányít át automatikusan?
4949
<br />
5050
<br />
51-
<input style={primaryStyle} type="submit" value="Click here" />
51+
<input style={primaryStyle} type="submit" value="Kattints ide" />
5252
</p>
5353
</form>
5454
</Container>

‎static/html/single-file-example.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="UTF-8" />
5-
<title>Hello World</title>
5+
<title>Helló világ</title>
66
<script src="https://unpkg.com/react@16/umd/react.development.js"></script>
77
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
88

@@ -14,7 +14,7 @@
1414
<script type="text/babel">
1515

1616
ReactDOM.render(
17-
<h1>Hello, world!</h1>,
17+
<h1>Helló világ!</h1>,
1818
document.getElementById('root')
1919
);
2020

0 commit comments

Comments
 (0)