mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-08-29 06:18:24 +02:00
# Conflicts: # src/levels/mixed/describe.js # src/levels/rampup/detachedHead.js
This commit is contained in:
commit
d5b317e806
41 changed files with 3666 additions and 1371 deletions
|
@ -49,6 +49,16 @@ exports.dialog = {
|
|||
]
|
||||
}
|
||||
}],
|
||||
'es_ES': [{
|
||||
type: 'ModalAlert',
|
||||
options: {
|
||||
markdowns: [
|
||||
'## ¿Estás seguro de que quieres ver la solución?',
|
||||
'',
|
||||
'¡Creo en ti! ¡Ánimo!'
|
||||
]
|
||||
}
|
||||
}],
|
||||
'pt_BR': [{
|
||||
type: 'ModalAlert',
|
||||
options: {
|
||||
|
|
|
@ -94,6 +94,25 @@ exports.dialog = {
|
|||
]
|
||||
}
|
||||
}],
|
||||
'es_ES': [{
|
||||
type: 'ModalAlert',
|
||||
options: {
|
||||
markdowns: [
|
||||
'## ¡Bienvenido al constructor de niveles!',
|
||||
'',
|
||||
'Estos son los pasos principales:',
|
||||
'',
|
||||
' * Prepara el entorno inicial usando comandos de Git',
|
||||
' * Define el árbol inicial con ```define start```',
|
||||
' * Introduce la serie de comandos de git que representan la solución óptima',
|
||||
' * Crea el árbol objetivo con ```define goal```. El objetivo también determina la solución',
|
||||
' * Opcionalmente, crea pistas con ```define hint```',
|
||||
' * Dale un nombre con ```define name```',
|
||||
' * Opcionalmente, crea un mensaje inicial con ```edit dialog```',
|
||||
' * ¡Introduce el comando ```finish``` para obtener tu nivel en formato JSON!'
|
||||
]
|
||||
}
|
||||
}],
|
||||
'pt_BR': [{
|
||||
type: 'ModalAlert',
|
||||
options: {
|
||||
|
|
|
@ -67,6 +67,17 @@ exports.dialog = {
|
|||
]
|
||||
}
|
||||
}],
|
||||
'es_ES': [{
|
||||
type: 'ModalAlert',
|
||||
options: {
|
||||
markdowns: [
|
||||
'## ¡Buen trabajo!',
|
||||
'',
|
||||
'Resolviste el nivel en *{numCommands}* comandos; ',
|
||||
'nuestra mejor solución usa {best}.'
|
||||
]
|
||||
}
|
||||
}],
|
||||
'pt_BR': [{
|
||||
type: 'ModalAlert',
|
||||
options: {
|
||||
|
|
|
@ -78,6 +78,62 @@ exports.dialog = {
|
|||
]
|
||||
}
|
||||
}],
|
||||
'es_ES': [{
|
||||
type: 'ModalAlert',
|
||||
options: {
|
||||
markdowns: [
|
||||
'## ¡Bienvenid@ a Learn Git Branching!',
|
||||
'',
|
||||
'Esta aplicación está diseñada para ayudar a los principantes ',
|
||||
'a manejar los poderosos conceptos que hay detrás del trabajo ',
|
||||
'con ramas (branches) en Git. Esperamos que disfrutes la aplicación ',
|
||||
'y tal vez incluso ¡que aprendas algo! ',
|
||||
'',
|
||||
'# ¡Demo!',
|
||||
'',
|
||||
'Si no viste la demo, mírala en esta dirección:',
|
||||
'',
|
||||
'[https://pcottle.github.io/learnGitBranching/?demo](https://pcottle.github.io/learnGitBranching/?demo)',
|
||||
'',
|
||||
'¿Harto de este mensaje? Agrégale `?NODEMO` a la URL para dejar de verlo, como en este link:',
|
||||
'',
|
||||
'[https://pcottle.github.io/learnGitBranching/?NODEMO](?NODEMO)'
|
||||
]
|
||||
}
|
||||
}, {
|
||||
type: 'ModalAlert',
|
||||
options: {
|
||||
markdowns: [
|
||||
'## Comandos de Git',
|
||||
'',
|
||||
'Tienes una gran variedad de comandos de git en este sandbox. Estos incluyen: ',
|
||||
'',
|
||||
' * commit',
|
||||
' * branch',
|
||||
' * checkout',
|
||||
' * cherry-pick',
|
||||
' * reset',
|
||||
' * revert',
|
||||
' * rebase',
|
||||
' * merge'
|
||||
]
|
||||
}
|
||||
}, {
|
||||
type: 'ModalAlert',
|
||||
options: {
|
||||
markdowns: [
|
||||
'## ¡Comparte!',
|
||||
'',
|
||||
'Comparte tus árboles con tus amigos usando `export tree` e `import tree`',
|
||||
'',
|
||||
'¿Tienes una buena lección que compartir? Prueba construyendo un nivel con `build level` o prueba el nivel de un amigo con `import level`',
|
||||
'',
|
||||
'Para ver todos los comandos disponibles, escribe `show commands`. Hay algunas joyitas como `undo` y `reset`',
|
||||
'',
|
||||
'Por ahora, empecemos con los `levels`...'
|
||||
]
|
||||
}
|
||||
}],
|
||||
'pt_BR': [{
|
||||
type: 'ModalAlert',
|
||||
options: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue