mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-07-13 21:15:35 +08:00
feat(curriculum): Add A1 Spanish The First Ten Numbers Blocks (#64018)
This commit is contained in:
parent
005af24bdd
commit
e746e5ff24
@ -1,59 +0,0 @@
|
||||
---
|
||||
id: 691b65744b1299cf5cba3bdc
|
||||
title: "Dialogue 1: I'm Tom"
|
||||
challengeType: 21
|
||||
dashedName: dialogue-1-im-tom
|
||||
lang: es
|
||||
---
|
||||
|
||||
# --description--
|
||||
|
||||
Watch the video below to understand the context of the upcoming lessons.
|
||||
|
||||
# --assignment--
|
||||
|
||||
Watch the video.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "chaos.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "David",
|
||||
"position": {"x":50,"y":80,"z":8},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "1.1-1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 5.7,
|
||||
"finishTimestamp": 6.48
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "David",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "David",
|
||||
"startTime": 1,
|
||||
"finishTime": 0.78,
|
||||
"dialogue": {
|
||||
"text": "I'm Tom.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Tom",
|
||||
"opacity": 0,
|
||||
"startTime": 1.28
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@ -0,0 +1,152 @@
|
||||
---
|
||||
id: 691dd85d8f84be17adbac86e
|
||||
title: Task 1
|
||||
challengeType: 24
|
||||
dashedName: task-1
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Julieta: Cero, Uno, Dos, Tres, Cuatro, Cinco, Seis, Siete, Ocho, Nueve -->
|
||||
|
||||
# --description--
|
||||
|
||||
**Welcome to the world of numbers in Spanish!**
|
||||
|
||||
Two important words in this context are `número` ("number") and its plural form, `números` ("numbers").
|
||||
|
||||
You'll start by learning the numbers from 0 to 9.
|
||||
|
||||
Listen to their pronunciations and try to repeat them until you feel more comfortable with their sounds. We'll cover them individually in the following tasks.
|
||||
|
||||
# --assignment--
|
||||
|
||||
I've listened to the audio and practiced how to pronounce these numbers.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company1-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_spanish_fundamentals_numbers_0_9.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 0.58,
|
||||
"finishTimestamp": 20.98
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.67,
|
||||
"dialogue": {
|
||||
"text": "Cero",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 3.5,
|
||||
"finishTime": 3.95,
|
||||
"dialogue": {
|
||||
"text": "Uno",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 5.48,
|
||||
"finishTime": 6.12,
|
||||
"dialogue": {
|
||||
"text": "Dos",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 7.51,
|
||||
"finishTime": 8.41,
|
||||
"dialogue": {
|
||||
"text": "Tres",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 10.18,
|
||||
"finishTime": 10.79,
|
||||
"dialogue": {
|
||||
"text": "Cuatro",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 12.35,
|
||||
"finishTime": 13.1,
|
||||
"dialogue": {
|
||||
"text": "Cinco",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 14.4,
|
||||
"finishTime": 15.17,
|
||||
"dialogue": {
|
||||
"text": "Seis",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 16.61,
|
||||
"finishTime": 17.35,
|
||||
"dialogue": {
|
||||
"text": "Siete",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 18.75,
|
||||
"finishTime": 19.35,
|
||||
"dialogue": {
|
||||
"text": "Ocho",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 20.78,
|
||||
"finishTime": 21.4,
|
||||
"dialogue": {
|
||||
"text": "Nueve",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 0,
|
||||
"startTime": 21.9
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@ -0,0 +1,81 @@
|
||||
---
|
||||
id: 691de4643cfa17239f3f63dc
|
||||
title: Task 2
|
||||
challengeType: 22
|
||||
dashedName: task-2
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Julieta: Cero -->
|
||||
|
||||
# --description--
|
||||
|
||||
In Spanish, the number 0 is called `cero`.
|
||||
|
||||
Practice this number's pronunciation until you feel more comfortable with its sound.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Write this number in Spanish below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`BLANK`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Cero`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 0 in Spanish.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company1-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_spanish_fundamentals_numbers_0_9.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 0.58,
|
||||
"finishTimestamp": 1.25
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.67,
|
||||
"dialogue": {
|
||||
"text": "Cero",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 0,
|
||||
"startTime": 2.17
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@ -0,0 +1,87 @@
|
||||
---
|
||||
id: 691e0644af6d3a35040b3cfd
|
||||
title: Task 3
|
||||
challengeType: 22
|
||||
dashedName: task-3
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Julieta: Uno -->
|
||||
|
||||
# --description--
|
||||
|
||||
In Spanish, the number 1 is called `uno`.
|
||||
|
||||
It's quite unique because it changes based on the gender of the noun that comes after it.
|
||||
|
||||
- For masculine nouns, it shortens to `un`, like in `un libro` ("a book").
|
||||
|
||||
- For feminine nouns, it changes to `una`, like in `una pizza` ("a pizza").
|
||||
|
||||
Practice this number's pronunciation until you feel more comfortable with its sound.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Write this number in Spanish below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`BLANK`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Uno`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 1 in Spanish.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company1-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_spanish_fundamentals_numbers_0_9.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 3.08,
|
||||
"finishTimestamp": 3.53
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.45,
|
||||
"dialogue": {
|
||||
"text": "Uno",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 0,
|
||||
"startTime": 1.95
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@ -0,0 +1,81 @@
|
||||
---
|
||||
id: 691e087cf197283819e6a63d
|
||||
title: Task 4
|
||||
challengeType: 22
|
||||
dashedName: task-4
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Julieta: Dos -->
|
||||
|
||||
# --description--
|
||||
|
||||
In Spanish, the number 2 is called `dos`.
|
||||
|
||||
Practice this number's pronunciation until you feel more comfortable with its sound.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Write this number in Spanish below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`BLANK`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Dos`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 2 in Spanish.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company1-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_spanish_fundamentals_numbers_0_9.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 5.06,
|
||||
"finishTimestamp": 5.7
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.64,
|
||||
"dialogue": {
|
||||
"text": "Dos",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 0,
|
||||
"startTime": 2.14
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@ -0,0 +1,81 @@
|
||||
---
|
||||
id: 691e0ac57367e53acf30751f
|
||||
title: Task 5
|
||||
challengeType: 22
|
||||
dashedName: task-5
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Julieta: Tres -->
|
||||
|
||||
# --description--
|
||||
|
||||
The number 3 is called `tres` in Spanish.
|
||||
|
||||
Practice this number's pronunciation until you feel more comfortable with its sound.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Write this number in Spanish below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`BLANK`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Tres`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 3 in Spanish.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company1-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_spanish_fundamentals_numbers_0_9.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 7.09,
|
||||
"finishTimestamp": 7.99
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.9,
|
||||
"dialogue": {
|
||||
"text": "Tres",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 0,
|
||||
"startTime": 2.4
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@ -0,0 +1,81 @@
|
||||
---
|
||||
id: 691e0c17d551d93dba095daa
|
||||
title: Task 6
|
||||
challengeType: 22
|
||||
dashedName: task-6
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Julieta: Cuatro -->
|
||||
|
||||
# --description--
|
||||
|
||||
The number 4 is called `cuatro` in Spanish.
|
||||
|
||||
Practice this number's pronunciation until you feel more comfortable with its sound.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Write this number in Spanish below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`BLANK`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Cuatro`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 4 in Spanish.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company1-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_spanish_fundamentals_numbers_0_9.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 9.76,
|
||||
"finishTimestamp": 10.37
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.61,
|
||||
"dialogue": {
|
||||
"text": "Cuatro",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 0,
|
||||
"startTime": 2.11
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@ -0,0 +1,81 @@
|
||||
---
|
||||
id: 691e0d81718641411ba24e0c
|
||||
title: Task 7
|
||||
challengeType: 22
|
||||
dashedName: task-7
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Julieta: Cinco -->
|
||||
|
||||
# --description--
|
||||
|
||||
The number 5 is called `cinco` in Spanish.
|
||||
|
||||
Practice this number's pronunciation until you feel more comfortable with its sound.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Write this number in Spanish below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`BLANK`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Cinco`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 5 in Spanish.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company1-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_spanish_fundamentals_numbers_0_9.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 11.93,
|
||||
"finishTimestamp": 12.68
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.75,
|
||||
"dialogue": {
|
||||
"text": "Cinco",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 0,
|
||||
"startTime": 2.25
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@ -0,0 +1,81 @@
|
||||
---
|
||||
id: 691e1152c55f46443b285022
|
||||
title: Task 8
|
||||
challengeType: 22
|
||||
dashedName: task-8
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Julieta: Seis -->
|
||||
|
||||
# --description--
|
||||
|
||||
The number 6 is called `seis` in Spanish.
|
||||
|
||||
Practice this number's pronunciation until you feel more comfortable with its sound.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Write this number in Spanish below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`BLANK`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Seis`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 6 in Spanish.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company1-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_spanish_fundamentals_numbers_0_9.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 13.98,
|
||||
"finishTimestamp": 14.75
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.77,
|
||||
"dialogue": {
|
||||
"text": "Seis",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 0,
|
||||
"startTime": 2.27
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@ -0,0 +1,81 @@
|
||||
---
|
||||
id: 691e13e13f0d4946618340fd
|
||||
title: Task 9
|
||||
challengeType: 22
|
||||
dashedName: task-9
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Julieta: Siete -->
|
||||
|
||||
# --description--
|
||||
|
||||
The number 7 is called `siete` in Spanish.
|
||||
|
||||
Practice this number's pronunciation until you feel more comfortable with its sound.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Write this number in Spanish below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`BLANK`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Siete`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 7 in Spanish.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company1-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_spanish_fundamentals_numbers_0_9.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 16.19,
|
||||
"finishTimestamp": 16.93
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.74,
|
||||
"dialogue": {
|
||||
"text": "Siete",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 0,
|
||||
"startTime": 2.24
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@ -0,0 +1,81 @@
|
||||
---
|
||||
id: 691e15ba76672548922802b2
|
||||
title: Task 10
|
||||
challengeType: 22
|
||||
dashedName: task-10
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Julieta: Ocho -->
|
||||
|
||||
# --description--
|
||||
|
||||
The number 8 is called `ocho` in Spanish.
|
||||
|
||||
Practice this number's pronunciation until you feel more comfortable with its sound.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Write this number in Spanish below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`BLANK`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Ocho`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 8 in Spanish.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company1-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_spanish_fundamentals_numbers_0_9.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 18.33,
|
||||
"finishTimestamp": 18.93
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.6,
|
||||
"dialogue": {
|
||||
"text": "Ocho",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 0,
|
||||
"startTime": 2.1
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@ -0,0 +1,81 @@
|
||||
---
|
||||
id: 691e16648483544a25ffc6c6
|
||||
title: Task 11
|
||||
challengeType: 22
|
||||
dashedName: task-11
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Julieta: Nueve -->
|
||||
|
||||
# --description--
|
||||
|
||||
The number 9 is called `nueve` in Spanish.
|
||||
|
||||
Practice this number's pronunciation until you feel more comfortable with its sound.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Write this number in Spanish below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`BLANK`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Nueve`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 9 in Spanish.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company1-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_spanish_fundamentals_numbers_0_9.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 20.36,
|
||||
"finishTimestamp": 20.98
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.62,
|
||||
"dialogue": {
|
||||
"text": "Nueve",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 0,
|
||||
"startTime": 2.12
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@ -1,59 +0,0 @@
|
||||
---
|
||||
id: 691b669df9d00bd1bc30c7fc
|
||||
title: "Dialogue 1: I'm Tom"
|
||||
challengeType: 21
|
||||
dashedName: dialogue-1-im-tom
|
||||
lang: es
|
||||
---
|
||||
|
||||
# --description--
|
||||
|
||||
Watch the video below to understand the context of the upcoming lessons.
|
||||
|
||||
# --assignment--
|
||||
|
||||
Watch the video.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "chaos.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "David",
|
||||
"position": {"x":50,"y":80,"z":8},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "1.1-1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 5.7,
|
||||
"finishTimestamp": 6.48
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "David",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "David",
|
||||
"startTime": 1,
|
||||
"finishTime": 0.78,
|
||||
"dialogue": {
|
||||
"text": "I'm Tom.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Tom",
|
||||
"opacity": 0,
|
||||
"startTime": 1.28
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@ -0,0 +1,107 @@
|
||||
---
|
||||
id: 691e2602b9559564dc8883b4
|
||||
title: Task 1
|
||||
challengeType: 19
|
||||
dashedName: task-1
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Julieta: Dos -->
|
||||
|
||||
# --description--
|
||||
|
||||
Let's practice what you've learned so far. Julieta is pronouncing a number.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What number do you hear in the audio?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Uno`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Julieta does not mention the number `uno`.
|
||||
|
||||
---
|
||||
|
||||
`Dos`
|
||||
|
||||
---
|
||||
|
||||
`Tres`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Julieta does not mention the number `tres`.
|
||||
|
||||
---
|
||||
|
||||
`Cero`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Julieta does not mention the number `cero`.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
2
|
||||
|
||||
# --explanation--
|
||||
|
||||
Julieta mentions the number `dos` (2).
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company1-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_spanish_fundamentals_numbers_0_9.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 5.06,
|
||||
"finishTimestamp": 5.7
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.64,
|
||||
"dialogue": {
|
||||
"text": "Dos",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 0,
|
||||
"startTime": 2.14
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@ -0,0 +1,107 @@
|
||||
---
|
||||
id: 691e2804e0eda3682d6da6da
|
||||
title: Task 2
|
||||
challengeType: 19
|
||||
dashedName: task-2
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Julieta: Cuatro -->
|
||||
|
||||
# --description--
|
||||
|
||||
Julieta is pronouncing a number.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What number do you hear in the audio?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Dos`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Julieta does not mention the number `dos`.
|
||||
|
||||
---
|
||||
|
||||
`Cinco`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Julieta does not mention the number `cinco`.
|
||||
|
||||
---
|
||||
|
||||
`Cuatro`
|
||||
|
||||
---
|
||||
|
||||
`Nueve`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Julieta does not mention the number `nueve`.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
3
|
||||
|
||||
# --explanation--
|
||||
|
||||
Julieta mentions the number `cuatro` (4).
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company1-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_spanish_fundamentals_numbers_0_9.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 9.76,
|
||||
"finishTimestamp": 10.37
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.61,
|
||||
"dialogue": {
|
||||
"text": "Cuatro",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 0,
|
||||
"startTime": 2.11
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@ -0,0 +1,101 @@
|
||||
---
|
||||
id: 691e3a8551b50974a59d93ae
|
||||
title: Task 3
|
||||
challengeType: 22
|
||||
dashedName: task-3
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Julieta: Cuatro, Dos, Cero -->
|
||||
|
||||
# --description--
|
||||
|
||||
In this audio, Julieta mentions a sequence of three numbers.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Complete the sequence of numbers based on the audio.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`Cuatro - BLANK - Cero`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Dos`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 2 in Spanish.
|
||||
|
||||
# --explanation--
|
||||
|
||||
Julieta mentions this sequence of numbers: `Cuatro - Dos - Cero`.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company1-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_spanish_fundamentals_numbers_mixed.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 0.61,
|
||||
"finishTimestamp": 3.99
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.7,
|
||||
"dialogue": {
|
||||
"text": "Cuatro",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 2.35,
|
||||
"finishTime": 3.02,
|
||||
"dialogue": {
|
||||
"text": "Dos",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 3.71,
|
||||
"finishTime": 4.38,
|
||||
"dialogue": {
|
||||
"text": "Cero",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 0,
|
||||
"startTime": 4.88
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@ -0,0 +1,57 @@
|
||||
---
|
||||
id: 691e3d57d902a278189ea352
|
||||
title: Task 4
|
||||
challengeType: 19
|
||||
dashedName: task-4
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- NO AUDIO -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
This task doesn't have audio. Read the question below and select the correct answer.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
Which option contains the numbers in **ascending** order?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Cero - Uno - Dos`
|
||||
|
||||
---
|
||||
|
||||
`Tres - Dos - Uno`
|
||||
|
||||
### --feedback--
|
||||
|
||||
These numbers are in descending order.
|
||||
|
||||
---
|
||||
|
||||
`Cinco - Seis - Cuatro`
|
||||
|
||||
### --feedback--
|
||||
|
||||
These numbers are not in ascending order. They are `5 - 6 - 4`.
|
||||
|
||||
---
|
||||
|
||||
`Nueve - Ocho - Siete`
|
||||
|
||||
### --feedback--
|
||||
|
||||
These numbers are in descending order.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
1
|
||||
|
||||
# --explanation--
|
||||
|
||||
The question asks for ascending order, which means going from the smallest number to the largest number.
|
||||
|
||||
Therefore, the correct option is `Cero - Uno - Dos`, which corresponds to `0 - 1 - 2`.
|
||||
@ -0,0 +1,107 @@
|
||||
---
|
||||
id: 691f1d842d52c8142d0c67bd
|
||||
title: Task 5
|
||||
challengeType: 19
|
||||
dashedName: task-5
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Julieta: Nueve -->
|
||||
|
||||
# --description--
|
||||
|
||||
Julieta is practicing how to pronounce a number in Spanish.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What number do you hear in the audio?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Ocho`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Julieta does not mention the number `ocho`.
|
||||
|
||||
---
|
||||
|
||||
`Cero`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Julieta does not mention the number `cero`.
|
||||
|
||||
---
|
||||
|
||||
`Tres`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Julieta does not mention the number `tres`.
|
||||
|
||||
---
|
||||
|
||||
`Nueve`
|
||||
|
||||
## --video-solution--
|
||||
|
||||
4
|
||||
|
||||
# --explanation--
|
||||
|
||||
Julieta mentions the number `nueve` (9).
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company1-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_spanish_fundamentals_numbers_0_9.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 20.36,
|
||||
"finishTimestamp": 20.98
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.62,
|
||||
"dialogue": {
|
||||
"text": "Nueve",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 0,
|
||||
"startTime": 2.12
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@ -0,0 +1,101 @@
|
||||
---
|
||||
id: 691f20b1c95dc123fa0d7493
|
||||
title: Task 6
|
||||
challengeType: 22
|
||||
dashedName: task-6
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Julieta: Siete, Nueve, Tres -->
|
||||
|
||||
# --description--
|
||||
|
||||
Julieta is practicing how to pronounce three numbers.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Complete the sequence of numbers based on what you hear in the audio.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`Siete - Nueve - BLANK`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Tres`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the last number in the sequence. It's the number 3 in Spanish.
|
||||
|
||||
# --explanation--
|
||||
|
||||
Julieta mentions this sequence of numbers: `Siete - Nueve - Tres`.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company1-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_spanish_fundamentals_numbers_mixed.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 5.04,
|
||||
"finishTimestamp": 8.47
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.86,
|
||||
"dialogue": {
|
||||
"text": "Siete",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 2.38,
|
||||
"finishTime": 3.17,
|
||||
"dialogue": {
|
||||
"text": "Nueve",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 3.8,
|
||||
"finishTime": 4.43,
|
||||
"dialogue": {
|
||||
"text": "Tres",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 0,
|
||||
"startTime": 4.93
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@ -0,0 +1,101 @@
|
||||
---
|
||||
id: 691f218124e5d72585095275
|
||||
title: Task 7
|
||||
challengeType: 22
|
||||
dashedName: task-7
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Julieta: Ocho, Cero, Uno -->
|
||||
|
||||
# --description--
|
||||
|
||||
Julieta is practicing how to pronounce three numbers.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Complete the sequence of numbers based on what you hear in the audio.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`BLANK - Cero - Uno`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Ocho`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the first number in the sequence. It's the number 8 in Spanish.
|
||||
|
||||
# --explanation--
|
||||
|
||||
Julieta mentions this sequence of numbers: `Ocho - Cero - Uno`.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company1-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_spanish_fundamentals_numbers_mixed.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 9.46,
|
||||
"finishTimestamp": 12.7
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.65,
|
||||
"dialogue": {
|
||||
"text": "Ocho",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 2.17,
|
||||
"finishTime": 2.92,
|
||||
"dialogue": {
|
||||
"text": "Cero",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 3.68,
|
||||
"finishTime": 4.24,
|
||||
"dialogue": {
|
||||
"text": "Uno",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 0,
|
||||
"startTime": 4.74
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@ -0,0 +1,55 @@
|
||||
---
|
||||
id: 691f23988d2ffa28d909bd6e
|
||||
title: Task 8
|
||||
challengeType: 19
|
||||
dashedName: task-8
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- NO AUDIO -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
This task doesn't have audio. Read the question below and select the correct answer.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
Choose the option that **doesn't** match the number to its correct name.
|
||||
|
||||
## --answers--
|
||||
|
||||
`5 - Cinco`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This pair is correct. `Cinco` is the Spanish word for the number 5.
|
||||
|
||||
---
|
||||
|
||||
`3 - Cuatro`
|
||||
|
||||
---
|
||||
|
||||
`8 - Ocho`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This pair is correct. `Ocho` is the Spanish word for the number 8.
|
||||
|
||||
---
|
||||
|
||||
`0 - Cero`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This pair is correct. `Cero` is the Spanish word for the number 0.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
2
|
||||
|
||||
# --explanation--
|
||||
|
||||
`3 - Cuatro` is the incorrect pair. The number 3 is called `tres` in Spanish, while `cuatro` is the Spanish name for the number 4.
|
||||
@ -0,0 +1,79 @@
|
||||
---
|
||||
id: 691f2524eb0b572be243cae8
|
||||
title: Task 9
|
||||
challengeType: 22
|
||||
dashedName: task-9
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Julieta: Siete -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Write the number that you hear in the audio below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`BLANK`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Siete`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 7.
|
||||
|
||||
# --explanation--
|
||||
|
||||
Julieta mentions the number `Siete` (7) in the audio.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company1-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_spanish_fundamentals_numbers_0_9.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 16.19,
|
||||
"finishTimestamp": 16.93
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.74,
|
||||
"dialogue": {
|
||||
"text": "Siete",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 0,
|
||||
"startTime": 2.24
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@ -0,0 +1,55 @@
|
||||
---
|
||||
id: 691f26b78da62c2e89657bfc
|
||||
title: Task 10
|
||||
challengeType: 19
|
||||
dashedName: task-10
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- NO AUDIO -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
This task doesn't have audio. Read the question below and select the correct answer.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
Select the option that matches these numbers to their correct names: **5 - 2 - 4**
|
||||
|
||||
## --answers--
|
||||
|
||||
`Uno - Dos - Cuatro`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This option starts with the number 1.
|
||||
|
||||
---
|
||||
|
||||
`Cinco - Dos - Cuatro`
|
||||
|
||||
---
|
||||
|
||||
`Nueve - Ocho - Seis`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This option has different numbers.
|
||||
|
||||
---
|
||||
|
||||
`Siete - Uno - Cero`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This option has different numbers.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
2
|
||||
|
||||
# --explanation--
|
||||
|
||||
The sequence of numbers is `5 - 2 - 4`. Their corresponding names are `Cinco - Dos - Cuatro`.
|
||||
@ -0,0 +1,109 @@
|
||||
---
|
||||
id: 691f27bbe3eead3076f3f49f
|
||||
title: Task 11
|
||||
challengeType: 22
|
||||
dashedName: task-11
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Julieta: Ocho, Seis, Cuatro -->
|
||||
|
||||
# --description--
|
||||
|
||||
Julieta is practicing how to pronounce three numbers.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the sentence below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`BLANK - Seis - BLANK`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Ocho`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 8 in Spanish.
|
||||
|
||||
---
|
||||
|
||||
`Cuatro`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 4 in Spanish.
|
||||
|
||||
# --explanation--
|
||||
|
||||
Julieta mentions this sequence of numbers: `Ocho - Seis - Cuatro`.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company1-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_spanish_fundamentals_numbers_mixed.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 13.81,
|
||||
"finishTimestamp": 17.07
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.71,
|
||||
"dialogue": {
|
||||
"text": "Ocho",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 2.19,
|
||||
"finishTime": 3.02,
|
||||
"dialogue": {
|
||||
"text": "Seis",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 3.64,
|
||||
"finishTime": 4.26,
|
||||
"dialogue": {
|
||||
"text": "Cuatro",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 0,
|
||||
"startTime": 4.76
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@ -0,0 +1,43 @@
|
||||
---
|
||||
id: 691f29714c5fad32a6b66688
|
||||
title: Task 12
|
||||
challengeType: 22
|
||||
dashedName: task-12
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- NO AUDIO -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
This task has no audio.
|
||||
|
||||
Complete this sequence of consecutive numbers in **ascending** order.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`BLANK - Siete - BLANK - Nueve`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Seis`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 6 in Spanish.
|
||||
|
||||
---
|
||||
|
||||
`Ocho`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 8 in Spanish.
|
||||
|
||||
# --explanation--
|
||||
|
||||
The sequence in ascending order is: `Seis - Siete - Ocho - Nueve`.
|
||||
|
||||
This corresponds to `6 - 7 - 8 - 9`.
|
||||
@ -0,0 +1,145 @@
|
||||
---
|
||||
id: 691f2b2f984f0f356b72f208
|
||||
title: Task 13
|
||||
challengeType: 22
|
||||
dashedName: task-13
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- NO AUDIO -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
This task has no audio.
|
||||
|
||||
To finish this practice block, you're going to review how to write all numbers from 0 to 9.
|
||||
|
||||
Complete the sequence by filling in the missing Spanish number words.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`0 = BLANK`
|
||||
|
||||
`1 = BLANK`
|
||||
|
||||
`2 = BLANK`
|
||||
|
||||
`3 = BLANK`
|
||||
|
||||
`4 = BLANK`
|
||||
|
||||
`5 = BLANK`
|
||||
|
||||
`6 = BLANK`
|
||||
|
||||
`7 = BLANK`
|
||||
|
||||
`8 = BLANK`
|
||||
|
||||
`9 = BLANK`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Cero`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 0.
|
||||
|
||||
---
|
||||
|
||||
`Uno`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 1.
|
||||
|
||||
---
|
||||
|
||||
`Dos`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 2.
|
||||
|
||||
---
|
||||
|
||||
`Tres`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 3.
|
||||
|
||||
---
|
||||
|
||||
`Cuatro`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 4.
|
||||
|
||||
---
|
||||
|
||||
`Cinco`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 5.
|
||||
|
||||
---
|
||||
|
||||
`Seis`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 6.
|
||||
|
||||
---
|
||||
|
||||
`Siete`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 7.
|
||||
|
||||
---
|
||||
|
||||
`Ocho`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 8.
|
||||
|
||||
---
|
||||
|
||||
`Nueve`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number 9.
|
||||
|
||||
# --explanation--
|
||||
|
||||
This task checks your knowledge of the first ten numbers in Spanish. These are the correct pairs.
|
||||
|
||||
**0** = `Cero`
|
||||
|
||||
**1** = `Uno`
|
||||
|
||||
**2** = `Dos`
|
||||
|
||||
**3** = `Tres`
|
||||
|
||||
**4** = `Cuatro`
|
||||
|
||||
**5** = `Cinco`
|
||||
|
||||
**6** = `Seis`
|
||||
|
||||
**7** = `Siete`
|
||||
|
||||
**8** = `Ocho`
|
||||
|
||||
**9** = `Nueve`
|
||||
@ -222,20 +222,20 @@ What letter corresponds to the name `efe`?
|
||||
|
||||
#### --text--
|
||||
|
||||
How many letters are in the Spanish alphabet?
|
||||
Choose the option that matches the numbers to their correct names.
|
||||
|
||||
#### --distractors--
|
||||
|
||||
17 letters
|
||||
`1 - Uno`, `5 - Cinco`, `6 - Ocho`, `0 - Nueve`
|
||||
|
||||
---
|
||||
|
||||
20 letters
|
||||
`3 - Tres`, `7 - Dos`, `2 - Cuatro`, `9 - Cero`
|
||||
|
||||
---
|
||||
|
||||
25 letters
|
||||
`0 - Cero`, `4 - Cuatro`, `6 - Seis`, `2 - Ocho`
|
||||
|
||||
#### --answer--
|
||||
|
||||
27 letters
|
||||
`6 - Seis`, `9 - Nueve`, `0 - Cero`, `2 - Dos`
|
||||
|
||||
@ -6,6 +6,8 @@ dashedName: spanish-alphabet-general-review
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- REVIEW -->
|
||||
|
||||
# --description--
|
||||
|
||||
It's time to review the Spanish alphabet and special characters.
|
||||
@ -58,6 +60,21 @@ Unlike English, where only the closing question mark (`?`) or exclamation point
|
||||
|
||||
The opening punctuation marks are helpful to anticipate the tone and structure of the sentence from the start.
|
||||
|
||||
## The First Ten Numbers
|
||||
|
||||
| Digit | Spanish | English |
|
||||
| :---: | :---: | :---: |
|
||||
| 0 | `Cero` | Zero |
|
||||
| 1 | `Uno` | One |
|
||||
| 2 | `Dos` | Two |
|
||||
| 3 | `Tres` | Three |
|
||||
| 4 | `Cuatro` | Four |
|
||||
| 5 | `Cinco` | Five |
|
||||
| 6 | `Seis` | Six |
|
||||
| 7 | `Siete` | Seven |
|
||||
| 8 | `Ocho` | Eight |
|
||||
| 9 | `Nueve` | Nine |
|
||||
|
||||
# --assignment--
|
||||
|
||||
I've read this review of the Spanish alphabet.
|
||||
I've read this review of Spanish fundamentals.
|
||||
|
||||
@ -6,6 +6,8 @@ dashedName: spanish-alphabet-pronunciation-review
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- REVIEW -->
|
||||
|
||||
# --description--
|
||||
|
||||
Review the pronunciation of the Spanish alphabet and practice repeating the sounds.
|
||||
|
||||
@ -0,0 +1,146 @@
|
||||
---
|
||||
id: 69206e4d7c0cfd1935d08ae4
|
||||
title: Spanish Numbers Pronunciation Review
|
||||
challengeType: 24
|
||||
dashedName: spanish-numbers-pronunciation-review
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- REVIEW -->
|
||||
|
||||
# --description--
|
||||
|
||||
Review the pronunciation of the numbers from 0 to 9 in Spanish and practice repeating their sounds.
|
||||
|
||||
# --assignment--
|
||||
|
||||
I've reviewed and practiced how to pronounce these numbers.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company1-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_spanish_fundamentals_numbers_0_9.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 0.58,
|
||||
"finishTimestamp": 20.98
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.67,
|
||||
"dialogue": {
|
||||
"text": "Cero",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 3.5,
|
||||
"finishTime": 3.95,
|
||||
"dialogue": {
|
||||
"text": "Uno",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 5.48,
|
||||
"finishTime": 6.12,
|
||||
"dialogue": {
|
||||
"text": "Dos",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 7.51,
|
||||
"finishTime": 8.41,
|
||||
"dialogue": {
|
||||
"text": "Tres",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 10.18,
|
||||
"finishTime": 10.79,
|
||||
"dialogue": {
|
||||
"text": "Cuatro",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 12.35,
|
||||
"finishTime": 13.1,
|
||||
"dialogue": {
|
||||
"text": "Cinco",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 14.4,
|
||||
"finishTime": 15.17,
|
||||
"dialogue": {
|
||||
"text": "Seis",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 16.61,
|
||||
"finishTime": 17.35,
|
||||
"dialogue": {
|
||||
"text": "Siete",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 18.75,
|
||||
"finishTime": 19.35,
|
||||
"dialogue": {
|
||||
"text": "Ocho",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"startTime": 20.78,
|
||||
"finishTime": 21.4,
|
||||
"dialogue": {
|
||||
"text": "Nueve",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Julieta",
|
||||
"opacity": 0,
|
||||
"startTime": 21.9
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@ -5,7 +5,17 @@
|
||||
"helpCategory": "Spanish Curriculum",
|
||||
"blockLayout": "challenge-grid",
|
||||
"challengeOrder": [
|
||||
{ "id": "691b65744b1299cf5cba3bdc", "title": "Dialogue 1: I'm Tom" }
|
||||
{ "id": "691dd85d8f84be17adbac86e", "title": "Task 1" },
|
||||
{ "id": "691de4643cfa17239f3f63dc", "title": "Task 2" },
|
||||
{ "id": "691e0644af6d3a35040b3cfd", "title": "Task 3" },
|
||||
{ "id": "691e087cf197283819e6a63d", "title": "Task 4" },
|
||||
{ "id": "691e0ac57367e53acf30751f", "title": "Task 5" },
|
||||
{ "id": "691e0c17d551d93dba095daa", "title": "Task 6" },
|
||||
{ "id": "691e0d81718641411ba24e0c", "title": "Task 7" },
|
||||
{ "id": "691e1152c55f46443b285022", "title": "Task 8" },
|
||||
{ "id": "691e13e13f0d4946618340fd", "title": "Task 9" },
|
||||
{ "id": "691e15ba76672548922802b2", "title": "Task 10" },
|
||||
{ "id": "691e16648483544a25ffc6c6", "title": "Task 11" }
|
||||
],
|
||||
"blockLabel": "learn"
|
||||
}
|
||||
|
||||
@ -5,7 +5,19 @@
|
||||
"helpCategory": "Spanish Curriculum",
|
||||
"blockLayout": "challenge-grid",
|
||||
"challengeOrder": [
|
||||
{ "id": "691b669df9d00bd1bc30c7fc", "title": "Dialogue 1: I'm Tom" }
|
||||
{ "id": "691e2602b9559564dc8883b4", "title": "Task 1" },
|
||||
{ "id": "691e2804e0eda3682d6da6da", "title": "Task 2" },
|
||||
{ "id": "691e3a8551b50974a59d93ae", "title": "Task 3" },
|
||||
{ "id": "691e3d57d902a278189ea352", "title": "Task 4" },
|
||||
{ "id": "691f1d842d52c8142d0c67bd", "title": "Task 5" },
|
||||
{ "id": "691f20b1c95dc123fa0d7493", "title": "Task 6" },
|
||||
{ "id": "691f218124e5d72585095275", "title": "Task 7" },
|
||||
{ "id": "691f23988d2ffa28d909bd6e", "title": "Task 8" },
|
||||
{ "id": "691f2524eb0b572be243cae8", "title": "Task 9" },
|
||||
{ "id": "691f26b78da62c2e89657bfc", "title": "Task 10" },
|
||||
{ "id": "691f27bbe3eead3076f3f49f", "title": "Task 11" },
|
||||
{ "id": "691f29714c5fad32a6b66688", "title": "Task 12" },
|
||||
{ "id": "691f2b2f984f0f356b72f208", "title": "Task 13" }
|
||||
],
|
||||
"blockLabel": "practice"
|
||||
}
|
||||
|
||||
@ -12,7 +12,8 @@
|
||||
{
|
||||
"id": "68f245ba618d531136b99a19",
|
||||
"title": "Spanish Alphabet Pronunciation Review"
|
||||
}
|
||||
},
|
||||
{ "id": "69206e4d7c0cfd1935d08ae4", "title": "Task 1" }
|
||||
],
|
||||
"blockLabel": "review"
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user