Es.javascript.info Save

Spanish translation of javascript.info site.

Project README

Bienvenidos nuevos contribuidores

Tutorial moderno de JavaScript en Español

Novedades diciembre 2021: 

¡¡ 90% !! (https://javascript.info/translate) solo 5 de los 50+ repos llegamos al tope. 

Y aún hay formas de colaborar:

* Traducción:
  Solo 1 artículo pendientes, tomado en setiembre. 

* Actualización: 
  SIN pendientes... Pueden ir a mejorar el repo inglés si quieren :)

* Revisión de PR abiertos, o PR nuevos sobre artículos online: 
  Todos pueden revisar. 
  Se puede editar el texto con una sugerencia precisa o pueden dejar un issue o comentario github.
  typos, gramática, fluidez, glosario, tecnicismos, bugs y conceptos técnicos. Todo amerita corrección. 
  Las líneas modificadas con commit cuentan como contribución... 
  ... y mejoran el karma.

Abajo se les dan las instrucciones para comenzar a contribuir. Recuerden que al seleccionar un artículo, deberán traducir todo su contenido, incluidos los tasks y soluciones. No deben hacer PR si no está todo el artículo seleccionado traducido, haciendo esto, nos ayudarán a hacer mejores y más rápidas las revisiones.

También aconsejamos cuidar la ortografía, lo que incluye no olvidar los acentos en las traducciones.

Les recordamos también, que para cada traducción, deberán crear una nueva rama en su fork, ya que la rama master deberá estar siempre limpia. Un artículo = nueva rama.

Hemos acordado un glosario para la consistencia de las traducciones, por favor, revíselo. Glosario

Si desea hacer seguimiento al trabajo realizado en este repositorio, saber más acerca de como contribuir, o presentarte al equipo, le invitamos a que se una a nuestro servidor: Discord

Acceda a https://javascript.info/translate para más información.

Como contribuir

1. Ingresar a la siguiente página: es.javascript.info

Buscar un artículo de la lista que no esté asignado a un usuario.

Por ejemplo:

Type Conversions (@tikoflano) #57

Este artículo ya fue solicitado por el usuario @tikoflano y está en proceso de traducción o revisión.

2. Solicitar un artículo

Antes de comenzar con la traducción del artículo deben realizar un comentario con el nombre exacto del artículo que deseas traducir.

Recomendamos copiar y pegar el nombre del artículo para ayudar a nuestro bot reconocerlo y asignartelo a tu usuario.

3. Hacer el fork

Una vez que nuestro bot te haya asignado el artículo (lo verás con tu nombre de usuario) te pedimos que realices el fork del repositorio javascript-tutorial/es.javascript.info

alt text

Estamos trabajando en actualizar el repositorio y no todos los artículos están al día con la versión más reciente, por eso te pedimos que tomes como guía el artículo en el repositorio original (https://github.com/javascript-tutorial/en.javascript.info).

En conclusión, el repositorio en Español debe quedar igual que el del Inglés, si faltan carpetas o archivos, debes crearlos.

4. Traducir el artículo

En este momento ya deberías haber realizado el fork y estar trabajando en tu propio repositorio:

image

Comienza a editar el artículo haciendo click en el botón "Edit":

alt text

Si tienes dudas con respecto a la terminología, te recomendamos consultar MDN (https://developer.mozilla.org/es/docs/Web/JavaScript). MDN es un recurso muy valioso para nosotros ya que nos permite coordinar los términos que vamos a utilizar en nuestras traducciones.

Esto lo hacemos más que nada para "ponernos de acuerdo" acerca de la terminología que vamos a usar en todos los artículos.

Otro recurso para consultar es la sección Translation Tips (https://github.com/javascript-tutorial/es.javascript.info#translation-tips) aquí se establecen algunos lineamientos y convenciones básicas para realizar la traducción.

También tenemos un canal en Discord donde nos puedes consultar cualquier duda que tengas. (https://discord.gg/mcsMcHN)

Te esperamos en Discord! Bienvenido a la comunidad!


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

That's how you can contribute:

  • See the Spanish 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, article, or task has its folder.

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.

The folder has one of files:

  • 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)

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.

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;

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.

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.


Ilya Kantor @iliakan

Open Source Agenda is not affiliated with "Es.javascript.info" Project. README Source: javascript-tutorial/es.javascript.info
Stars
519
Open Issues
10
Last Commit
2 months ago

Open Source Agenda Badge

Open Source Agenda Rating