No description
Find a file
2021-06-14 00:52:35 +03:00
1-js minor fixes 2021-06-14 00:52:35 +03:00
2-ui Merge branch 'master' into patch-1 2020-09-23 18:44:06 +08:00
3-frames-and-windows minor fixes 2020-09-12 19:48:22 +03:00
4-binary mdn links 2020-09-21 15:21:57 -03:00
5-network One more step please 2020-09-22 15:03:47 -03:00
6-data-storage Merge pull request #2126 from peachesontour/patch-13 2020-09-22 14:20:55 +03:00
7-animation Update task.md 2020-05-16 00:19:22 -03:00
8-web-components mdn links 2020-09-21 15:21:57 -03:00
9-regular-expressions Remove Edge and Firefox warning 2020-08-21 11:23:42 +10:00
script renovations 2015-02-21 14:58:02 +03:00
.gitattributes minor 2019-07-29 17:02:31 +03:00
.gitignore minor 2015-03-15 15:29:15 +03:00
AUTHORING.md translate 2019-04-14 17:09:15 +03:00
changes.sketch renovations 2015-04-05 23:59:54 +03:00
css.md css 2019-06-14 09:25:50 +03:00
figures.sketch WIP 2020-10-29 21:46:52 +03:00
LICENSE.md Update LICENSE.md 2019-07-16 13:19:28 +03:00
README.md readme 2020-09-27 13:18:00 +03:00
todo.md minor 2019-04-10 10:53:34 +03:00

The Modern JavaScript Tutorial in v2

This repository hosts the translation of https://javascript.info in v2.

That's how you can contribute:

  • See the v2 Translate Progress issue.
  • Choose an unchecked article you'd like to translate.
  • Add a comment with the article title to the issue, e.g. An Introduction to JavaScript.
    • Our bot will mark it in the issue, for everyone to know that you're translating it.
    • Your comment should contain only the title.
  • Fork the repository, translate and send a PR when done.
    • PR title should match article title, the bot will write it's number into the issue.

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.

Let others know what you're translating, in message boards or chats in your language. Invite them to join!

🎉 Thank you!

Your name and the contribution size will appear in the "About project" page when the translation gets published.

P.S. The full list of languages can be found at https://javascript.info/translate.

Structure

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.

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.

`ReadableStream` objects allows to read data chunk-by-chunk.
`ReadableStream` ("flujo legible") objeto ... 

Text in Code Blocks

  • Translate comments.
  • Translate user-messages and example strings.
  • Don't translate variables, classes, identifiers.
  • Ensure that the code works after the translation :)

Example:

// Example
const text = "Hello, world";
document.querySelector('.hello').innerHTML = text;

DO (translate comment):

// Ejemplo
const text = 'Hola mundo';
document.querySelector('.hello').innerHTML = text;

DON'T (translate class):

// Ejemplo
const text = 'Hola mundo';
// ".hello" is a class
// DO NOT TRANSLATE
document.querySelector('.hola').innerHTML = text;

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.

In that case it's probably easier not to translate such text. See more about translating images later.

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:

[JavaScript](https://en.wikipedia.org/wiki/JavaScript) is a programming language.

OK (en -> es):

[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 ---:

importance: 5

---
...

Please don't translate "importance" (and other top metadata).

Anchors

Some headers have [#anchor] at the end, e.g.

## Spread operator [#spread-operator]

Please don't translate or remove the [#...] part, it's for URL anchors.

Images

Most illustrations use SVG format, the text in there can be replaced with a translated variant.

The translated text is in images.yml file in the tutorial root.

The file format is YAML:

image.svg:        # image file
  "hello world":  # English phrase
    text: "Hola mundo"  # translation
    position: "centre"  # "center" or "right", if needed to center or right-align the translation

Running locally

You can run the tutorial server locally to see how the translation looks.

The server and install instructions are at https://github.com/javascript-tutorial/server.