chore(i18n,learn): processed translations (#41378)

* chore(i8n,learn): processed translations

* Update curriculum/challenges/chinese/01-responsive-web-design/applied-visual-design/use-the-u-tag-to-underline-text.md

Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>

Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
Co-authored-by: Nicholas Carrigan (he/him) <nhcarrigan@gmail.com>
Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>
This commit is contained in:
camperbot
2021-03-05 08:43:24 -07:00
committed by GitHub
parent ae79525493
commit 5075f14248
120 changed files with 975 additions and 971 deletions

View File

@ -1,6 +1,6 @@
---
id: cf1111c1c11feddfaeb7bdef
title: Nest one Array within Another Array
title: Anida un arreglo dentro de otro arreglo
challengeType: 1
videoUrl: 'https://scrimba.com/c/crZQZf8'
forumTopicId: 18247
@ -9,21 +9,21 @@ dashedName: nest-one-array-within-another-array
# --description--
You can also nest arrays within other arrays, like below:
También puedes anidar arreglos dentro de otros arreglos, como a continuación:
```js
[["Bulls", 23], ["White Sox", 45]]
```
This is also called a <dfn>multi-dimensional array</dfn>.
Esto también es conocido como <dfn>arreglo multidimensional</dfn>.
# --instructions--
Create a nested array called `myArray`.
Crea un arreglo anidado llamado `myArray`.
# --hints--
`myArray` should have at least one array nested within another array.
`myArray` debe tener al menos un arreglo anidado dentro de otro arreglo.
```js
assert(Array.isArray(myArray) && myArray.some(Array.isArray));

View File

@ -1,6 +1,6 @@
---
id: 56533eb9ac21ba0edf2244bc
title: Shopping List
title: Lista de compras
challengeType: 1
videoUrl: 'https://scrimba.com/c/c9MEKHZ'
forumTopicId: 18280
@ -9,35 +9,35 @@ dashedName: shopping-list
# --description--
Create a shopping list in the variable `myList`. The list should be a multi-dimensional array containing several sub-arrays.
Crea una lista de compras en la variable `myList`. La lista debe ser un arreglo multidimensional que contenga varios sub-arreglos.
The first element in each sub-array should contain a string with the name of the item. The second element should be a number representing the quantity i.e.
El primer elemento de cada sub-arreglo debe contener una cadena con el nombre del artículo. El segundo elemento debe ser un número que represente la cantidad, por ejemplo.
`["Chocolate Bar", 15]`
There should be at least 5 sub-arrays in the list.
Debe haber al menos 5 sub-arreglos en la lista.
# --hints--
`myList` should be an array.
`myList` debe ser un arreglo.
```js
assert(isArray);
```
The first elements in each of your sub-arrays should all be strings.
Los primeros elementos de cada sub-arreglo deben ser cadenas.
```js
assert(hasString);
```
The second elements in each of your sub-arrays should all be numbers.
Los segundos elementos de cada sub-arreglo deben ser números.
```js
assert(hasNumber);
```
You should have at least 5 items in your list.
Debes tener al menos 5 elementos en tu lista.
```js
assert(count > 4);