Skip to content

Commit c90df5b

Browse files
committed
chore: updates the readme by translating repository information
1 parent 0b207b5 commit c90df5b

File tree

2 files changed

+33
-32
lines changed

2 files changed

+33
-32
lines changed

AUTHORING.md

+15-14
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,38 @@
11

2-
# Authoring
2+
# Autoria
33

4-
This describes important stuff about authoring new articles of the tutorial.
4+
Isso descreve coisas importantes sobre a autoria de novos artigos do tutorial.
55

6-
## Internal links
6+
## Links internos
77

8-
All tutorial links should start from the root, not including the domain.
8+
Todos os links do tutorial devem começar da raiz, não incluindo o domínio.
99

10-
OK:
10+
Tudo bem:
1111

1212
```md
13-
We'll cover that in the chapter [about functions](/function-basics)
13+
Abordaremos isso no capítulo [sobre funções](/function-basics)
1414
```
1515

16-
Not ok:
16+
Não está bem:
1717

1818
```md
19-
We'll cover that in the chapter [about functions](https://javascript.info/function-basics)
19+
Abordaremos isso no capítulo [sobre funções](https://javascript.info/function-basics)
2020
```
2121

22-
Also, to reference a chapter, there's a special "info:" scheme, like this:
22+
Além disso, para registrar referência a um capítulo, há um esquema especial "info:", como este:
2323

2424
```md
25-
We'll cover that in the chapter <info:function-basics>.
25+
Abordaremos isso no capítulo <info:function-basics>.
2626
```
2727

28-
Becomes:
28+
Torna-se:
29+
2930
```html
30-
We'll cover that in the chapter <a href="/function-basics">Function basics</a>.
31+
Abordaremos isso no capítulo <a href="/function-basics">Funções básicas</a>.
3132
```
3233

33-
The title is auto-inserted from the referenced article. That has the benefit of keeping the right title if the article gets renamed.
34+
O título é inserido automaticamente a partir do artigo referenciado. Isso tem a vantagem de manter o título correto se o artigo for renomeado.
3435

3536
## TODO
3637

37-
Ask @iliakan to for more details.
38+
Pergunte a @iliakan para mais detalhes.

README.md

+18-18
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
11
# The Modern JavaScript Tutorial
22

3-
This repository hosts the English content of the Modern JavaScript Tutorial, published at [https://javascript.info](https://javascript.info).
3+
Este repositório hospeda o conteúdo em inglês do Modern JavaScript Tutorial, publicado em [https://javascript.info](https://javascript.info).
44

5-
## Translations
5+
## Traduções
66

7-
We'd like to make the tutorial available in many languages. Please help us to translate.
7+
Gostaríamos de disponibilizar o tutorial em vários idiomas. Por favor, ajude-nos a traduzir.
88

9-
See <https://javascript.info/translate> for the details.
9+
Veja <https://javascript.info/translate> para mais detalhes.
1010

11-
## Contributions
11+
## Contribuições
1212

13-
We'd also like to collaborate on the tutorial with other people.
13+
Também gostaríamos de colaborar no tutorial com outras pessoas.
1414

15-
Something's wrong? A topic is missing? Explain it to people, add it as PR 👏
15+
Algo está errado? Falta um tópico? Explique para as pessoas, adicione como PR 👏
1616

17-
**You can edit the text in any editor.** The tutorial uses an enhanced "markdown" format, easy to grasp. And if you want to see how it looks on-site, there's a server to run the tutorial locally at <https://github.com/javascript-tutorial/server>.
17+
**Você pode editar o texto em qualquer editor.** O tutorial usa um formato "markdown" aprimorado, fácil de entender. E se você quiser ver como fica no local, há um servidor para executar o tutorial localmente em <https://github.com/javascript-tutorial/server>.
1818

19-
The list of contributors is available at <https://javascript.info/about#contributors>.
19+
A lista de contribuidores está disponível em <https://javascript.info/about#contributors>.
2020

21-
## Structure
21+
## Estrutura
2222

23-
Every chapter, article, or task has its folder.
23+
Cada capítulo, artigo ou tarefa tem sua pasta.
2424

25-
The folder is named like `N-url`, where `N` is a number for the sorting purposes and `URL` is the URL part with the title of the material.
25+
A pasta é nomeada como `N-url`, onde `N` é um número para fins de classificação e `URL` é a parte da URL com o título do material.
2626

27-
The type of the material is defined by the file inside the folder:
27+
O tipo do material é definido pelo arquivo dentro da pasta:
2828

29-
- `index.md` stands for a chapter
30-
- `article.md` stands for an article
31-
- `task.md` stands for a task (solution must be provided in `solution.md` file as well)
29+
- `index.md` significa um capítulo
30+
- `article.md` significa um artigo
31+
- `task.md` representa uma tarefa (a solução também deve ser fornecida no arquivo `solution.md`)
3232

33-
Each of these files starts from the `# Main header`.
33+
Cada um desses arquivos começa no `# Cabeçalho principal`.
3434

35-
It's very easy to add something new.
35+
É muito fácil adicionar algo novo.
3636

3737
---
3838

0 commit comments

Comments
 (0)