Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Components translation #45

Merged
merged 5 commits into from
Mar 3, 2020
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions content/404.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
layout: single
title: Page Not Found
title: Az oldal nem található
permalink: 404.html
---

We couldn't find what you were looking for.
Nem találtuk meg amit kerestél.
balazsorban44 marked this conversation as resolved.
Show resolved Hide resolved

Please contact the owner of the site that linked you to the original URL and let them know their link is broken.
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.
balazsorban44 marked this conversation as resolved.
Show resolved Hide resolved
18 changes: 9 additions & 9 deletions content/footerNav.yml
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
community:
title: Community
title: Közösség

docs:
title: Docs
title: Dokumentáció

more:
title: More
title: Egyéb
items:
- title: Tutorial
- title: Tutoriál
to: /tutorial/tutorial.html
- title: Blog
to: /blog
- title: Acknowledgements
- title: Elismerések
to: /acknowledgements.html
- title: React Native
to: https://facebook.github.io/react-native/
external: true

channels:
title: Channels
title: Csatornák
items:
- title: GitHub
to: https://github.com/facebook/react
external: true
- title: Stack Overflow
to: https://stackoverflow.com/questions/tagged/reactjs
external: true
- title: Discussion Forums
- title: Kibeszélő fórumok
to: https://reactjs.org/community/support.html#popular-discussion-forums
external: true
- title: Reactiflux Chat
- title: Reactiflux chat
to: https://discord.gg/reactiflux
external: true
- title: DEV Community
- title: DEV közösség
to: https://dev.to/t/react
external: true
- title: Facebook
Expand Down
6 changes: 3 additions & 3 deletions content/headerNav.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
items:
- title: Docs
- title: Dokumentáció
to: /docs/getting-started.html
activeSelector: /docs/
- title: Tutorial
- title: Tutoriál
to: /tutorial/tutorial.html
activeSelector: /tutorial
- title: Blog
to: /blog/
activeSelector: /blog
- title: Community
- title: Közösség
to: /community/support.html
activeSelector: /community
12 changes: 6 additions & 6 deletions src/components/CodeEditor/CodeEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ class CodeEditor extends Component {
if (showBabelErrorMessage) {
errorMessage = (
<span>
Babel could not be loaded.
A Babelt nem sikeürlt betölteni.
balazsorban44 marked this conversation as resolved.
Show resolved Hide resolved
<br />
<br />
This can be caused by an ad blocker. If you're using one, consider
adding reactjs.org to the whitelist so the live code examples will
work.
Ez lehet, hogy egy hirdetés blokkoló miatt történt. Ha használsz ilyet,
fontold meg ennek az oldlanak a kivételekhez adását, hogy az élő
kódpéldák nyugodtan tudjanak működni.
</span>
);
} else if (error != null) {
Expand Down Expand Up @@ -175,7 +175,7 @@ class CodeEditor extends Component {
cssProps={{
color: colors.white,
}}>
Error
Hiba
</MetaTitle>
</div>
<pre
Expand Down Expand Up @@ -206,7 +206,7 @@ class CodeEditor extends Component {
padding: '0 10px',
backgroundColor: colors.divider,
}}>
<MetaTitle>Result</MetaTitle>
<MetaTitle>Eredmény</MetaTitle>
</div>
<div
id={containerNodeID}
Expand Down
2 changes: 1 addition & 1 deletion src/components/CodeExample/CodeExample.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class CodeExample extends Component {
{loaded ? (
<CodeEditor code={code} containerNodeID={containerNodeID} />
) : (
<h4>Loading code example...</h4>
<h4>Kódpélda betöltése...</h4>
)}
</div>
);
Expand Down
6 changes: 3 additions & 3 deletions src/components/ErrorDecoder/ErrorDecoder.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,16 +69,16 @@ function ErrorResult(props: {|code: ?string, msg: string|}) {
if (!code) {
return (
<p>
When you encounter an error, you'll receive a link to this page for that
specific error and we'll show you the full error text.
Ha egy hibába ütközöl, egy linket fogsz kapni ami erre az oldalra mutat
balazsorban44 marked this conversation as resolved.
Show resolved Hide resolved
azzal a specifikus hibával és itt megmutatjuk a hiba teljes szövegét.
</p>
);
}

return (
<div>
<p>
<b>The full text of the error you just encountered is:</b>
<b>A hiba teljes szövege amibe beleütköztél:</b>
</p>
<code>
<b>{urlify(errorMsg)}</b>
Expand Down
4 changes: 2 additions & 2 deletions src/components/LayoutFooter/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const Footer = ({layoutHasSidebar = false}: {layoutHasSidebar: boolean}) => (
<MetaTitle onDark={true}>{navFooter.community.title}</MetaTitle>
<ExternalFooterLink
href={`https://github.com/facebook/react/blob/master/CODE_OF_CONDUCT.md`}>
Code of Conduct
Magatartási kódex
</ExternalFooterLink>
{sectionListCommunity.map(section => (
<FooterLink
Expand Down Expand Up @@ -139,7 +139,7 @@ const Footer = ({layoutHasSidebar = false}: {layoutHasSidebar: boolean}) => (
color: colors.subtleOnDark,
paddingTop: 15,
}}>
{`Copyright © ${new Date().getFullYear()} Facebook Inc.`}
{`Szerzői jog © ${new Date().getFullYear()} Facebook Inc.`}
</p>
</section>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/MarkdownPage/MarkdownPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const MarkdownPage = ({
{date}{' '}
{hasAuthors && (
<span>
by{' '}
szerzők{' '}
{toCommaSeparatedList(authors, author => (
<a
css={sharedStyles.link}
Expand Down
8 changes: 4 additions & 4 deletions src/pages/404.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ const PageNotFound = ({location}: Props) => (
<Container>
<div css={sharedStyles.articleLayout.container}>
<div css={sharedStyles.articleLayout.content}>
<Header>Page Not Found</Header>
<Header>Az oldal nem található</Header>
<TitleAndMetaTags title="React - Page Not Found" />
<div css={sharedStyles.markdown}>
<p>We couldn't find what you were looking for.</p>
<p>Nem találtuk meg amit kerestél.</p>
balazsorban44 marked this conversation as resolved.
Show resolved Hide resolved
<p>
Please contact the owner of the site that linked you to the
original URL and let them know their link is broken.
Kérjük vedd fel a kapcsolatot az oldal tulajdonosával ami
balazsorban44 marked this conversation as resolved.
Show resolved Hide resolved
erre az URL-re küldött téged és tudasd velük, hogy a link nem működik.
</p>
</div>
</div>
Expand Down
42 changes: 20 additions & 22 deletions src/pages/acknowledgements.html.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ const Acknowlegements = ({data, location}) => (
<Container>
<div css={sharedStyles.articleLayout.container}>
<div css={sharedStyles.articleLayout.content}>
<Header>Acknowledgements</Header>
<Header>Elismerések</Header>
<TitleAndMetaTags
canonicalUrl={`${urlRoot}/acknowledgements.html`}
title="React - Acknowledgements"
title="React - Elismerések"
/>

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

<ul
css={{
Expand All @@ -44,38 +44,36 @@ const Acknowlegements = ({data, location}) => (
))}
</ul>

<p>In addition, we're grateful to</p>
<p>Valamint hálásak vagyunk</p>
<ul>
<li>
<a href="https://github.com/jeffbski">Jeff Barczewski</a> for
allowing us to use the{' '}
<a href="https://www.npmjs.com/package/react">react</a> package
name on npm.
<a href="https://github.com/jeffbski">Jeff Barczewski</a>nek,
hogy használhatjuk a{' '}
<a href="https://www.npmjs.com/package/react">react</a> csomagnevet npm-en.
</li>
<li>
<a href="https://christopheraue.net/">Christopher Aue</a> for
letting us use the{' '}
<a href="https://reactjs.com/">reactjs.com</a> domain name and
the <a href="https://twitter.com/reactjs">@reactjs</a> username
on Twitter.
<a href="https://christopheraue.net/">Christopher Aue</a>nek, hogy
használhatjuk a{' '}
<a href="https://reactjs.com/">reactjs.com</a> doménnevet és
a <a href="https://twitter.com/reactjs">@reactjs</a> felhasználónevet
Twitteren.
</li>
<li>
<a href="https://github.com/ProjectMoon">ProjectMoon</a> for
letting us use the{' '}
<a href="https://www.npmjs.com/package/flux">flux</a> package
name on npm.
<a href="https://github.com/ProjectMoon">ProjectMoon</a>nak, hogy
használhatjuk a{' '}
<a href="https://www.npmjs.com/package/flux">flux</a> csomagnvet npm-en.
</li>
<li>
Shane Anderson for allowing us to use the{' '}
<a href="https://github.com/react">react</a> org on GitHub.
Shane Andersonnak, hogy használhatjuk a{' '}
<a href="https://github.com/react">react</a> szervezet nevet GitHubon.
</li>
<li>
<a href="https://github.com/voronianski">Dmitri Voronianski</a>{' '}
for letting us use the{' '}
<a href="https://github.com/voronianski">Dmitri Voronianski</a>nak,{' '}
hogy használhatjuk az{' '}
<a href="https://labs.voronianski.com/oceanic-next-color-scheme/">
Oceanic Next
</a>{' '}
color scheme on this website.
színsémát ezen az oldalon.
</li>
</ul>
</div>
Expand Down
6 changes: 3 additions & 3 deletions src/pages/blog/all.html.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ const AllBlogPosts = ({data, location}: Props) => (
<Container>
<div css={sharedStyles.articleLayout.container}>
<div css={sharedStyles.articleLayout.content}>
<Header>All Posts</Header>
<Header>Összes blogposzt</Header>
<TitleAndMetaTags
canonicalUrl={`${urlRoot}/blog/all.html`}
title="React - All Posts"
title="React - Összes blogposzt"
/>
<ul
css={{
Expand Down Expand Up @@ -83,7 +83,7 @@ const AllBlogPosts = ({data, location}: Props) => (
color: colors.subtle,
marginTop: -5,
}}>
by{' '}
szerzők {' '}
{toCommaSeparatedList(node.frontmatter.author, author => (
<span key={author.frontmatter.name}>
{author.frontmatter.name}
Expand Down
8 changes: 4 additions & 4 deletions src/pages/jsx-compiler.html.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ const JsxCompiler = ({location}: Props) => (
<div css={sharedStyles.markdown}>
<p>
<strong>
This tool has been removed as JSXTransformer has been
deprecated.
Ez az eszköz el lett távolítva, mivel a JSXTransformer
elavultnak lett minősítve.
</strong>
</p>
<p>
We recommend using another tool such as{' '}
<a href="https://babeljs.io/repl/">the Babel REPL</a>.
Egy másik eszköt használatát ajánljuk, mint például{' '}
balazsorban44 marked this conversation as resolved.
Show resolved Hide resolved
<a href="https://babeljs.io/repl/">a Babel REPL</a>.
</p>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/languages.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ const Language = ({code, name, status, translatedName}) => {
href={`https://github.com/reactjs/${prefix}reactjs.org/`}
target="_blank"
rel="noopener">
Contribute
Közreműködés
</a>
</div>
</li>
Expand Down
18 changes: 9 additions & 9 deletions src/pages/versions.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,27 +25,27 @@ const Versions = ({location}: Props) => (
<Container>
<div css={sharedStyles.articleLayout.container}>
<div css={sharedStyles.articleLayout.content}>
<Header>React Versions</Header>
<Header>React verziók</Header>
<TitleAndMetaTags
canonicalUrl={`${urlRoot}/versions/`}
title="React - Versions"
title="React - Verziók"
/>
<div css={sharedStyles.markdown}>
<p>
A complete release history for React is available{' '}
A React teljes kiadási története elérhető{' '}
<a
href="https://github.com/facebook/react/releases"
target="_blank"
rel="noopener">
on GitHub
a GitHubon
</a>
.<br />
Documentation for recent releases can also be found below.
Lejjebb a jelenlegi kiadások dokumentációja is megtalálható.
</p>
<p>
See our FAQ for information about{' '}
Nézd meg a GY.I.K-et{' '}
<a href="/docs/faq-versioning.html">
our versioning policy and commitment to stability
a számozási irányelveinkről és a stabilitási elkötelezttségünkről
balazsorban44 marked this conversation as resolved.
Show resolved Hide resolved
</a>
.
</p>
Expand All @@ -55,13 +55,13 @@ const Versions = ({location}: Props) => (
<ul>
<li>
<a href={version.changelog} target="_blank" rel="noopener">
Changelog
Változási napló
</a>
</li>
{version.path && (
<li>
<a href={version.path} rel="nofollow">
Documentation
Dokumentáció
</a>
</li>
)}
Expand Down
4 changes: 2 additions & 2 deletions src/templates/blog.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ import {createLinkBlog} from 'utils/createLink';

const toSectionList = allMarkdownRemark => [
{
title: 'Recent Posts',
title: 'Friss blogposztok',
items: allMarkdownRemark.edges
.map(({node}) => ({
id: node.fields.slug,
title: node.frontmatter.title,
}))
.concat({
id: '/blog/all.html',
title: 'All posts ...',
title: 'Összes blogposzt ...',
}),
},
];
Expand Down
4 changes: 2 additions & 2 deletions src/templates/codepen-example.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ class CodepenExample extends Component {
<input type="hidden" name="data" value={payload} />

<p>
Not automatically redirecting?
Nem irányít át automatikusan?
<br />
<br />
<input style={primaryStyle} type="submit" value="Click here" />
<input style={primaryStyle} type="submit" value="Kattints ide" />
</p>
</form>
</Container>
Expand Down
Loading