Please kindly allow maintainers to review and merge or request changes in your translation.
If maintainers do not respond, or if you'd like to become a maintainer, write us at the [main repo](https://github.com/javascript-tutorial/en.javascript.info/issues/new).
**Let others know what you're translating, in message boards or chats in your language. Invite them to join!**
Every chapter, an article or a task resides in its own folder.
The folder is named `N-url`, where `N`– is the number for sorting (articles are ordered), and `url` is the URL-slug on the site.
The folder has one of files:
-`index.md` for a section,
-`article.md` for an article,
-`task.md` for a task formulation (+`solution.md` with the solution text if any).
A file starts with the `# Title Header`, and then the text in Markdown-like format, editable in a simple text editor.
Additional resources and examples for the article or the task, are also in the same folder.
## Translation Tips
Please keep line breaks and paragraphs "as is": don't add newlines and don't remove existing ones. Makes it easy to merge future changes from the English version into the translation.
If you see that the English version can be improved – great, please send a PR to it.
### Terms
- Some specification terms are not to be translated, e.g. "Function Declaration" can be left "as is".
- For other terms like `resolved promise`, `slash`, `regexp`, and so on - look for a glossary, hopefully there's one for your language already. If not, look for translations in manuals, such as [MDN](https://developer.mozilla.org/en-US/).
### Terms with meaning
In English many terms have an obvious meaning. For a person who doesn't understand English, there's no such meaning.
Please keep that in mind, sometimes explanations or additional translations are needed, e.g.
```md
`ReadableStream` objects allows to read data chunk-by-chunk.
Please note, that sometimes code is followed by pictures, and if you translate text `Hello` -> `Hola` in the code, you need to translate text in picturess as well.
If an external link is to Wikipedia, e.g. `https://en.wikipedia.org/wiki/JavaScript`, and a version of that article exists in your language that is of decent quality, link to that version instead.
Example:
```md
[JavaScript](https://en.wikipedia.org/wiki/JavaScript) is a programming language.
```
✅ OK (en -> es):
```md
[JavaScript](https://es.wikipedia.org/wiki/JavaScript) es un lenguaje de programación.
```
For links to MDN, a partially translated version is ok.
If a linked article has no translated version, leave the link "as is".
### Metadata
Some files, usually tasks, have YAML metadata at the top, delimited by `---`: