Skip to content

Commit d195f39

Browse files
committed
Translate some texts in several pages
1 parent 0bd5799 commit d195f39

File tree

10 files changed

+53
-54
lines changed

10 files changed

+53
-54
lines changed

src/components/MarkdownPage/MarkdownPage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ const MarkdownPage = ({
115115
href={`https://github.com/reactjs/pt-br.reactjs.org/tree/master/${
116116
markdownRemark.fields.path
117117
}`}>
118-
Edit this page
118+
Edite esta página
119119
</a>
120120
</div>
121121
)}

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>Página Não Encontrada</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>Nós não pudemos encontrar o que você está buscando.</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+
Por favor, contate o dono do site que o redirecionou para a URL
30+
original e avise-o sobre o link quebrado.
3131
</p>
3232
</div>
3333
</div>

src/pages/acknowledgements.html.js

Lines changed: 21 additions & 21 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>Agradecimentos</Header>
2323
<TitleAndMetaTags
2424
ogUrl={`${urlRoot}/acknowledgements.html`}
25-
title="React - Acknowledgements"
25+
title="React - Agradecimentos"
2626
/>
2727

2828
<div css={sharedStyles.markdown}>
29-
<p>We'd like to thank all of our contributors:</p>
29+
<p>Nós gostaríamos de agradecer a todos os nossos contribuintes:</p>
3030

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

47-
<p>In addition, we're grateful to</p>
47+
<p>Além disso, somos gratos a</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> por
51+
nos permitir usar o nome{' '}
52+
<a href="https://www.npmjs.com/package/react">react</a>
53+
no npm.
5454
</li>
5555
<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.
56+
<a href="https://christopheraue.net/">Christopher Aue</a> por
57+
nos permitir usar o domínio{' '}
58+
<a href="https://reactjs.com/">reactjs.com</a> e a conta
59+
<a href="https://twitter.com/reactjs">@reactjs</a>
60+
no Twitter.
6161
</li>
6262
<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.
63+
<a href="https://github.com/ProjectMoon">ProjectMoon</a> por nos
64+
permitir usar o nome{' '}
65+
<a href="https://www.npmjs.com/package/flux">flux</a>
66+
no npm.
6767
</li>
6868
<li>
69-
Shane Anderson for allowing us to use the{' '}
70-
<a href="https://github.com/react">react</a> org on GitHub.
69+
Shane Anderson por nos permitir usar a organização{' '}
70+
<a href="https://github.com/react">react</a> no GitHub.
7171
</li>
7272
<li>
7373
<a href="https://github.com/voronianski">Dmitri Voronianski</a>{' '}
74-
for letting us use the{' '}
74+
por nos permitir usar o esquema de cores{' '}
7575
<a href="https://labs.voronianski.com/oceanic-next-color-scheme/">
7676
Oceanic Next
7777
</a>{' '}
78-
color scheme on this website.
78+
neste website.
7979
</li>
8080
</ul>
8181
</div>

src/pages/blog/all.html.js

