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

This commit is contained in:
camperbot
2021-08-26 21:51:26 -07:00
committed by GitHub
parent ef6604f69e
commit f9736fffa1
7 changed files with 62 additions and 37 deletions

View File

@ -28,7 +28,7 @@ var ourStr = "I come first. " + "I come second.";
A string `I come first. I come second.` seria exibida no console.
# --instructions--
Crie `myStr` a partir das strings `This is the start.` e `This is the end.` usando o operador `+`.
Crie `myStr` a partir das strings `This is the start.` e `This is the end.` usando o operador `+`. Não se esqueça de incluir um espaço entre as duas strings.
# --hints--

View File

@ -24,7 +24,7 @@ ourStr += "I come second.";
# --instructions--
Crie `myStr` em várias linhas concatenando essas duas strings: `This is the first sentence.` e `This is the second sentence.` usando o operador `+=`. Use o operador `+=` de modo semelhante a como aparece no exemplo. Comece atribuindo o primeiro texto para `myStr`, e então adicione o segundo texto.
Crie `myStr` em várias linhas concatenando essas duas strings: `This is the first sentence.` e `This is the second sentence.` usando o operador `+=`. Use o operador `+=` de modo semelhante a como ele é mostrado no exemplo e certifique-se de incluir um espaço entre as duas strings. Comece atribuindo o primeiro texto para `myStr`, e então adicione o segundo texto.
# --hints--