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

This commit is contained in:
camperbot
2021-08-27 09:24:25 -07:00
committed by GitHub
parent 313b2baa20
commit fd7e0f8568
8 changed files with 670 additions and 46 deletions

View File

@ -28,7 +28,7 @@ var ourStr = "I come first. " + "I come second.";
La stringa `I come first. I come second.` sarebbe visualizzata nella console.
# --instructions--
Costruisci `myStr` dalle stringhe `This is the start.` e `This is the end.` usando l'operatore `+`.
Costruisci `myStr` dalle stringhe `This is the start.` e `This is the end.` usando l'operatore `+`. Assicurati di includere uno spazio tra le due stringhe.
# --hints--

View File

@ -24,7 +24,7 @@ ourStr += "I come second.";
# --instructions--
Costruisci `myStr` su diverse righe concatenando queste due stringhe: `This is the first sentence.` e `This is the second sentence.` usando l'operatore `+=`. Usa l'operatore `+=` in modo simile a quello mostrato nell'esempio. Inizia assegnando la prima stringa a `myStr`, quindi aggiungi la seconda.
Costruisci `myStr` su diverse righe concatenando queste due stringhe: `This is the first sentence.` e `This is the second sentence.` usando l'operatore `+=`. Usa l'operatore `+=` in modo simile a quello mostrato nell'esempio e assicurati di includere uno spazio tra le due stringhe. Inizia assegnando la prima stringa a `myStr`, quindi aggiungi la seconda.
# --hints--