diff --git a/src/js/intl/strings.js b/src/js/intl/strings.js index dfbd9e32..e505f090 100644 --- a/src/js/intl/strings.js +++ b/src/js/intl/strings.js @@ -8,7 +8,7 @@ exports.strings = { /////////////////////////////////////////////////////////////////////////// 'finish-dialog-next': { '__desc__': 'One of the lines in the next level dialog', - 'en_US': 'Would you like to move onto *"{nextLevel}"*, the next level?', + 'en_US': 'Would you like to move on to *"{nextLevel}"*, the next level?', 'zh_CN': '要不前进到下一关 *“{nextLevel}”*?' }, /////////////////////////////////////////////////////////////////////////// @@ -310,7 +310,7 @@ exports.strings = { /////////////////////////////////////////////////////////////////////////// 'already-solved': { '__desc__': 'When you play in a level that is already solved', - 'en_US': 'You have alreaady solved this level, try other levels with "levels" or go back to sandbox with "sandbox"', + 'en_US': 'You have already solved this level, try other levels with "levels" or go back to sandbox with "sandbox"', 'zh_CN': '你已经解决了本关,输入 "levels" 尝试其他关卡,或者输入 "sandbox" 回到沙盒中' }, /////////////////////////////////////////////////////////////////////////// diff --git a/src/levels/rampup/1.js b/src/levels/rampup/1.js index bff9df5b..a2b5a612 100644 --- a/src/levels/rampup/1.js +++ b/src/levels/rampup/1.js @@ -79,7 +79,7 @@ exports.level = { "type": "ModalAlert", "options": { "markdowns": [ - "To complete this level, let's detach HEAD to the commit that `bugFix` is pointing to.", + "To complete this level, let's detach HEAD from `bugFix` and attach it to the commit instead.", "", "Specify this commit by its hash. The hash for each commit is displayed on the circle that represents the commit." ] diff --git a/src/levels/rampup/2.js b/src/levels/rampup/2.js index 4c592591..4be16adf 100644 --- a/src/levels/rampup/2.js +++ b/src/levels/rampup/2.js @@ -35,7 +35,7 @@ exports.level = { "", "Relative commits are powerful, but we will introduce two simple ones here:", "", - "* Moving upwards once at a time with `^`", + "* Moving upwards one commit at a time with `^`", "* Moving upwards a number of times with `~`" ] } diff --git a/src/levels/rampup/4.js b/src/levels/rampup/4.js index d8a6482e..dfe95b90 100644 --- a/src/levels/rampup/4.js +++ b/src/levels/rampup/4.js @@ -9,7 +9,7 @@ exports.level = { "zh_CN": "Git 里的撤销改变" }, "hint": { - "en_US": "", + "en_US": "Notice that revert and reset take different arguments.", "fr_FR": "", "zh_CN": "", "ko": "" @@ -53,7 +53,7 @@ exports.level = { "beforeMarkdowns": [ "## Git Revert", "", - "While reseting works great for local branches on your own machine, it's method of \"rewriting history\" doesn't work for remote branches that others are using.", + "While reseting works great for local branches on your own machine, its method of \"rewriting history\" doesn't work for remote branches that others are using.", "", "In order to reverse changes and *share* those reversed changes with others, we need to use `git revert`. Let's see it in action" ], @@ -72,7 +72,7 @@ exports.level = { "markdowns": [ "To complete this level, reverse the two most recent commits on both `local` and `pushed`.", "", - "Keep in mind that `pushed` is a remote branch and `local` is a local branch -- that should help you chose your methods." + "Keep in mind that `pushed` is a remote branch and `local` is a local branch -- that should help you choose your methods." ] } }