Lines changed: 2 additions & 2 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>Todas as Publicações</Header>
3232
<TitleAndMetaTags
3333
ogUrl={`${urlRoot}/blog/all.html`}
34-
title="React - All Posts"
34+
title="React - Todas as Publicações"
3535
/>
3636
<ul
3737
css={{

src/pages/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Home extends Component {
3232
});
3333
},
3434
error => {
35-
console.error('Babel failed to load.');
35+
console.error('Falha ao carregar o Babel.');
3636
},
3737
);
3838
}
@@ -50,7 +50,7 @@ class Home extends Component {
5050
return (
5151
<Layout location={location}>
5252
<TitleAndMetaTags
53-
title="React &ndash; Uma biblioteca JavaScript para criar interfaces de usuário"
53+
title="React &ndash; uma biblioteca JavaScript para criar interfaces de usuário"
5454
ogUrl={createOgUrl('index.html')}
5555
/>
5656
<div css={{width: '100%'}}>

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+
Esta ferramenta foi removida pois o JSXTransformer foi
28+
depreciado.
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+
Nós recomendamos usar outra ferramenta como o{' '}
33+
<a href="https://babeljs.io/repl/">Babel REPL</a>.
3434
</p>
3535
</div>
3636
</div>

src/pages/languages.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,29 +46,29 @@ const Languages = ({location}: Props) => (
4646
<Container>
4747
<div css={sharedStyles.articleLayout.container}>
4848
<div css={sharedStyles.articleLayout.content}>
49-
<Header>Languages</Header>
50-
<TitleAndMetaTags title="React - Languages" />
49+
<Header>Idiomas</Header>
50+
<TitleAndMetaTags title="React - Idiomas" />
5151

5252
<div css={sharedStyles.markdown}>
5353
<p>
54-
The React documentation is available in the following languages:
54+
A documentação do React está disponível nos seguintes idiomas:
5555
</p>
5656

5757
<LanguagesGrid languages={complete} />
5858

59-
<h2>In Progress</h2>
59+
<h2>Em processo de tradução</h2>
6060
<LanguagesGrid languages={partial} />
6161

62-
<h2>Needs Contributors</h2>
62+
<h2>Precisando de contribuintes</h2>
6363
<LanguagesGrid languages={incomplete} />
6464

6565
<p>
66-
Don't see your language above?{' '}
66+
Não está vendo o seu idioma acima?{' '}
6767
<a
6868
href="https://github.com/reactjs/reactjs.org-translation#reactjsorg-translation"
6969
target="_blank"
7070
rel="noopener">
71-
Let us know
71+
Nos avise
7272
</a>
7373
.
7474
</p>
@@ -149,7 +149,7 @@ const Language = ({code, name, status, translatedName}) => {
149149
href={`https://github.com/reactjs/${prefix}reactjs.org/`}
150150
target="_blank"
151151
rel="noopener">
152-
Contribute
152+
Contribua
153153
</a>
154154
</div>
155155
</li>

src/pages/versions.js

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,24 +24,23 @@ const Versions = ({location}: Props) => (
2424
<Container>
2525
<div css={sharedStyles.articleLayout.container}>
2626
<div css={sharedStyles.articleLayout.content}>
27-
<Header>React Versions</Header>
28-
<TitleAndMetaTags title="React - Versions" />
27+
<Header>Versões do React</Header>
28+
<TitleAndMetaTags title="React - Versões" />
2929
<div css={sharedStyles.markdown}>
3030
<p>
31-
A complete release history for React is available{' '}
31+
O histórico completo de lançamentos do React está disponível{' '}
3232
<a
3333
href="https://github.com/facebook/react/releases"
3434
target="_blank"
3535
rel="noopener">
36-
on GitHub
36+
no GitHub
3737
</a>
38-
.<br />
39-
Documentation for recent releases can also be found below.
38+
.<br />A documentação mais recente pode ser encontrada abaixo.
4039
</p>
4140
<p>
42-
See our FAQ for information about{' '}
41+
Veja nosso FAQ para se informar sobre{' '}
4342
<a href="/docs/faq-versioning.html">
44-
our versioning policy and commitment to stability
43+
nossa política de versionamento e compromisso com estabilidade
4544
</a>
4645
.
4746
</p>
@@ -57,7 +56,7 @@ const Versions = ({location}: Props) => (
5756
{version.path && (
5857
<li>
5958
<a href={version.path} rel="nofollow">
60-
Documentation
59+
Documentação
6160
</a>
6261
</li>
6362
)}

src/templates/blog.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const toSectionList = allMarkdownRemark => [
2020
}))
2121
.concat({
2222
id: '/blog/all.html',
23-
title: 'All posts ...',
23+
title: 'Todas as publicações ...',
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+
Não foi redirecionado automaticamente?
4949
<br />
5050
<br />
51-
<input style={primaryStyle} type="submit" value="Click here" />
51+
<input style={primaryStyle} type="submit" value="Clique aqui" />
5252
</p>
5353
</form>
5454
</Container>

0 commit comments

Comments
 (0)