# The Modern JavaScript Tutorial in Test <<<<<<< HEAD This repository hosts the translation of in Test. ======= This repository hosts the English content of the Modern JavaScript Tutorial, published in [https://javascript.info](https://javascript.info). >>>>>>> e1a3f634a47c119cf1ec7420c49fc0fc7172c0b5 **That's how you can contribute:** - See the [Test Translate Progress](https://github.com/javascript-tutorial/test.javascript.info/issues/26) 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. - The comment should only contain 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. <<<<<<< HEAD If you're a maintainer, you can just translate and push, but please check articles as translated in the [issue](https://github.com/javascript-tutorial/test.javascript.info/issues/26), for others to see that. ======= See for the details. >>>>>>> b300836f00536a5eb9a716ad2cbb6b8fe97c25af If you're just a newcomer, without write access to the repo, please kindly allow maintainers to review and merge your translation. If something's unclear, feel free to ask, make an issue [here](https://github.com/javascript-tutorial/test.javascript.info/issues/new) or in the [English 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!** 🎉 Thank you! Your name and the contribution size will appear in the "About project" page when the translation gets published. <<<<<<< HEAD If you'd like to join as a maintainer, write us at . ======= **You can edit the text in any editor.** The tutorial uses 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 . >>>>>>> e1a3f634a47c119cf1ec7420c49fc0fc7172c0b5 P.S. The full list of languages can be found at . ## 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: <<<<<<< HEAD - `index.md` for a section, - `article.md` for an article, - `task.md` for a task formulation (+`solution.md` with the solution text if any). ======= - `index.md` stands for a chapter - `article.md` stands for an article - `task.md` stands for a task (solution must be provided in `solution.md` file as well) >>>>>>> e1a3f634a47c119cf1ec7420c49fc0fc7172c0b5 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 a good glossary, hopefully there's one for your language already. - If there's no dictionary, look for translations in manuals, such as [MDN](https://developer.mozilla.org/en-US/). ### 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: ```js // Example const text = "Hello, world"; document.querySelector('.hello').innerHTML = text; ``` ✅ DO (translate comment): ```js // Ejemplo const text = 'Hola mundo'; document.querySelector('.hello').innerHTML = text; ``` ❌ DON'T (translate class): ```js // Ejemplo const text = 'Hola mundo'; // ".hello" is a class // DO NOT TRANSLATE document.querySelector('.hola').innerHTML = text; ``` ### External Links 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 `---`: ```md importance: 5 <<<<<<< HEAD --- <<<<<<< HEAD ... ``` Please don't translate "importance" (and other top metadata). ### Anchors Some headers have `[#anchor]` at the end, e.g. ```md ## Spread operator [#spread-operator] ``` Please don't translate or remove the `[#...]` part, it's for URL anchors. ## Running locally You can run the tutorial server locally to see how the translation looks. The server and install instructions are at . ======= ======= --- >>>>>>> e1a3f634a47c119cf1ec7420c49fc0fc7172c0b5 ♥ Ilya Kantor @iliakan >>>>>>> b300836f00536a5eb9a716ad2cbb6b8fe97c25af