chore(i18n,curriculum): update translations (#43332)

This commit is contained in:
camperbot
2021-08-31 09:47:25 -07:00
committed by GitHub
parent 61b390d075
commit 374876325e
62 changed files with 232 additions and 238 deletions

View File

@ -28,7 +28,7 @@ var ourStr = "I come first. " + "I come second.";
字符串 `I come first. I come second.` 将显示在控制台中。
# --instructions--
使用 `+` 操作符连接字符串`This is the start.``This is the end.` 赋值给 `myStr`
字符串 `This is the start.``This is the end.` 通过 `+` 运算符创建 `myStr`。 确保在两个字符串之间包含一个空格
# --hints--

View File

@ -24,7 +24,7 @@ ourStr += "I come second.";
# --instructions--
使用 `+=` 操作符,多行合并字符串 `This is the first sentence.``This is the second sentence.` ,并赋值给 `myStr`像示例那样使用 `+=` 操作符。 先把第一个字符串赋值给 `myStr`,然后拼接第二个字符串。
使用 `+=` 操作符,多行合并字符串 `This is the first sentence.``This is the second sentence.` ,并赋值给 `myStr`参照示例中显示的方式使用 `+=` 操作符,并确保在两个字符串之间包含一个空格。 先把第一个字符串赋值给 `myStr`,然后拼接第二个字符串。
# --hints--

View File

@ -28,7 +28,7 @@ dashedName: escape-sequences-in-strings
你需要使用转义字符正确地插入特殊字符。 确保间距与上面文本一致,并且单词或转义字符之间没有空格。
**注意:** `SecondLine` 是因为键入了转义字符(而不是空格),所以在那个位置
**注意:**`SecondLine` 前面的空白是制表符,而不是空格
# --hints--