mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-04-11 16:00:12 -04:00
feat(curriculum): Add A1 Spanish Module First Questions (#63672)
Co-authored-by: Nielda Karla <90112119+nieldakarla@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
f90905fbfe
commit
7fd3fc2f4e
@@ -1,59 +0,0 @@
|
||||
---
|
||||
id: 68dc7593a29e5c7621d873ee
|
||||
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,104 @@
|
||||
---
|
||||
id: 690e56ba74d1914de028d9a5
|
||||
title: Task 1
|
||||
challengeType: 19
|
||||
dashedName: task-1
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Ángela: Hola, buenas tardes. ¿Cómo te llamas? -->
|
||||
|
||||
# --description--
|
||||
|
||||
`¿Cómo te llamas?` is the polite and most common way to ask someone their name in Spanish.
|
||||
|
||||
It’s the direct equivalent of the question "What is your name?"
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
Is it true: Ángela is asking someone’s name.
|
||||
|
||||
## --answers--
|
||||
|
||||
True
|
||||
|
||||
---
|
||||
|
||||
False
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is true. Ángela is asking someone's name.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
1
|
||||
|
||||
# --explanation--
|
||||
|
||||
The phrase `¿Cómo te llamas?` means "What is your name?"
|
||||
|
||||
It's the most common way to ask someone their name in an informal setting (using the pronoun `tú`).
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 0.76,
|
||||
"finishTimestamp": 3.74
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.75,
|
||||
"dialogue": {
|
||||
"text": "Hola, buenas tardes.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 2.97,
|
||||
"finishTime": 3.98,
|
||||
"dialogue": {
|
||||
"text": "¿Cómo te llamas?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 4.48
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,108 @@
|
||||
---
|
||||
id: 690e5c1b0c20a951beb34d89
|
||||
title: Task 2
|
||||
challengeType: 22
|
||||
dashedName: task-2
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Ángela: Hola, buenas tardes. ¿Cómo te llamas? -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the sentence below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`Hola, buenas tardes. ¿BLANK BLANK BLANK?`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Cómo`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This question word translates to "How".
|
||||
|
||||
---
|
||||
|
||||
`te`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "you".
|
||||
|
||||
---
|
||||
|
||||
`llamas`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the conjugated verb used to ask someone their name.
|
||||
|
||||
# --explanation--
|
||||
|
||||
`¿Cómo te llamas?` is the most common way to ask someone's name in an informal context (using the pronoun `tú`).
|
||||
|
||||
It's equivalent to "What is your name?"
|
||||
|
||||
When the word `Cómo` is used to ask a question, it should have an accent mark in the first letter `o`.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 0.76,
|
||||
"finishTimestamp": 3.74
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.75,
|
||||
"dialogue": {
|
||||
"text": "Hola, buenas tardes.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 2.97,
|
||||
"finishTime": 3.98,
|
||||
"dialogue": {
|
||||
"text": "¿Cómo te llamas?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 4.48
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,113 @@
|
||||
---
|
||||
id: 690e5db95d4ade5410ae4aea
|
||||
title: Task 3
|
||||
challengeType: 19
|
||||
dashedName: task-3
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Sebastián: Mi nombre es Sebastián. -->
|
||||
|
||||
# --description--
|
||||
|
||||
`Mi nombre es` means "My name is".
|
||||
|
||||
**`Mi nombre es` + [name]** is a common and polite way to introduce yourself in Spanish.
|
||||
|
||||
This phrase uses the third-person singular of the verb `ser` ("to be"), which is `es` ("is").
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What is the speaker's name?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Nombre`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "name", but it's not a name.
|
||||
|
||||
---
|
||||
|
||||
`Sebastián`
|
||||
|
||||
---
|
||||
|
||||
`Mi`
|
||||
|
||||
### --feedback--
|
||||
|
||||
`Mi` means "my". It's not the speaker's name.
|
||||
|
||||
---
|
||||
|
||||
`Christopher`
|
||||
|
||||
### --feedback--
|
||||
|
||||
`Christopher` is not the speaker's name.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
2
|
||||
|
||||
# --explanation--
|
||||
|
||||
`Mi nombre es Sebastián` means "My name is Sebastián".
|
||||
|
||||
Therefore, the speaker's name is `Sebastián`.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 5.09,
|
||||
"finishTimestamp": 6.36
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.27,
|
||||
"dialogue": {
|
||||
"text": "Mi nombre es Sebastián.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 2.77
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,95 @@
|
||||
---
|
||||
id: 690e640d82be9a5b5539bab0
|
||||
title: Task 4
|
||||
challengeType: 22
|
||||
dashedName: task-4
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Sebastián: Mi nombre es Sebastián. -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the sentence below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`BLANK BLANK BLANK Sebastián.`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Mi`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "my".
|
||||
|
||||
---
|
||||
|
||||
`nombre`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "name".
|
||||
|
||||
---
|
||||
|
||||
`es`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the third-person singular form of the verb `ser` ("to be").
|
||||
|
||||
# --explanation--
|
||||
|
||||
The complete phrase is `Mi nombre es Sebastián`, which means "My name is Sebastián".
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 5.09,
|
||||
"finishTimestamp": 6.36
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.27,
|
||||
"dialogue": {
|
||||
"text": "Mi nombre es Sebastián.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 2.77
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,113 @@
|
||||
---
|
||||
id: 690e68d68dff8f607f651658
|
||||
title: Task 5
|
||||
challengeType: 19
|
||||
dashedName: task-5
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Sebastián: Me llaman Basti. -->
|
||||
|
||||
# --description--
|
||||
|
||||
The phrase **`Me llamo` + [name]** is the most common way to introduce yourself in Spanish.
|
||||
|
||||
It's a more informal way to say your name than `Mi nombre es...`
|
||||
|
||||
The form `Me llaman` is equivalent to "They call me". This is commonly used in Spanish to introduce a nickname or an informal name. For example:
|
||||
|
||||
`Me llaman Ni` - They call me Ni.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What is Sebastián's nickname?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Basti`
|
||||
|
||||
---
|
||||
|
||||
`Sebastián`
|
||||
|
||||
### --feedback--
|
||||
|
||||
`Sebastián` is the speaker's formal name.
|
||||
|
||||
---
|
||||
|
||||
`Federico`
|
||||
|
||||
### --feedback--
|
||||
|
||||
`Federico` is not the speaker's nickname.
|
||||
|
||||
---
|
||||
|
||||
`Jorge`
|
||||
|
||||
### --feedback--
|
||||
|
||||
`Jorge` is not the speaker's nickname.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
1
|
||||
|
||||
# --explanation--
|
||||
|
||||
Sebastián says `Me llaman Basti` ("They call me Basti"), so `Basti` is his nickname.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 6.78,
|
||||
"finishTimestamp": 7.92
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.14,
|
||||
"dialogue": {
|
||||
"text": "Me llaman Basti.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 2.64
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,87 @@
|
||||
---
|
||||
id: 690e6b63edc0e0658d8f1eba
|
||||
title: Task 6
|
||||
challengeType: 22
|
||||
dashedName: task-6
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Sebastián: Me llaman Basti. -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the sentence below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`BLANK BLANK Basti.`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Me`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the reflexive pronoun `me` ("to me").
|
||||
|
||||
---
|
||||
|
||||
`llaman`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is a conjugation of the verb `llamar` ("to call").
|
||||
|
||||
# --explanation--
|
||||
|
||||
The complete phrase is `Me llaman Basti`, which means "They call me Basti".
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 6.78,
|
||||
"finishTimestamp": 7.92
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.14,
|
||||
"dialogue": {
|
||||
"text": "Me llaman Basti.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 2.64
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,105 @@
|
||||
---
|
||||
id: 690e6d806191306870c924c1
|
||||
title: Task 8
|
||||
challengeType: 19
|
||||
dashedName: task-8
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Ángela: Me llamo Ángela. -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What is the speaker's name?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Me llamo`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This phrase means "My name is". It's not the actual name of the speaker.
|
||||
|
||||
---
|
||||
|
||||
`Ángela`
|
||||
|
||||
---
|
||||
|
||||
`Sebastián`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This name is not correct.
|
||||
|
||||
---
|
||||
|
||||
`Mi nombre es`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This means "My name is". It's not the speaker's name.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
2
|
||||
|
||||
# --explanation--
|
||||
|
||||
`Me llamo Ángela` means "My name is Ángela".
|
||||
|
||||
Therefore, `Ángela` is the speaker's name.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 9.58,
|
||||
"finishTimestamp": 10.84
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.26,
|
||||
"dialogue": {
|
||||
"text": "Me llamo Ángela.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 2.76
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,122 @@
|
||||
---
|
||||
id: 690e6ee180beed6aa929ee4d
|
||||
title: Task 10
|
||||
challengeType: 19
|
||||
dashedName: task-10
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Sebastián: Mucho gusto, Ángela. -->
|
||||
|
||||
# --description--
|
||||
|
||||
Now let's see how you can reply politely after someone introduces themselves.
|
||||
|
||||
Both `Mucho gusto` and `Encantada/Encantado` mean "Nice to meet you".
|
||||
|
||||
`Mucho gusto` is gender-neutral and can be used in most situations.
|
||||
|
||||
`Encantada/Encantado` can be more expressive and must agree with the speaker's gender.
|
||||
|
||||
| Form | Speaker's Gender | Meaning |
|
||||
| :--- | :--- | :--- |
|
||||
| `Encantado` | **Masculine** (`-o`) | Nice to meet you. |
|
||||
| `Encantada` | **Feminine** (`-a`) | Nice to meet you. |
|
||||
|
||||
Using either one of these phrases is important for being polite in Spanish introductions.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What does `Mucho gusto` most likely mean in this sentence?
|
||||
|
||||
## --answers--
|
||||
|
||||
Good afternoon
|
||||
|
||||
### --feedback--
|
||||
|
||||
This phrase is not a reply to an introduction.
|
||||
|
||||
---
|
||||
|
||||
Hello
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word is has a different purpose.
|
||||
|
||||
---
|
||||
|
||||
See you tomorrow
|
||||
|
||||
### --feedback--
|
||||
|
||||
This phrase is not a reply to an introduction.
|
||||
|
||||
---
|
||||
|
||||
Nice to meet you
|
||||
|
||||
## --video-solution--
|
||||
|
||||
4
|
||||
|
||||
# --explanation--
|
||||
|
||||
The phrase `Mucho gusto` means "Nice to meet you".
|
||||
|
||||
It's one of the most common phrases used to reply after someone has introduced themselves.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 12.77,
|
||||
"finishTimestamp": 13.95
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.18,
|
||||
"dialogue": {
|
||||
"text": "Mucho gusto, Ángela.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 2.68
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,111 @@
|
||||
---
|
||||
id: 690e7403d7c1a272295bb2b0
|
||||
title: Task 12
|
||||
challengeType: 19
|
||||
dashedName: task-12
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Sebastián: ¿De dónde eres? -->
|
||||
|
||||
# --description--
|
||||
|
||||
Now you will learn how to ask about someone's place of origin.
|
||||
|
||||
`¿De dónde eres?` is the standard, informal way to ask this in Spanish. It's equivalent to "Where are you from?"
|
||||
|
||||
Since origin is a permanent trait, the phrase has a conjugated form (`eres`) of the verb `ser` ("to be"), using the pronoun `tú` ("you").
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What is Sebastián asking Ángela?
|
||||
|
||||
## --answers--
|
||||
|
||||
Her current location.
|
||||
|
||||
### --feedback--
|
||||
|
||||
Sebastián is not asking about Ángela's location.
|
||||
|
||||
---
|
||||
|
||||
Where she is from.
|
||||
|
||||
---
|
||||
|
||||
Her profession.
|
||||
|
||||
### --feedback--
|
||||
|
||||
Sebastián is not asking about Ángela's profession.
|
||||
|
||||
---
|
||||
|
||||
Her name.
|
||||
|
||||
### --feedback--
|
||||
|
||||
Sebastian already knows Ángela's name.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
2
|
||||
|
||||
# --explanation--
|
||||
|
||||
Sebastián is asking Ángela `¿De dónde eres?` to know where she is from.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 14.27,
|
||||
"finishTimestamp": 15.32
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.05,
|
||||
"dialogue": {
|
||||
"text": "¿De dónde eres?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 2.55
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,117 @@
|
||||
---
|
||||
id: 690f5a015ec6842542a57d60
|
||||
title: Task 14
|
||||
challengeType: 19
|
||||
dashedName: task-14
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Ángela: Soy de El Salvador. -->
|
||||
|
||||
# --description--
|
||||
|
||||
The phrase **`Soy de` + [country]** is the most common way to say where you are from.
|
||||
|
||||
It's usually the direct answer to the question `¿De dónde eres?`.
|
||||
|
||||
This phrase is equivalent to saying "I am from + [country]".
|
||||
|
||||
The verb `ser` ("to be") is used in this phrase because origin is a permanent characteristic.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
Where is Ángela from?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Guatemala`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Ángela mentions a different country.
|
||||
|
||||
---
|
||||
|
||||
`El Salvador`
|
||||
|
||||
---
|
||||
|
||||
`México`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Ángela mentions a different country.
|
||||
|
||||
---
|
||||
|
||||
`Perú`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Ángela mentions a different country.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
2
|
||||
|
||||
# --explanation--
|
||||
|
||||
`Soy de El Salvador` means "I'm from El Salvador".
|
||||
|
||||
This is the direct answer to the question `¿De dónde eres?` ("Where are you from?").
|
||||
|
||||
Therefore, Ángela is from El Salvador.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 16.26,
|
||||
"finishTimestamp": 18.11
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.85,
|
||||
"dialogue": {
|
||||
"text": "Soy de El Salvador.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 3.35
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,123 @@
|
||||
---
|
||||
id: 690f5cb4a5bd682a05ab4242
|
||||
title: Task 16
|
||||
challengeType: 19
|
||||
dashedName: task-16
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Ángela: Soy salvadoreña. -->
|
||||
|
||||
# --description--
|
||||
|
||||
The phrase **`Soy` + [nationality]** is the most common way to say your nationality in Spanish. It is equivalent to "I am + [nationality]".
|
||||
|
||||
This phrase is used in introductions as the direct answer to the question `¿Cuál es tu nacionalidad?`, where `nacionalidad` means "nationality".
|
||||
|
||||
In Spanish, nationalities are not capitalized unless they are used at the beginning of a sentence. They must also agree in gender with the speaker. For example:
|
||||
|
||||
| Country | Nationality (Feminine) | Nationality (Masculine) |
|
||||
| :---: | :---: | :---: |
|
||||
| **`México`** | `mexicana` | `mexicano` |
|
||||
| **`Argentina`** | `argentina` | `argentino` |
|
||||
| **`Perú`** | `peruana` | `peruano` |
|
||||
| **`Uruguay`** | `uruguaya` | `uruguayo` |
|
||||
| **`El Salvador`** | `salvadoreña` | `salvadoreño` |
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What is Ángela's nationality?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Salvadoreño`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This form is correct for a male speaker. Since the speaker is Ángela (female), the feminine form should be used.
|
||||
|
||||
---
|
||||
|
||||
`Boliviana`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Ángela mentions a different nationality.
|
||||
|
||||
---
|
||||
|
||||
`Salvadoreña`
|
||||
|
||||
---
|
||||
|
||||
`Salvadoreñés`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Ángela mentions a different nationality.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
3
|
||||
|
||||
# --explanation--
|
||||
|
||||
Ángela says `Soy salvadoreña`.
|
||||
|
||||
The nationality of someone from El Salvador is `salvadoreño` (masculine form) or `salvadoreña` (feminine form).
|
||||
|
||||
Since Ángela is a female, she uses the feminine form of the nationality: `salvadoreña`.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 18.35,
|
||||
"finishTimestamp": 19.71
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.36,
|
||||
"dialogue": {
|
||||
"text": "Soy salvadoreña.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 2.86
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,87 @@
|
||||
---
|
||||
id: 690f61b1a2b78d305e825d13
|
||||
title: Task 18
|
||||
challengeType: 22
|
||||
dashedName: task-18
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Ángela: ¿Y vos? -->
|
||||
|
||||
# --description--
|
||||
|
||||
`¿Y vos?` is an alternative, informal way of returning a question to the original speaker.
|
||||
|
||||
It's equivalent to `¿Y tú?` ("And you?").
|
||||
|
||||
This is commonly used in Central America, in countries like El Salvador and Guatemala, and in countries from the Southern Cone, like Argentina and Uruguay.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the sentence below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`¿Y BLANK?`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`vos`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is a regional variation of `tú` ("you").
|
||||
|
||||
# --explanation--
|
||||
|
||||
`¿Y vos?` is a regional way to return the question. It's equivalent to "And you?".
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 19.85,
|
||||
"finishTimestamp": 20.47
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.62,
|
||||
"dialogue": {
|
||||
"text": "¿Y vos?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 2.12
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,89 @@
|
||||
---
|
||||
id: 690f66818d456538fbba06e4
|
||||
title: Task 19
|
||||
challengeType: 19
|
||||
dashedName: task-19
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Sebastián: Soy de Guatemala. -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
Is it true: Sebastián is from Costa Rica.
|
||||
|
||||
## --answers--
|
||||
|
||||
True
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is false. Sebastián mentions that he is from Guatemala.
|
||||
|
||||
---
|
||||
|
||||
False
|
||||
|
||||
## --video-solution--
|
||||
|
||||
2
|
||||
|
||||
# --explanation--
|
||||
|
||||
Sebastián says `Soy de Guatemala`, which means "I am from Guatemala".
|
||||
|
||||
Therefore, Sebastián is not from Costa Rica.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 21.59,
|
||||
"finishTimestamp": 22.7
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.11,
|
||||
"dialogue": {
|
||||
"text": "Soy de Guatemala.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 2.61
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,99 @@
|
||||
---
|
||||
id: 690f68686781213c9eac4b65
|
||||
title: Task 23
|
||||
challengeType: 19
|
||||
dashedName: task-23
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Ángela: ¿Cuántos años tienes? -->
|
||||
|
||||
# --description--
|
||||
|
||||
`¿Cuántos años tienes?` is the most common way to ask someone's age in Spanish.
|
||||
|
||||
It is equivalent to "How old are you?"
|
||||
|
||||
This phrase has a conjugation of the verb `tener` ("to have") because Spanish expresses age using possession.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
Is it true: Ángela is asking Sebastián about his age.
|
||||
|
||||
## --answers--
|
||||
|
||||
True
|
||||
|
||||
---
|
||||
|
||||
False
|
||||
|
||||
### --feedback--
|
||||
|
||||
`¿Cuántos años tienes?` is the common way to ask someone's age in Spanish.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
1
|
||||
|
||||
# --explanation--
|
||||
|
||||
Ángela is asking Sebastián `¿Cuántos años tienes?`.
|
||||
|
||||
This question is equivalent to "How old are you?".
|
||||
|
||||
Therefore, this is true because Ángela is asking Sebastián about his age.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 25.92,
|
||||
"finishTimestamp": 27.32
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.4,
|
||||
"dialogue": {
|
||||
"text": "¿Cuántos años tienes?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 2.9
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,93 @@
|
||||
---
|
||||
id: 690f6ad7e1192b412653189c
|
||||
title: Task 24
|
||||
challengeType: 22
|
||||
dashedName: task-24
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Ángela: ¿Cuántos años tienes? -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the sentence below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`¿BLANK años BLANK?`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Cuántos`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This question word means "how many".
|
||||
|
||||
---
|
||||
|
||||
`tienes`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the `tú` conjugation of the verb `tener` ("to have").
|
||||
|
||||
# --explanation--
|
||||
|
||||
The question is `¿Cuántos años tienes?`.
|
||||
|
||||
`Cuántos` means "How many" and `años` means "years".
|
||||
|
||||
The word `Cuántos` should have an accent mark in the letter `a` when it's part of a question.
|
||||
|
||||
It's important to remember that questions in Spanish start with an opening question mark (`¿`) and end with a closing question mark (`?`).
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 25.92,
|
||||
"finishTimestamp": 27.32
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.4,
|
||||
"dialogue": {
|
||||
"text": "¿Cuántos años tienes?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 2.9
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,124 @@
|
||||
---
|
||||
id: 690f6d6c27b78644af22a833
|
||||
title: Task 25
|
||||
challengeType: 19
|
||||
dashedName: task-25
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Sebastián: Tengo veintiún años. ¿Y tú? -->
|
||||
|
||||
# --description--
|
||||
|
||||
The phrase **`Tengo` + [age]+ `años`** is the most common way to say your age in Spanish. It's equivalent to "I am [age] years old"
|
||||
|
||||
It is the answer to the question `¿Cuántos años tienes?` ("How old are you?").
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
How old is Sebastián?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Veintiuno`
|
||||
|
||||
---
|
||||
|
||||
`Veinte`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Sebastián mentions a different number.
|
||||
|
||||
---
|
||||
|
||||
`Veintidós`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Sebastián mentions a different number.
|
||||
|
||||
---
|
||||
|
||||
`Treinta y uno`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Sebastián mentions a different number.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
1
|
||||
|
||||
# --explanation--
|
||||
|
||||
Sebastián says `Tengo veintiún años`, which means "I am twenty-one years old".
|
||||
|
||||
The word `veintiuno` means 21.
|
||||
|
||||
When referring to age, the word `veintiún` is used instead when it's followed by the word `años` ("years"). This shortened form is used immediately before plural masculine nouns.
|
||||
|
||||
After saying his age, Sebastián returns the question to Ángela with `¿Y tú?`.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 28.69,
|
||||
"finishTimestamp": 30.77
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.33,
|
||||
"dialogue": {
|
||||
"text": "Tengo veintiún años.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 2.58,
|
||||
"finishTime": 3.08,
|
||||
"dialogue": {
|
||||
"text": "¿Y tú?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 3.58
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,117 @@
|
||||
---
|
||||
id: 690f6f11d51d16478c286346
|
||||
title: Task 29
|
||||
challengeType: 19
|
||||
dashedName: task-29
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Sebastián: ¿A qué te dedicas, Ángela? -->
|
||||
|
||||
# --description--
|
||||
|
||||
`¿A qué te dedicas?` is a common way to ask about a person's job or profession.
|
||||
|
||||
It is equivalent to "What is your profession?" or "What do you do for a living?"
|
||||
|
||||
The common answer to this question has the structure **`Soy` + [profession]**. For example:
|
||||
|
||||
`Soy ingeniero` - I'm an engineer.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What is Sebastián asking Ángela about?
|
||||
|
||||
## --answers--
|
||||
|
||||
Her nationality
|
||||
|
||||
### --feedback--
|
||||
|
||||
Sebastián is not asking about Ángela's nationality.
|
||||
|
||||
---
|
||||
|
||||
Her name
|
||||
|
||||
### --feedback--
|
||||
|
||||
Sebastián is not asking about Ángela's name.
|
||||
|
||||
---
|
||||
|
||||
Her profession
|
||||
|
||||
---
|
||||
|
||||
Her age
|
||||
|
||||
### --feedback--
|
||||
|
||||
Sebastián is not asking about Ángela's age.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
3
|
||||
|
||||
# --explanation--
|
||||
|
||||
Sebastián is asking Ángela `¿A qué te dedicas?`.
|
||||
|
||||
This is a common way to ask about someone's profession or job.
|
||||
|
||||
Therefore, Sebastián is asking about Ángela's profession.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 35.51,
|
||||
"finishTimestamp": 37.05
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.54,
|
||||
"dialogue": {
|
||||
"text": "¿A qué te dedicas, Ángela?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 3.04
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,127 @@
|
||||
---
|
||||
id: 690f70f98d43b24acc706a72
|
||||
title: Task 30
|
||||
challengeType: 19
|
||||
dashedName: task-30
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Ángela: Soy representante de recursos humanos. -->
|
||||
|
||||
# --description--
|
||||
|
||||
**`Soy` + [profession]** is the most common way to say your profession in Spanish.
|
||||
|
||||
It is equivalent to "I am a + [profession]" and it's the direct answer to the question, `¿A qué te dedicas?` ("What is your profession?"). For example:
|
||||
|
||||
`Soy diseñador gráfico` - I'm a graphic designer.
|
||||
|
||||
The profession noun must agree in gender with the speaker, and the article ("a" or "an") is generally omitted.
|
||||
|
||||
| Profession (Feminine) | Profession (Masculine) | Example Structure | English Meaning |
|
||||
| :---: | :---: | :---: | :---: |
|
||||
| `profesora` | `profesor` | `Soy profesor.` | I am a teacher. |
|
||||
| `doctora` | `doctor` | `Soy doctora.` | I am a doctor. |
|
||||
| `arquitecta` | `arquitecto` | `Soy arquitecto.` | I am an architect. |
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What is Ángela’s profession?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Analista junior`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is not Ángela's profession.
|
||||
|
||||
---
|
||||
|
||||
`Representante de recursos humanos`
|
||||
|
||||
---
|
||||
|
||||
`Analista Senior`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Ángela mentions a different profession.
|
||||
|
||||
---
|
||||
|
||||
`Gerente de Mercadeo`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This profession is not mentioned.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
2
|
||||
|
||||
# --explanation--
|
||||
|
||||
Ángela says `Soy representante de recursos humanos`.
|
||||
|
||||
`Soy` is the "I am" conjugation of the verb `ser`.
|
||||
|
||||
`Representante` means "representative".
|
||||
|
||||
`Recursos humanos` means "human resources".
|
||||
|
||||
Therefore, Ángela is a human resources representative.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 38.3,
|
||||
"finishTimestamp": 40.86
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 3.56,
|
||||
"dialogue": {
|
||||
"text": "Soy representante de recursos humanos.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 4.06
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,107 @@
|
||||
---
|
||||
id: 690f862639740057f3ded75e
|
||||
title: Task 35
|
||||
challengeType: 19
|
||||
dashedName: task-35
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Ángela: Encantada de conocerte, Basti. -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What does `Encantada de conocerte` most likely mean in this sentence?
|
||||
|
||||
## --answers--
|
||||
|
||||
I'm happy to help you.
|
||||
|
||||
### --feedback--
|
||||
|
||||
This phrase is not used during an introduction.
|
||||
|
||||
---
|
||||
|
||||
I'm delighted to meet you.
|
||||
|
||||
---
|
||||
|
||||
I'll see you later.
|
||||
|
||||
### --feedback--
|
||||
|
||||
This phrase is not used during an introduction.
|
||||
|
||||
---
|
||||
|
||||
Are you ready to start?
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is not the meaning of the phrase.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
2
|
||||
|
||||
# --explanation--
|
||||
|
||||
The phrase `Encantada de conocerte` is a very polite way of saying "Nice to meet you" or "I'm delighted to meet you".
|
||||
|
||||
Its role is very similar to `Mucho gusto` in an introduction.
|
||||
|
||||
Ángela is a female, so she uses `Encantada`, the feminine form of the adjective "delighted". A male speaker would say `Encantado`.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 45.14,
|
||||
"finishTimestamp": 47.38
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 3.24,
|
||||
"dialogue": {
|
||||
"text": "Encantada de conocerte, Basti.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 3.74
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,91 @@
|
||||
---
|
||||
id: 690f89a537e5a15bceeed373
|
||||
title: Task 36
|
||||
challengeType: 22
|
||||
dashedName: task-36
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Ángela: Encantada de conocerte, Basti. -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the sentence below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`BLANK de BLANK, Basti.`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Encantada`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "delighted" and should use the feminine form (ending in -a) because Ángela is a female.
|
||||
|
||||
---
|
||||
|
||||
`conocerte`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This phrase means "meet you".
|
||||
|
||||
# --explanation--
|
||||
|
||||
The phrase `Encantada de conocerte` is a polite way for a female speaker to say "I am delighted to meet you".
|
||||
|
||||
A male speaker would say `Encantado de conocerte`.
|
||||
|
||||
This phrase has the same purpose as `Mucho gusto` in an introduction.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 45.14,
|
||||
"finishTimestamp": 47.38
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 3.24,
|
||||
"dialogue": {
|
||||
"text": "Encantada de conocerte, Basti.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 3.74
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,105 @@
|
||||
---
|
||||
id: 690f8b36b9f7a95e9a85adef
|
||||
title: Task 37
|
||||
challengeType: 19
|
||||
dashedName: task-37
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Sebastián: Igualmente. -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
Why is Sebastián saying `Igualmente` to Ángela?
|
||||
|
||||
## --answers--
|
||||
|
||||
To tell her he will see her tomorrow.
|
||||
|
||||
### --feedback--
|
||||
|
||||
Sebastián is not saying goodbye to Ángela.
|
||||
|
||||
---
|
||||
|
||||
To ask her about her job.
|
||||
|
||||
### --feedback--
|
||||
|
||||
Sebastián is not asking Ángela about her job.
|
||||
|
||||
---
|
||||
|
||||
To politely acknowledge and return her compliment.
|
||||
|
||||
---
|
||||
|
||||
To ask her about her pets.
|
||||
|
||||
### --feedback--
|
||||
|
||||
Sebastián is not asking Ángela about her pets.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
3
|
||||
|
||||
# --explanation--
|
||||
|
||||
The phrase `Igualmente` translates to "Likewise".
|
||||
|
||||
Ángela said `Encantada de conocerte, Basti`, so Sebastián is replying with `Igualmente` to return the compliment.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 48.68,
|
||||
"finishTimestamp": 49.51
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.83,
|
||||
"dialogue": {
|
||||
"text": "Igualmente.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 2.33
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,118 @@
|
||||
---
|
||||
id: 69150542094cd0569af7c631
|
||||
title: Task 7
|
||||
challengeType: 19
|
||||
dashedName: task-7
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Sebastián: Me llaman Basti. ¿Y tú? -->
|
||||
|
||||
# --description--
|
||||
|
||||
`¿Y tú?` means "And you?"
|
||||
|
||||
This short question is used to quickly return a question to the speaker after you've answered it, without repeating it.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
After introducing himself, how is Sebastián returning the question to Ángela?
|
||||
|
||||
## --answers--
|
||||
|
||||
`¿Cierto?`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This means "Right?". It's not what Sebastián mentions in the dialogue.
|
||||
|
||||
---
|
||||
|
||||
`¿Cuál es tu nombre?`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Sebastián uses a simpler phrase to return the question.
|
||||
|
||||
---
|
||||
|
||||
`¿Qué haces?`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This phrase means "What are you doing?". It's not used to return a question.
|
||||
|
||||
---
|
||||
|
||||
`¿Y tú?`
|
||||
|
||||
## --video-solution--
|
||||
|
||||
4
|
||||
|
||||
# --explanation--
|
||||
|
||||
Sebastián asks `¿Y tú?` at the end of this part of the conversation to return the question to Ángela.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 6.78,
|
||||
"finishTimestamp": 8.79
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.14,
|
||||
"dialogue": {
|
||||
"text": "Me llaman Basti.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 2.52,
|
||||
"finishTime": 3.01,
|
||||
"dialogue": {
|
||||
"text": "¿Y tú?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 3.51
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,87 @@
|
||||
---
|
||||
id: 6915d1d38ca358189af1ab08
|
||||
title: Task 9
|
||||
challengeType: 22
|
||||
dashedName: task-9
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Ángela: Me llamo Ángela. -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the sentence below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`BLANK BLANK Ángela.`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Me`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is used to refer to oneself.
|
||||
|
||||
---
|
||||
|
||||
`llamo`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the `yo` ("I") form of the verb `llamar` ("to call").
|
||||
|
||||
# --explanation--
|
||||
|
||||
The complete phrase is `Me llamo Ángela`, which means "My name is Ángela".
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 9.58,
|
||||
"finishTimestamp": 10.84
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.26,
|
||||
"dialogue": {
|
||||
"text": "Me llamo Ángela.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 2.76
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,87 @@
|
||||
---
|
||||
id: 6915d2fd70e1631a7c2c035e
|
||||
title: Task 15
|
||||
challengeType: 22
|
||||
dashedName: task-15
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Ángela: Soy de El Salvador -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the sentence below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`BLANK BLANK El Salvador.`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Soy`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the `yo` ("I") form of the verb `ser` ("to be").
|
||||
|
||||
---
|
||||
|
||||
`de`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This preposition means "from".
|
||||
|
||||
# --explanation--
|
||||
|
||||
The complete phrase is `Soy de El Salvador`, which means "I am from El Salvador".
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 16.26,
|
||||
"finishTimestamp": 18.11
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.85,
|
||||
"dialogue": {
|
||||
"text": "Soy de El Salvador.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 3.35
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,79 @@
|
||||
---
|
||||
id: 6915d44e280a531d2f1c2bb1
|
||||
title: Task 17
|
||||
challengeType: 22
|
||||
dashedName: task-17
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Ángela: Soy salvadoreña. -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the sentence below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`Soy BLANK.`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`salvadoreña`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the feminine nationality for someone from El Salvador.
|
||||
|
||||
# --explanation--
|
||||
|
||||
The complete phrase is `Soy salvadoreña`, which means "I am Salvadoran".
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 18.35,
|
||||
"finishTimestamp": 19.71
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.36,
|
||||
"dialogue": {
|
||||
"text": "Soy salvadoreña.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 2.86
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,79 @@
|
||||
---
|
||||
id: 6915d734d182222357aff8d7
|
||||
title: Task 20
|
||||
challengeType: 22
|
||||
dashedName: task-20
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Sebastián: Soy de Guatemala. -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the sentence below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`Soy de BLANK.`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Guatemala`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is a country located in Central America.
|
||||
|
||||
# --explanation--
|
||||
|
||||
The complete phrase is `Soy de Guatemala`, which means "I am from Guatemala".
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 21.59,
|
||||
"finishTimestamp": 22.7
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.11,
|
||||
"dialogue": {
|
||||
"text": "Soy de Guatemala.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 2.61
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,105 @@
|
||||
---
|
||||
id: 6915d83a16f43c25b3f978c7
|
||||
title: Task 21
|
||||
challengeType: 19
|
||||
dashedName: task-21
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Sebastián: Soy Guatemalteco. -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What is Sebastián's nationality?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Guatemalteco`
|
||||
|
||||
---
|
||||
|
||||
`Salvadoreño`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Sebastián mentions a different nationality.
|
||||
|
||||
---
|
||||
|
||||
`Mexicano`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Sebastián mentions a different nationality.
|
||||
|
||||
---
|
||||
|
||||
`Ecuatoriano`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Sebastián mentions a different nationality.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
1
|
||||
|
||||
# --explanation--
|
||||
|
||||
Sebastián says `Soy guatemalteco`, which means "I am Guatemalan".
|
||||
|
||||
`Guatemalteco` is the masculine form of the nationality of someone who is from `Guatemala`. The feminine form is `guatemalteca`.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 23.45,
|
||||
"finishTimestamp": 24.61
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.16,
|
||||
"dialogue": {
|
||||
"text": "Soy guatemalteco.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 2.66
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,81 @@
|
||||
---
|
||||
id: 6915d99c51f4782817abd129
|
||||
title: Task 22
|
||||
challengeType: 22
|
||||
dashedName: task-22
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Sebastián: Soy Guatemalteco. -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the sentence below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`Soy BLANK.`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`guatemalteco`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the masculine form of the nationality of someone who is from Guatemala.
|
||||
|
||||
# --explanation--
|
||||
|
||||
The complete sentence is `Soy guatemalteco`, which means "I am Guatemalan".
|
||||
|
||||
`Guatemalteco` is the masculine form of the nationality of someone who is from `Guatemala`. The feminine form is `guatemalteca`.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 23.45,
|
||||
"finishTimestamp": 24.61
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.16,
|
||||
"dialogue": {
|
||||
"text": "Soy guatemalteco.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 2.66
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,103 @@
|
||||
---
|
||||
id: 6915e51b2abe35343f9b79cf
|
||||
title: Task 27
|
||||
challengeType: 19
|
||||
dashedName: task-27
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Ángela: Tengo treinta y cinco años. -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
How old is Ángela?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Treinta y tres`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Ángela mentions a different age.
|
||||
|
||||
---
|
||||
|
||||
`Veinticinco`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Ángela mentions a different age.
|
||||
|
||||
---
|
||||
|
||||
`Treinta`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Ángela mentions a different age.
|
||||
|
||||
---
|
||||
|
||||
`Treinta y cinco`
|
||||
|
||||
## --video-solution--
|
||||
|
||||
4
|
||||
|
||||
# --explanation--
|
||||
|
||||
Ángela says `Tengo treinta y cinco años`, which means "I am thirty-five years old".
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 31.8,
|
||||
"finishTimestamp": 33.68
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.88,
|
||||
"dialogue": {
|
||||
"text": "Tengo treinta y cinco años.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 3.38
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,83 @@
|
||||
---
|
||||
id: 6915e72256d30f37056ac39e
|
||||
title: Task 26
|
||||
challengeType: 22
|
||||
dashedName: task-26
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Sebastián: Tengo veintiún años. -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the sentence below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`Tengo BLANK años.`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`veintiún`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the shortened form (`veintiún`) of the number twenty-one (21), used before a plural masculine noun (`años`).
|
||||
|
||||
# --explanation--
|
||||
|
||||
The complete sentence is `Tengo veintiún años`, which means "I am twenty-one years old".
|
||||
|
||||
`Veintiún` is the shortened form of `veintiuno` (21). This shortened form is used immediately before plural masculine nouns, like `años` ("years"). For example:
|
||||
|
||||
`Veintiún cuadernos.` - Twenty-one notebooks.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 28.69,
|
||||
"finishTimestamp": 30.02
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.33,
|
||||
"dialogue": {
|
||||
"text": "Tengo veintiún años.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 2.83
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,79 @@
|
||||
---
|
||||
id: 6915e8d7b68cb73a9c9b89fe
|
||||
title: Task 28
|
||||
challengeType: 22
|
||||
dashedName: task-28
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Ángela: Tengo treinta y cinco años. -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the sentence below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`Tengo BLANK años.`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`treinta y cinco`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number thirty-five (35).
|
||||
|
||||
# --explanation--
|
||||
|
||||
The complete sentence is `Tengo treinta y cinco años`, which means "I am thirty-five years old".
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 31.8,
|
||||
"finishTimestamp": 33.68
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.88,
|
||||
"dialogue": {
|
||||
"text": "Tengo 35 años.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 3.38
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,90 @@
|
||||
---
|
||||
id: 6915eab337b5573e73cc5fbf
|
||||
title: Task 31
|
||||
challengeType: 22
|
||||
dashedName: task-31
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Ángela: Soy representante de recursos humanos. ¿Y vos? -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the sentence below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`Soy BLANK de recursos humanos. ¿Y vos?`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`representante`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "representative".
|
||||
|
||||
# --explanation--
|
||||
|
||||
The complete sentence is `Soy representante de recursos humanos. ¿Y vos?`, which means "I am a human resources representative. And you?"
|
||||
|
||||
`Representante` means "representative".
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 38.3,
|
||||
"finishTimestamp": 41.59
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 3.56,
|
||||
"dialogue": {
|
||||
"text": "Soy representante de recursos humanos.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 3.71,
|
||||
"finishTime": 4.29,
|
||||
"dialogue": {
|
||||
"text": "¿Y vos?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 4.79
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,98 @@
|
||||
---
|
||||
id: 6915ebb4c0915b41248f387e
|
||||
title: Task 32
|
||||
challengeType: 22
|
||||
dashedName: task-32
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Ángela: Soy representante de recursos humanos. ¿Y vos? -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the sentence below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`Soy representante de BLANK BLANK. ¿Y vos?`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`recursos`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "resources".
|
||||
|
||||
---
|
||||
|
||||
`humanos`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "human".
|
||||
|
||||
# --explanation--
|
||||
|
||||
The complete sentence is `Soy representante de recursos humanos. ¿Y vos?`, which means "I am a human resources representative. And you?"
|
||||
|
||||
`Recursos` means "resources" and `humanos` means "human".
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 38.3,
|
||||
"finishTimestamp": 41.59
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 3.56,
|
||||
"dialogue": {
|
||||
"text": "Soy representante de recursos humanos.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 3.71,
|
||||
"finishTime": 4.29,
|
||||
"dialogue": {
|
||||
"text": "¿Y vos?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 4.79
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,103 @@
|
||||
---
|
||||
id: 6915eca78be9dc43790f3025
|
||||
title: Task 33
|
||||
challengeType: 19
|
||||
dashedName: task-33
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Sebastián: Soy analista junior. -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What is Sebastián’s profession?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Analista junior`
|
||||
|
||||
---
|
||||
|
||||
`Gerente de análisis`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Sebastián mentions a different profession.
|
||||
|
||||
---
|
||||
|
||||
`Representante de ventas`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Sebastián mentions a different profession.
|
||||
|
||||
---
|
||||
|
||||
`Analista senior`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Sebastián mentions something different.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
1
|
||||
|
||||
# --explanation--
|
||||
|
||||
Sebastián says `Soy analista junior`, which means "I am a junior analyst".
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 42.6,
|
||||
"finishTimestamp": 44.25
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.38,
|
||||
"dialogue": {
|
||||
"text": "Soy analista junior.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 2.88
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,87 @@
|
||||
---
|
||||
id: 6915ed88d969cb45865f84ab
|
||||
title: Task 34
|
||||
challengeType: 22
|
||||
dashedName: task-34
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Sebastián: Soy analista junior. -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the sentence below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`Soy BLANK BLANK.`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`analista`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "analyst".
|
||||
|
||||
---
|
||||
|
||||
`junior`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word is used to describe the entry-level status of Sebastián's role.
|
||||
|
||||
# --explanation--
|
||||
|
||||
The complete sentence is `Soy analista junior`, which means "I am a junior analyst".
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 42.6,
|
||||
"finishTimestamp": 44.25
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.38,
|
||||
"dialogue": {
|
||||
"text": "Soy analista junior.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 2.88
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,81 @@
|
||||
---
|
||||
id: 6915f062758b5b505dc60d9c
|
||||
title: Task 38
|
||||
challengeType: 22
|
||||
dashedName: task-38
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Sebastián: Igualmente. -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the sentence below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`BLANK.`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Igualmente`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "Likewise".
|
||||
|
||||
# --explanation--
|
||||
|
||||
`Igualmente` means "Likewise" or "Same here".
|
||||
|
||||
It's a common and polite one-word response to an introduction. It lets the other person know that the feeling is mutual.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 48.68,
|
||||
"finishTimestamp": 49.51
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.83,
|
||||
"dialogue": {
|
||||
"text": "Igualmente.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 2.33
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,87 @@
|
||||
---
|
||||
id: 6916019cc2aa0367de683686
|
||||
title: Task 11
|
||||
challengeType: 22
|
||||
dashedName: task-11
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Sebastián: Mucho gusto, Ángela. -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the sentence below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`BLANK BLANK, Ángela.`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Mucho`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "much" or "a lot".
|
||||
|
||||
---
|
||||
|
||||
`gusto`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "pleasure", like in "It's a please to meet you".
|
||||
|
||||
# --explanation--
|
||||
|
||||
The complete phrase is `Mucho gusto, Ángela`, which means "Nice to meet you, Ángela" or "Pleased to meet you, Ángela".
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 12.77,
|
||||
"finishTimestamp": 13.95
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.18,
|
||||
"dialogue": {
|
||||
"text": "Mucho gusto, Ángela.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 2.68
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,99 @@
|
||||
---
|
||||
id: 69160253e5339069a251cd9a
|
||||
title: Task 13
|
||||
challengeType: 22
|
||||
dashedName: task-13
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Sebastián: ¿De dónde eres? -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the sentence below.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`¿BLANK BLANK BLANK?`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`De`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This preposition means "from". It's important for asking about origin.
|
||||
|
||||
---
|
||||
|
||||
`dónde`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the question word for "where".
|
||||
|
||||
---
|
||||
|
||||
`eres`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the conjugation of the verb `ser` ("to be") for the pronoun `tú` ("you").
|
||||
|
||||
# --explanation--
|
||||
|
||||
The question `¿De dónde eres?` is a common way to ask about someone's place of origin.
|
||||
|
||||
It is equivalent to "Where are you from?".
|
||||
|
||||
This question must have the preposition `de` ("from") at the beginning, and the conjugation of the verb `ser` ("to be") because origin is considered a permanent characteristic.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 14.27,
|
||||
"finishTimestamp": 15.32
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.05,
|
||||
"dialogue": {
|
||||
"text": "¿De dónde eres?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 2.55
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -1,59 +0,0 @@
|
||||
---
|
||||
id: 68dc75b0fe65b57754913412
|
||||
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,81 @@
|
||||
---
|
||||
id: 691078d4e99ddd082b12ee9c
|
||||
title: Task 7
|
||||
challengeType: 22
|
||||
dashedName: task-7
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- NO AUDIO -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
This task doesn't have audio. Complete the common introductory questions below.
|
||||
|
||||
Write these words in the correct spots:
|
||||
|
||||
`eres`, `llamas`, `dedicas`, `cuántos`, `te`.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`1. ¿Cómo te BLANK?`
|
||||
|
||||
`2. ¿De dónde BLANK?`
|
||||
|
||||
`3. ¿A qué BLANK BLANK?`
|
||||
|
||||
`4. ¿BLANK años tienes?`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`llamas`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the `tú` ("you") form of the verb `llamar` ("to call").
|
||||
|
||||
---
|
||||
|
||||
`eres`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the `tú` ("you") form of the verb `ser` ("to be").
|
||||
|
||||
---
|
||||
|
||||
`te`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the reflexive pronoun that goes with the verb `dedicarse` in the `tú` ("you") form.
|
||||
|
||||
---
|
||||
|
||||
`dedicas`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the `tú` form of the verb `dedicarse` ("to dedicate oneself").
|
||||
|
||||
---
|
||||
|
||||
`Cuántos`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the question word used to ask about quantity.
|
||||
|
||||
# --explanation--
|
||||
|
||||
These questions are helpful for getting to know someone in an informal context, using the `tú` ("you") pronoun:
|
||||
|
||||
`¿Cómo te llamas?` is used to ask for a person's name. It's equivalent to "What is your name?"
|
||||
|
||||
`¿De dónde eres?` is used to ask about a person's origin or nationality. It's equivalent to "Where are you from?"
|
||||
|
||||
`¿A qué te dedicas?` is used to ask about a person's profession or job. It's equivalent to "What is your profession?"
|
||||
|
||||
`¿Cuántos años tienes?` is used to ask about a person's age. It's equivalent to "How old are you?"
|
||||
@@ -0,0 +1,57 @@
|
||||
---
|
||||
id: 69107e5c3d2e240f97b5742f
|
||||
title: Task 9
|
||||
challengeType: 19
|
||||
dashedName: task-9
|
||||
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 contains the phrases "Nice to Meet You" and "Likewise" in order.
|
||||
|
||||
## --answers--
|
||||
|
||||
`Mucho gusto` - `Igualmente`
|
||||
|
||||
---
|
||||
|
||||
`Mucho gusto` - `Encantado`
|
||||
|
||||
### --feedback--
|
||||
|
||||
`Encantado` means "Nice to meet you", not "Likewise".
|
||||
|
||||
---
|
||||
|
||||
`Igualmente` - `Mucho gusto`
|
||||
|
||||
### --feedback--
|
||||
|
||||
The phrases are in the wrong order.
|
||||
|
||||
---
|
||||
|
||||
`Buenas tardes` - `Mucho gusto`
|
||||
|
||||
### --feedback--
|
||||
|
||||
The first phrase, `Buenas tardes`, means "Good afternoon," not "Nice to meet you".
|
||||
|
||||
## --video-solution--
|
||||
|
||||
1
|
||||
|
||||
# --explanation--
|
||||
|
||||
The phrases `Mucho gusto` and `Igualmente` are the most common and simple responses for introducing oneself politely.
|
||||
|
||||
`Mucho gusto` means "Nice to meet you" and `Igualmente` means "Likewise".
|
||||
@@ -0,0 +1,63 @@
|
||||
---
|
||||
id: 691081b5ef232e138b301ac8
|
||||
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--
|
||||
|
||||
Choose the combination that **DOESN'T** correspond to the correct country-nationality pair.
|
||||
|
||||
## --answers--
|
||||
|
||||
`El salvador` - `Salvadoreño` - `Salvadoreña`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is a correct pair. `Salvadoreño` (masculine) and `Salvadoreña` (feminine) are the nationalities for `El Salvador`.
|
||||
|
||||
---
|
||||
|
||||
`Guatemala` - `Guatemalteco` - `Guatemalteca`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is a correct pair. `Guatemalteco` (masculine) and `Guatemalteca` (feminine) are the nationalities for `Guatemala`.
|
||||
|
||||
---
|
||||
|
||||
`Puerto Rico` - `Puertorriqueño` - `Puertorriqueña`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is a correct pair. `Puertorriqueño` (masculine) and `Puertorriqueña` (feminine) are the nationalities for `Puerto Rico`.
|
||||
|
||||
---
|
||||
|
||||
`Uruguay` - `Argentino` - `Argentina`
|
||||
|
||||
## --video-solution--
|
||||
|
||||
4
|
||||
|
||||
# --explanation--
|
||||
|
||||
In Spanish, nationalities change form based on the gender of the person they describe.
|
||||
|
||||
Nationalities that end in `-o` for the masculine form will typically change to `-a` for the feminine form.
|
||||
|
||||
The incorrect pair is `Uruguay - Argentino - Argentina` because the correct nationalities are `Uruguayo` (masculine) and `Uruguaya` (feminine).
|
||||
|
||||
`Argentino` - `Argentina` are the nationalities for the country `Argentina`.
|
||||
|
||||
The other pairs are correct.
|
||||
@@ -0,0 +1,51 @@
|
||||
---
|
||||
id: 691083ce2c387615cf14e5f1
|
||||
title: Task 11
|
||||
challengeType: 22
|
||||
dashedName: task-11
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- NO AUDIO -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
This task doesn't have audio. Complete the dialogue below.
|
||||
|
||||
Ricardo and Daniel are introducing themselves for the first time. They end their conversation politely.
|
||||
|
||||
Write these words in the correct spot:
|
||||
|
||||
`mucho`, `llamo`, `igualmente`, `gracias`
|
||||
|
||||
There are more words than blanks. You won't need to use all words.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`Ricardo: BLANK gusto.`
|
||||
|
||||
`Daniel: BLANK.`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Mucho`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "much" or "a lot". It's the first word of the phrase "Nice to meet you".
|
||||
|
||||
---
|
||||
|
||||
`Igualmente`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "likewise". It's the standard response to "Nice to meet you".
|
||||
|
||||
# --explanation--
|
||||
|
||||
The conversation between Ricardo and Daniel ends with `Mucho gusto` ("Nice to meet you") and `Igualmente` ("Likewise").
|
||||
|
||||
This is the standard, polite way to acknowledge an introduction in Spanish.
|
||||
@@ -0,0 +1,75 @@
|
||||
---
|
||||
id: 6910867bb3065a1924502732
|
||||
title: Task 13
|
||||
challengeType: 22
|
||||
dashedName: task-13
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- NO AUDIO -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
This task doesn't have audio. Complete the dialogue below.
|
||||
|
||||
Camila and Mateo are introducing themselves. This is how they start their conversation.
|
||||
|
||||
Write these words in the correct spot:
|
||||
|
||||
`tú`, `es`, `mi`, `tardes`, `hola`, `te`, `llamo`
|
||||
|
||||
There are more words than blanks. You won't need to use all words.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`Camila: Hola, buenas tardes. ¿Cómo BLANK llamas?`
|
||||
|
||||
`Mateo: BLANK nombre es Mateo. ¿Y BLANK?`
|
||||
|
||||
`Camila: Me BLANK Camila.`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`te`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word is used with the verb `llamarse` ("to be called") for the `tú` ("you") form.
|
||||
|
||||
---
|
||||
|
||||
`Mi`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the first-person possessive pronoun ("my").
|
||||
|
||||
---
|
||||
|
||||
`tú`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the pronoun used to refer to the second person singular in an informal context.
|
||||
|
||||
---
|
||||
|
||||
`llamo`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the first-person singular (`yo`) form of the verb `llamarse` ("to be called").
|
||||
|
||||
# --explanation--
|
||||
|
||||
This dialogue between Mateo and Camila includes these common phrases:
|
||||
|
||||
`¿Cómo te llamas?` means "What is your name?" (informal).
|
||||
|
||||
`Mi nombre es...` means "My name is".
|
||||
|
||||
`¿Y tú?` means "And you?". This is used to return a question informally.
|
||||
|
||||
`Me llamo...` is the most common way to say your name.
|
||||
@@ -0,0 +1,85 @@
|
||||
---
|
||||
id: 69108a0006dd331d159c51f3
|
||||
title: Task 14
|
||||
challengeType: 22
|
||||
dashedName: task-14
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- NO AUDIO -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
This task doesn't have audio. Complete the dialogue below.
|
||||
|
||||
Camila and Mateo are talking about where they are from.
|
||||
|
||||
Write these words in the correct spot:
|
||||
|
||||
`cuántos`, `puertorriqueño`, `de`, `gusto`, `colombiana`, `dónde`, `años`
|
||||
|
||||
There are more words than blanks. You won't need to use all words.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`Mateo: Mucho BLANK. ¿De BLANK eres?`
|
||||
|
||||
`Camila: Soy BLANK Colombia. Soy BLANK. ¿Y tú?`
|
||||
|
||||
`Mateo: Soy de Puerto Rico. Soy BLANK.`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`gusto`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word completes the phrase "Nice to meet you".
|
||||
|
||||
---
|
||||
|
||||
`dónde`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "where" and it's used to ask about origin.
|
||||
|
||||
---
|
||||
|
||||
`de`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This preposition means "from".
|
||||
|
||||
---
|
||||
|
||||
`colombiana`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the feminine nationality of someone who is from Colombia.
|
||||
|
||||
---
|
||||
|
||||
`puertorriqueño`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the masculine nationality of someone who is from Puerto Rico.
|
||||
|
||||
# --explanation--
|
||||
|
||||
This dialogue between Mateo and Camila has common phrases and questions about origin and nationality.
|
||||
|
||||
The phrase `Mucho gusto` ("Nice to meet you") is used to start the conversation politely.
|
||||
|
||||
`¿De dónde eres?` means "Where are you from?" (informal).
|
||||
|
||||
**`Soy de` + [country]** means "I am from + [country]".
|
||||
|
||||
`Colombiana` is the feminine form of the nationality of someone who is from Colombia. The masculine form is `colombiano`.
|
||||
|
||||
`Puertorriqueño` is the masculine form of the nationality of someone who is from Puerto Rico. The feminine form is `puertorriqueña`.
|
||||
@@ -0,0 +1,196 @@
|
||||
---
|
||||
id: 69108ccea9363f23b3aacb49
|
||||
title: Task 15
|
||||
challengeType: 22
|
||||
dashedName: task-15
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Camila: ¿A qué te dedicas? -->
|
||||
<!-- (AUDIO) Mateo: Soy ingeniero de software. ¿Y tú, Camila? -->
|
||||
<!-- (AUDIO) Camila: Soy analista de datos. -->
|
||||
|
||||
# --description--
|
||||
|
||||
Camila and Mateo are talking about their professions.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the dialogue below.
|
||||
|
||||
Write these words in the correct spot:
|
||||
|
||||
`ingeniero`, `ingeniera`, `tú`, `te`, `doctor`, `analista`, `dedicas`
|
||||
|
||||
There are more words than blanks. You won't need to use all words.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`Camila: ¿A qué BLANK BLANK?`
|
||||
|
||||
`Mateo: Soy BLANK de software. ¿Y BLANK, Camila?`
|
||||
|
||||
`Camila: Soy BLANK de datos.`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`te`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the reflexive pronoun that goes with the verb `dedicar`.
|
||||
|
||||
---
|
||||
|
||||
`dedicas`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the `tú` ("you") form of the verb `dedicarse` ("to dedicate oneself").
|
||||
|
||||
---
|
||||
|
||||
`ingeniero`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the masculine noun for a person who works in engineering.
|
||||
|
||||
---
|
||||
|
||||
`tú`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the informal personal pronoun ("you") used to return the question to Camila.
|
||||
|
||||
---
|
||||
|
||||
`analista`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the noun for a person who analyzes data.
|
||||
|
||||
# --explanation--
|
||||
|
||||
This dialogue between Mateo and Camila focuses on professions.
|
||||
|
||||
`¿A qué te dedicas?` means "What is your profession?" or "What do you do for a living?"
|
||||
|
||||
**`Soy` + [profession]** means "I am a/an [profession]".
|
||||
|
||||
In Spanish, most professions change based on gender. However, some professions that end in `-ista` or `-nte` are often kept exactly the same for both genders:
|
||||
|
||||
| Profession | Masculine | Feminine |
|
||||
| :---: | :---: | :---: |
|
||||
| Analyst | `analista` | `analista` |
|
||||
| Journalist | `periodista` | `periodista` |
|
||||
| Receptionist | `recepcionista` | `recepcionista` |
|
||||
| Singer | `cantante` | `cantante` |
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "cubicle.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Camila",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.5
|
||||
},
|
||||
"opacity": 0
|
||||
},
|
||||
{
|
||||
"character": "Mateo",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.5
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.2.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 20.58,
|
||||
"finishTimestamp": 28.69
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Camila",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Camila",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.23,
|
||||
"dialogue": {
|
||||
"text": "¿A qué te dedicas?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Camila",
|
||||
"opacity": 0,
|
||||
"startTime": 2.85
|
||||
},
|
||||
{
|
||||
"character": "Mateo",
|
||||
"opacity": 1,
|
||||
"startTime": 2.85
|
||||
},
|
||||
{
|
||||
"character": "Mateo",
|
||||
"startTime": 3.48,
|
||||
"finishTime": 4.9,
|
||||
"dialogue": {
|
||||
"text": "Soy ingeniero de software.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Mateo",
|
||||
"startTime": 5.43,
|
||||
"finishTime": 6.37,
|
||||
"dialogue": {
|
||||
"text": "¿Y tú, Camila?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Mateo",
|
||||
"opacity": 0,
|
||||
"startTime": 6.91
|
||||
},
|
||||
{
|
||||
"character": "Camila",
|
||||
"opacity": 1,
|
||||
"startTime": 6.91
|
||||
},
|
||||
{
|
||||
"character": "Camila",
|
||||
"startTime": 7.46,
|
||||
"finishTime": 9.11,
|
||||
"dialogue": {
|
||||
"text": "Soy analista de datos.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Camila",
|
||||
"opacity": 0,
|
||||
"startTime": 9.61
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,171 @@
|
||||
---
|
||||
id: 691090f4e43e61297523d064
|
||||
title: Task 16
|
||||
challengeType: 22
|
||||
dashedName: task-16
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Camila: ¿Cuántos años tienes? -->
|
||||
<!-- (AUDIO) Mateo: Tengo veinticinco años. ¿Y tú? -->
|
||||
<!-- (AUDIO) Camila: Tengo treinta años. -->
|
||||
|
||||
# --description--
|
||||
|
||||
Camila and Mateo are talking about their ages.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the dialogue below.
|
||||
|
||||
Write these words in the correct spot:
|
||||
|
||||
`cómo`, `años`, `dónde`, `cuántos`, `tengo`
|
||||
|
||||
There are more words than blanks. You won't need to use all words.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`Camila: ¿BLANK años tienes?`
|
||||
|
||||
`Mateo: BLANK veinticinco años. ¿Y tú?`
|
||||
|
||||
`Camila: Tengo treinta BLANK.`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Cuántos`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word is used to ask about quantity.
|
||||
|
||||
---
|
||||
|
||||
`Tengo`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the `yo` ("I") form of the verb `tener` ("to have").
|
||||
|
||||
---
|
||||
|
||||
`años`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This plural noun means "years".
|
||||
|
||||
# --explanation--
|
||||
|
||||
This dialogue between Mateo and Camila focuses on age.
|
||||
|
||||
`¿Cuántos años tienes?` means "How old are you?"
|
||||
|
||||
**`Tengo` + [number] + `años`** means "I'm [number] years old".
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "cubicle.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Camila",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.5
|
||||
},
|
||||
"opacity": 0
|
||||
},
|
||||
{
|
||||
"character": "Mateo",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.5
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.2.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 28.95,
|
||||
"finishTimestamp": 35.9
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Camila",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Camila",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.4,
|
||||
"dialogue": {
|
||||
"text": "¿Cuántos años tienes?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Camila",
|
||||
"opacity": 0,
|
||||
"startTime": 3.05
|
||||
},
|
||||
{
|
||||
"character": "Mateo",
|
||||
"opacity": 1,
|
||||
"startTime": 3.05
|
||||
},
|
||||
{
|
||||
"character": "Mateo",
|
||||
"startTime": 3.69,
|
||||
"finishTime": 5.16,
|
||||
"dialogue": {
|
||||
"text": "Tengo veinticinco años.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Mateo",
|
||||
"startTime": 5.18,
|
||||
"finishTime": 5.68,
|
||||
"dialogue": {
|
||||
"text": "¿Y tú?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Mateo",
|
||||
"opacity": 0,
|
||||
"startTime": 6
|
||||
},
|
||||
{
|
||||
"character": "Camila",
|
||||
"opacity": 1,
|
||||
"startTime": 6
|
||||
},
|
||||
{
|
||||
"character": "Camila",
|
||||
"startTime": 6.31,
|
||||
"finishTime": 7.95,
|
||||
"dialogue": {
|
||||
"text": "Tengo treinta años.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Camila",
|
||||
"opacity": 0,
|
||||
"startTime": 8.45
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,133 @@
|
||||
---
|
||||
id: 6910932c6c4e812ca246cdae
|
||||
title: Task 17
|
||||
challengeType: 22
|
||||
dashedName: task-17
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- NO AUDIO -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
This task has no audio. Complete the dialogue below.
|
||||
|
||||
Florencia is preparing for a trip to Argentina. She wants to practice how to introduce herself to others and know more about them. Help her find the best words for her conversation with her hypothetical new friend, Federico.
|
||||
|
||||
Write these words in the correct spot:
|
||||
|
||||
`de`, `soy`, `nombre`, `igualmente`, `y`, `dónde`, `vos`, `años`, `encantada`, `cuántos`
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`Florencia: Hola, buenas tardes. Mi BLANK es Florencia. ¿Cómo te llamas?`
|
||||
|
||||
`Federico: Mi nombre es Federico. ¿De BLANK eres?`
|
||||
|
||||
`Florencia: BLANK de El Salvador. ¿BLANK BLANK?`
|
||||
|
||||
`Federico: Soy BLANK Argentina.`
|
||||
|
||||
`Florencia: ¿BLANK años tienes?`
|
||||
|
||||
`Federico: Tengo treinta y seis BLANK. ¿Y vos?`
|
||||
|
||||
`Florencia: Tengo treinta y cinco años. BLANK de conocerte, Federico.`
|
||||
|
||||
`Federico: BLANK.`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`nombre`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "name".
|
||||
|
||||
---
|
||||
|
||||
`dónde`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "where".
|
||||
|
||||
---
|
||||
|
||||
`Soy`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the "yo" (`I`) form of the verb "to be" (`ser`).
|
||||
|
||||
---
|
||||
|
||||
`y`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "and".
|
||||
|
||||
---
|
||||
|
||||
`vos`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is a regional variation of the informal personal pronoun "you".
|
||||
|
||||
---
|
||||
|
||||
`de`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This preposition means "from".
|
||||
|
||||
---
|
||||
|
||||
`cuántos`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "how many".
|
||||
|
||||
---
|
||||
|
||||
`años`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "years".
|
||||
|
||||
---
|
||||
|
||||
`encantada`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "delighted".
|
||||
|
||||
---
|
||||
|
||||
`Igualmente`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "likewise".
|
||||
|
||||
# --explanation--
|
||||
|
||||
This dialogue between Florencia and Federico reviews fundamental introductory phrases:
|
||||
|
||||
`Mi nombre es` and `Me llamo` are alternative ways to say your name.
|
||||
|
||||
`¿De dónde eres?` means "Where are you from?". This question is answered with **`Soy de` + [country]**.
|
||||
|
||||
`¿Cuántos años tienes?` means "How old are you?". This question is answered with **`Tengo` + [number] + `años`**.
|
||||
|
||||
`¿Y vos?` means "And you?" and it's used to return a question. It's a regional variation of `¿Y tú?` ("And you?") common in Central American countries like El Salvador, and some South American countries, like Argentina.
|
||||
|
||||
`Encantada` ("Nice to meet you") and `Igualmente` ("Likewise") are polite phrases used during introductions.
|
||||
@@ -0,0 +1,179 @@
|
||||
---
|
||||
id: 691606a74e875776d0c00634
|
||||
title: Task 1
|
||||
challengeType: 22
|
||||
dashedName: task-1
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Ángela: Hola, buenas tardes. ¿Cómo te llamas? -->
|
||||
<!-- (AUDIO) Sebastián: Mi nombre es Sebastián. Me llaman Basti. ¿Y tú? -->
|
||||
<!-- (AUDIO) Ángela: Me llamo Ángela. -->
|
||||
|
||||
# --description--
|
||||
|
||||
Now you'll practice what you've learned about common questions in Spanish by completing these dialogues between Ángela and Sebastián.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the dialogue with the correct verb forms.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`Ángela: Hola, buenas tardes. ¿Cómo te BLANK?`
|
||||
|
||||
`Sebastián: Mi nombre es Sebastián. Me BLANK Basti. ¿Y tú?`
|
||||
|
||||
`Ángela: Me BLANK Ángela.`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`llamas`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is used to ask informal questions with the pronoun `tú` ("you").
|
||||
|
||||
---
|
||||
|
||||
`llaman`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is used to introduce a nickname.
|
||||
|
||||
---
|
||||
|
||||
`llamo`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is used to say one's own name.
|
||||
|
||||
# --explanation--
|
||||
|
||||
This dialogue has the words `llamas`, `llaman`, and `llamo`. Three variations of the verb `llamar` ("to call") used during introductions.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 0.76,
|
||||
"finishTimestamp": 10.84
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.75,
|
||||
"dialogue": {
|
||||
"text": "Hola, buenas tardes.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 2.97,
|
||||
"finishTime": 3.98,
|
||||
"dialogue": {
|
||||
"text": "¿Cómo te llamas?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 4.66
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 4.66
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 5.33,
|
||||
"finishTime": 6.6,
|
||||
"dialogue": {
|
||||
"text": "Mi nombre es Sebastián.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 7.02,
|
||||
"finishTime": 8.16,
|
||||
"dialogue": {
|
||||
"text": "Me llaman Basti.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 8.54,
|
||||
"finishTime": 9.03,
|
||||
"dialogue": {
|
||||
"text": "¿Y tú?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 9.42
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 9.42
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 9.82,
|
||||
"finishTime": 11.08,
|
||||
"dialogue": {
|
||||
"text": "Me llamo Ángela.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 11.58
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,184 @@
|
||||
---
|
||||
id: 691610efdd1f677c74eae91a
|
||||
title: Task 2
|
||||
challengeType: 22
|
||||
dashedName: task-2
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Sebastián: Mucho gusto, Ángela. ¿De dónde eres? -->
|
||||
<!-- (AUDIO) Ángela: Soy de El Salvador. Soy salvadoreña. ¿Y vos? -->
|
||||
<!-- (AUDIO) Sebastián: Soy de Guatemala. Soy guatemalteco. -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the dialogue with the correct words.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`Sebastián: Mucho BLANK, Ángela. ¿De dónde eres?`
|
||||
|
||||
`Ángela: Soy de BLANK. Soy salvadoreña. ¿Y vos?`
|
||||
|
||||
`Sebastián: Soy de Guatemala. Soy BLANK.`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`gusto`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word completes the polite phrase "Nice to meet you".
|
||||
|
||||
---
|
||||
|
||||
`El Salvador`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is a country from Central America.
|
||||
|
||||
---
|
||||
|
||||
`guatemalteco`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the masculine form of the nationality of someone who is from Guatemala.
|
||||
|
||||
# --explanation--
|
||||
|
||||
This dialogue includes the words `gusto`, `El Salvador`, and `guatemalteco` (in order).
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 12.5,
|
||||
"finishTimestamp": 24.61
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.18,
|
||||
"dialogue": {
|
||||
"text": "Mucho gusto, Ángela.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 2.5,
|
||||
"finishTime": 3.55,
|
||||
"dialogue": {
|
||||
"text": "¿De dónde eres?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 4.02
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 4.02
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 4.49,
|
||||
"finishTime": 6.34,
|
||||
"dialogue": {
|
||||
"text": "Soy de El Salvador.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 6.58,
|
||||
"finishTime": 7.94,
|
||||
"dialogue": {
|
||||
"text": "Soy salvadoreña.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 8.08,
|
||||
"finishTime": 8.7,
|
||||
"dialogue": {
|
||||
"text": "¿Y vos?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 9.26
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 9.26
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 9.82,
|
||||
"finishTime": 10.93,
|
||||
"dialogue": {
|
||||
"text": "Soy de Guatemala.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 11.68,
|
||||
"finishTime": 12.84,
|
||||
"dialogue": {
|
||||
"text": "Soy guatemalteco.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 13.34
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,161 @@
|
||||
---
|
||||
id: 691613b96a5856810fdcd106
|
||||
title: Task 3
|
||||
challengeType: 22
|
||||
dashedName: task-3
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Ángela: ¿Cuántos años tienes? -->
|
||||
<!--(AUDIO) Basti: Tengo veintiún años. ¿Y tú? -->
|
||||
<!--(AUDIO) Ángela: Tengo treinta y cinco años. -->
|
||||
|
||||
# --description--
|
||||
|
||||
Sebastián and Ángela are talking about their ages.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the dialogue with the correct words.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`Ángela: ¿Cuántos BLANK tienes?`
|
||||
|
||||
`Sebastián: Tengo BLANK años. ¿Y tú?`
|
||||
|
||||
`Ángela: Tengo BLANK años.`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`años`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This plural noun means "years".
|
||||
|
||||
---
|
||||
|
||||
`veintiún`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number twenty-one (21), used in its shortened form before the masculine plural noun `años` ("years").
|
||||
|
||||
---
|
||||
|
||||
`treinta y cinco`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the number thirty-five (35).
|
||||
|
||||
# --explanation--
|
||||
|
||||
This dialogue includes the words `años`, `veintiún`, and `treinta y cinco`.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 15,
|
||||
"z": 1.2
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 25.92,
|
||||
"finishTimestamp": 33.68
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.4,
|
||||
"dialogue": {
|
||||
"text": "¿Cuántos años tienes?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 3.09
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 3.09
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 3.77,
|
||||
"finishTime": 5.1,
|
||||
"dialogue": {
|
||||
"text": "Tengo 21 años.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 5.35,
|
||||
"finishTime": 5.85,
|
||||
"dialogue": {
|
||||
"text": "¿Y tú?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 6.37
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 6.37
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 6.88,
|
||||
"finishTime": 8.76,
|
||||
"dialogue": {
|
||||
"text": "Tengo 35 años.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 9.26
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,161 @@
|
||||
---
|
||||
id: 691615c732e6878518963786
|
||||
title: Task 4
|
||||
challengeType: 22
|
||||
dashedName: task-4
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Sebastián: ¿A qué te dedicas, Ángela? -->
|
||||
<!-- (AUDIO) Ángela: Soy representante de recursos humanos. ¿Y vos? -->
|
||||
<!-- (AUDIO) Sebastián: Soy analista junior. -->
|
||||
|
||||
# --description--
|
||||
|
||||
Ángela and Sebastián are talking about their professions.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the dialogue with the correct words.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`Sebastián: ¿A qué te BLANK, Ángela?`
|
||||
|
||||
`Ángela: Soy BLANK de recursos humanos. ¿Y vos?`
|
||||
|
||||
`Sebastián: Soy BLANK junior.`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`dedicas`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the `tú` ("you") form of the verb `dedicarse`.
|
||||
|
||||
---
|
||||
|
||||
`representante`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "representative".
|
||||
|
||||
---
|
||||
|
||||
`analista`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This noun means "analyst".
|
||||
|
||||
# --explanation--
|
||||
|
||||
This dialogue includes the words `dedicas`, `representante`, and `analista`.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 35.51,
|
||||
"finishTimestamp": 44.25
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.54,
|
||||
"dialogue": {
|
||||
"text": "¿A qué te dedicas, Ángela?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 3.16
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 3.16
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 3.79,
|
||||
"finishTime": 6.35,
|
||||
"dialogue": {
|
||||
"text": "Soy representante de recursos humanos.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 6.5,
|
||||
"finishTime": 7.08,
|
||||
"dialogue": {
|
||||
"text": "¿Y vos?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 7.72
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 7.72
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 8.36,
|
||||
"finishTime": 9.74,
|
||||
"dialogue": {
|
||||
"text": "Soy analista junior.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 10.24
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,122 @@
|
||||
---
|
||||
id: 6916172fb15c2b88c574ac88
|
||||
title: Task 5
|
||||
challengeType: 22
|
||||
dashedName: task-5
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (AUDIO) Ángela: Encantada de conocerte, Basti. -->
|
||||
<!-- (AUDIO) Sebastián: Igualmente. -->
|
||||
|
||||
# --description--
|
||||
|
||||
Ángela and Sebastián are ending their conversation after introducing themselves.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and complete the dialogue with the correct words.
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`Ángela: BLANK de conocerte, Basti.`
|
||||
|
||||
`Sebastián: BLANK.`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`Encantada`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "delighted".
|
||||
|
||||
---
|
||||
|
||||
`Igualmente`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "likewise".
|
||||
|
||||
# --explanation--
|
||||
|
||||
This dialogue includes the words `encantada` and `igualmente`.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company2-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 45.14,
|
||||
"finishTimestamp": 49.51
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 3.24,
|
||||
"dialogue": {
|
||||
"text": "Encantada de conocerte, Basti.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 3.89
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 1,
|
||||
"startTime": 3.89
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"startTime": 4.54,
|
||||
"finishTime": 5.37,
|
||||
"dialogue": {
|
||||
"text": "Igualmente.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Sebastián",
|
||||
"opacity": 0,
|
||||
"startTime": 5.87
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,127 @@
|
||||
---
|
||||
id: 6916190046c3a78bcf0b47c7
|
||||
title: Task 6
|
||||
challengeType: 22
|
||||
dashedName: task-6
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- NO AUDIO -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
This task doesn't have audio. Complete the dialogue below.
|
||||
|
||||
Ángela is starting her first day at her new job. She is introducing herself to her new colleagues. This is her conversation with Sebastián.
|
||||
|
||||
Write these words in the correct spot:
|
||||
|
||||
`conocerte`, `llamas`, `tú`, `humanos`, `Guatemala`, `dónde`, `dedicas`, `soy`, `tengo`
|
||||
|
||||
# --fillInTheBlank--
|
||||
|
||||
## --sentence--
|
||||
|
||||
`Ángela: Hola, buenas tardes. ¿Cómo te BLANK?`
|
||||
|
||||
`Sebastián: Mi nombre es Sebastián. Me llaman Basti. ¿Y BLANK?`
|
||||
|
||||
`Ángela: Me llamo Ángela.`
|
||||
|
||||
`Sebastián: Mucho gusto, Ángela. ¿De BLANK eres?`
|
||||
|
||||
`Ángela: BLANK de El Salvador. Soy salvadoreña. ¿Y vos?`
|
||||
|
||||
`Sebastián: Soy de BLANK. Soy guatemalteco.`
|
||||
|
||||
`Ángela: ¿Cuántos años tienes?`
|
||||
|
||||
`Sebastián: BLANK veintiún años. ¿Y tú?`
|
||||
|
||||
`Ángela: Tengo treinta y cinco años.`
|
||||
|
||||
`Sebastián: ¿A qué te BLANK, Ángela?`
|
||||
|
||||
`Ángela: Soy representante de recursos BLANK. ¿Y vos?`
|
||||
|
||||
`Sebastián: Soy analista junior.`
|
||||
|
||||
`Ángela: Encantada de BLANK, Basti.`
|
||||
|
||||
`Sebastián: Igualmente.`
|
||||
|
||||
## --blanks--
|
||||
|
||||
`llamas`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is a form of the verb `llamarse` ("to be called").
|
||||
|
||||
---
|
||||
|
||||
`tú`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the informal pronoun "you".
|
||||
|
||||
---
|
||||
|
||||
`dónde`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the question word "Where?"
|
||||
|
||||
---
|
||||
|
||||
`Soy`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the "I am" form of the verb `ser` ("to be").
|
||||
|
||||
---
|
||||
|
||||
`Guatemala`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is a country located in Central America.
|
||||
|
||||
---
|
||||
|
||||
`Tengo`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "I have".
|
||||
|
||||
---
|
||||
|
||||
`dedicas`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word is used to ask about someone's profession.
|
||||
|
||||
---
|
||||
|
||||
`humanos`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "human".
|
||||
|
||||
---
|
||||
|
||||
`conocerte`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This verb means "to meet you".
|
||||
|
||||
# --explanation--
|
||||
|
||||
The dialogue includes these words: `llamas`, `tú`, `dónde`, `soy`, `Guatemala`, `tengo`, `dedicas`, `humanos`, `conocerte` (in order).
|
||||
@@ -0,0 +1,58 @@
|
||||
---
|
||||
id: 69164c74aff66fc089750967
|
||||
title: Task 8
|
||||
challengeType: 19
|
||||
dashedName: task-8
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- SPEAKING -->
|
||||
<!-- (No Audio) -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
This task doesn't have audio. Read the question and choose the best reply for the given situation.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
If someone asks you `¿Cómo te llamas?` and your name is `Noris`, how could you reply?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Tengo veinticuatro años.`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This phrase means "I am twenty-four years old".
|
||||
|
||||
---
|
||||
|
||||
`Buenas tardes.`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is a greeting that means "Good afternoon".
|
||||
|
||||
---
|
||||
|
||||
`Soy argentina.`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This means "I am Argentine".
|
||||
|
||||
---
|
||||
|
||||
`Mi nombre es Noris.`
|
||||
|
||||
## --video-solution--
|
||||
|
||||
4
|
||||
|
||||
# --explanation--
|
||||
|
||||
The question `¿Cómo te llamas?` means "What is your name?"
|
||||
|
||||
Therefore, if your name is `Noris`, you can reply by saying `Mi nombre es Noris.`
|
||||
@@ -0,0 +1,56 @@
|
||||
---
|
||||
id: 69164df41ff49cc2f332be4c
|
||||
title: Task 12
|
||||
challengeType: 19
|
||||
dashedName: task-12
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- SPEAKING -->
|
||||
<!-- (No Audio) -->
|
||||
|
||||
# --instructions--
|
||||
|
||||
This task doesn't have audio. Read the question and choose the best reply for the given situation.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
How can you ask someone about their profession?
|
||||
|
||||
## --answers--
|
||||
|
||||
`¿A qué te dedicas?`
|
||||
|
||||
---
|
||||
|
||||
`¿Cuántos años tienes?`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This question asks "How old are you?"
|
||||
|
||||
---
|
||||
|
||||
`¿De dónde eres?`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This question asks "Where are you from?"
|
||||
|
||||
---
|
||||
|
||||
`¿Cómo te llamas?`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This question asks "What is your name?"
|
||||
|
||||
## --video-solution--
|
||||
|
||||
1
|
||||
|
||||
# --explanation--
|
||||
|
||||
To ask someone about their profession, you could use `¿A qué te dedicas?`, which means "What is your profession?" or "What do you do for a living?".
|
||||
@@ -18,219 +18,218 @@ To pass the quiz, you must correctly answer at least 9 of the 10 questions below
|
||||
|
||||
#### --text--
|
||||
|
||||
Placeholder question
|
||||
Complete the sentence: `_____ treinta años`:
|
||||
|
||||
#### --distractors--
|
||||
|
||||
Placeholder distractor 1
|
||||
`Voy`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 2
|
||||
`Soy`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 3
|
||||
`Estoy`
|
||||
|
||||
#### --answer--
|
||||
|
||||
Placeholder answer
|
||||
`Tengo`
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
Placeholder question
|
||||
How can you ask someone's age?
|
||||
|
||||
#### --distractors--
|
||||
|
||||
Placeholder distractor 1
|
||||
`¿Qué edad es?`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 2
|
||||
`¿Cuántos años es?`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 3
|
||||
`¿Cómo edad tienes?`
|
||||
|
||||
#### --answer--
|
||||
|
||||
Placeholder answer
|
||||
`¿Cuántos años tienes?`
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
Placeholder question
|
||||
How can you say that you are from Perú?
|
||||
|
||||
#### --distractors--
|
||||
|
||||
Placeholder distractor 1
|
||||
`Estoy de Perú.`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 2
|
||||
`Tengo de Perú.`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 3
|
||||
`Están en Perú.`
|
||||
|
||||
#### --answer--
|
||||
|
||||
Placeholder answer
|
||||
`Soy de Perú.`
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
Placeholder question
|
||||
Which is the most appropriate way to ask someone their name?
|
||||
|
||||
#### --distractors--
|
||||
|
||||
Placeholder distractor 1
|
||||
`Mi nombre es...`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 2
|
||||
`¿Qué nombre te dieron?`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 3
|
||||
`¿Cómo te dicen?`
|
||||
|
||||
#### --answer--
|
||||
|
||||
Placeholder answer
|
||||
`¿Cómo te llamas?`
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
Placeholder question
|
||||
If someone asks you `¿A qué te dedicas?`, what are they asking you about?
|
||||
|
||||
#### --distractors--
|
||||
|
||||
Placeholder distractor 1
|
||||
Your nationality
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 2
|
||||
Your name
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 3
|
||||
Your address
|
||||
|
||||
#### --answer--
|
||||
|
||||
Placeholder answer
|
||||
Your profession
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
Placeholder question
|
||||
If you are talking to someone and that person says `Soy panameño`, this is expressing their:
|
||||
|
||||
#### --distractors--
|
||||
|
||||
Placeholder distractor 1
|
||||
Age
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 2
|
||||
Salary
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 3
|
||||
Name
|
||||
|
||||
#### --answer--
|
||||
|
||||
Placeholder answer
|
||||
Nationality
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
Placeholder question
|
||||
What does the phrase `Encantado de conocerte` mean?
|
||||
|
||||
#### --distractors--
|
||||
|
||||
Placeholder distractor 1
|
||||
You are awesome.
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 2
|
||||
I don't want to see you again.
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 3
|
||||
See you later.
|
||||
|
||||
#### --answer--
|
||||
|
||||
Placeholder answer
|
||||
Nice to meet you.
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
Placeholder question
|
||||
How can you return the compliment when someone tells you `Mucho gusto` or `Encantada`?
|
||||
|
||||
#### --distractors--
|
||||
|
||||
Placeholder distractor 1
|
||||
`Hasta pronto`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 2
|
||||
`Adiós`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 3
|
||||
`Gracias`
|
||||
|
||||
#### --answer--
|
||||
|
||||
Placeholder answer
|
||||
`Igualmente`
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
Placeholder question
|
||||
If a **female** person is from Guatemala, their nationality is:
|
||||
|
||||
#### --distractors--
|
||||
|
||||
Placeholder distractor 1
|
||||
`Guatemalteco`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 2
|
||||
`Guatemaliño`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 3
|
||||
`Guatemalense`
|
||||
|
||||
#### --answer--
|
||||
|
||||
Placeholder answer
|
||||
|
||||
`Guatemalteca`
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
Placeholder question
|
||||
Complete the sentence: `¿Cuántos años _____?`
|
||||
|
||||
#### --distractors--
|
||||
|
||||
Placeholder distractor 1
|
||||
`eres`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 2
|
||||
`estás`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 3
|
||||
`haces`
|
||||
|
||||
#### --answer--
|
||||
|
||||
Placeholder answer
|
||||
`tienes`
|
||||
|
||||
@@ -1,59 +0,0 @@
|
||||
---
|
||||
id: 68dc75d172549d787975d2fc
|
||||
title: Task 1
|
||||
challengeType: 24
|
||||
dashedName: task-1
|
||||
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,96 @@
|
||||
---
|
||||
id: 6910a23b05a7eb4386e6e730
|
||||
title: Grammar Highlights
|
||||
challengeType: 24
|
||||
dashedName: grammar-highlights
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- GRAMMAR HIGHLIGHTS -->
|
||||
|
||||
# --description--
|
||||
|
||||
Congratulations! You're almost done with this module.
|
||||
|
||||
The article below will help you review some key grammar points covered in the tasks, so you can feel confident before taking the Module Quiz.
|
||||
|
||||
## Grammar Highlights
|
||||
|
||||
### Talking about Origin
|
||||
|
||||
To say where you are from, you should use: **`Soy` + `de` + [country]**. For example:
|
||||
|
||||
- `Soy de El Salvador.`
|
||||
|
||||
- `Soy de Guatemala.`
|
||||
|
||||
To know where someone is from, ask `¿De dónde eres?`.
|
||||
|
||||
<br>
|
||||
|
||||
### Talking About Nationality
|
||||
|
||||
To say your nationality, you should use: **`Soy` + [nationality]**.
|
||||
|
||||
- `Soy salvadoreña.`
|
||||
|
||||
- `Soy guatemalteco.`
|
||||
|
||||
These are some of the nationalities you've learned so far:
|
||||
|
||||
| Country | Masculine Form | Feminine Form |
|
||||
| :--- | :--- | :--- |
|
||||
| **`El Salvador`** | `salvadoreño` | `salvadoreña` |
|
||||
| **`Guatemala`** | `guatemalteco` | `guatemalteca` |
|
||||
| **`Colombia`** | `colombiano` | `colombiana` |
|
||||
| **`Argentina`** | `argentino` | `argentina` |
|
||||
| **`Uruguay`** | `uruguayo` | `uruguaya` |
|
||||
| **`Puerto Rico`** | `puertorriqueño` | `puertorriqueña` |
|
||||
| **`Chile`** | `chileno` | `chilena` |
|
||||
| **`Perú`** | `peruano` | `peruana` |
|
||||
|
||||
In Spanish, nationalities typically change with gender. If a nationality ends with `-o`, this last letter is usually replaced by an `-a` to create the feminine form.
|
||||
|
||||
However, nationalities that end with a consonant often add an `-a` to create the feminine form. For example, the masculine form of someone from `España` ("Spain") is `español`, while the feminine form is `española`.
|
||||
|
||||
Nationalities that end in `-e` or `-í` are usually the same for both genders. For example the masculine form of someone from `Estados Unidos` ("United States") is `estadounidense`, while the feminine form is also `estadounidense`.
|
||||
|
||||
<br>
|
||||
|
||||
### Talking About Profession
|
||||
|
||||
To say your profession, you should use: **`Soy` + [profession]**. For example:
|
||||
|
||||
- `Soy representante de recursos humanos.`
|
||||
|
||||
- `Soy analista junior.`
|
||||
|
||||
Use this question to ask someone about their profession: `¿A qué te dedicas?`.
|
||||
|
||||
<br>
|
||||
|
||||
### Talking About Age
|
||||
|
||||
To say your age in Spanish, you should use: **`Tengo` + [number] + `años`**. For example:
|
||||
|
||||
- `Tengo veintiún años.`
|
||||
|
||||
- `Tengo treinta y cinco años.`
|
||||
|
||||
You can use this question to ask someone's age: `¿Cuántos años tienes?`.
|
||||
|
||||
<br>
|
||||
|
||||
### Being Politely During Introductions
|
||||
|
||||
There are three important courtesy expressions in Spanish.
|
||||
|
||||
**`Mucho gusto`** means "Nice to meet you". It's a polite way of saying that you are glad to meet someone. This phrase is gender-neutral.
|
||||
|
||||
**`Encantada`** also means "Nice to meet you", but it's a more expressive way of saying that you are delighted to meet someone. It must agree with the gender of the speaker. Its feminine form is `Encantada`, while its masculine form is `Encantado`.
|
||||
|
||||
**`Igualmente`** means "Likewise". It's used to politely return what the other person expressed, without repeating it.
|
||||
|
||||
# --assignment--
|
||||
|
||||
I confirm I read the grammar highlights.
|
||||
@@ -0,0 +1,115 @@
|
||||
---
|
||||
id: 6910a2da60b9e944f13240a0
|
||||
title: Glossary
|
||||
challengeType: 24
|
||||
dashedName: glossary
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- GLOSSARY -->
|
||||
|
||||
# --description--
|
||||
|
||||
## Glossary
|
||||
|
||||
This Glossary is a quick reference for the most important words and phrases from the content you've worked with in this module. The words are organized by category and in alphabetical order.
|
||||
|
||||
### Greetings and Introductions
|
||||
|
||||
- `Buenas tardes` - Good afternoon
|
||||
|
||||
- `Conocerte` - To meet you
|
||||
|
||||
- `Encantada` / `Encantado` - Delighted
|
||||
|
||||
- `Hola` - Hello
|
||||
|
||||
- `Igualmente` - Likewise
|
||||
|
||||
- `Me llaman` - They call me
|
||||
|
||||
- `Mi nombre es` - My name is
|
||||
|
||||
- `Mucho gusto` - Nice to meet you
|
||||
|
||||
<br>
|
||||
|
||||
### Questions
|
||||
|
||||
- `¿A qué te dedicas?` - What is your profession?
|
||||
|
||||
- `¿Cómo te llamas?` - What is your name?
|
||||
|
||||
- `¿Cuántos años tienes?` - How old are you?
|
||||
|
||||
- `¿De dónde eres?` - Where are you from?
|
||||
|
||||
- `¿Y tú?` - And you?
|
||||
|
||||
- `¿Y vos?` - And you? (Regional variation)
|
||||
|
||||
<br>
|
||||
|
||||
### People and Identity
|
||||
|
||||
- `Eres` - You are
|
||||
|
||||
- `Soy` - I am
|
||||
|
||||
<br>
|
||||
|
||||
### Professions and Work
|
||||
|
||||
- `Analista` - Analyst
|
||||
|
||||
- `Datos` - Data
|
||||
|
||||
- `Ingeniera` / `Ingeniero` - Engineer
|
||||
|
||||
- `Junior` - Junior
|
||||
|
||||
- `Recursos humanos` - Human resources
|
||||
|
||||
- `Representante` - Representative
|
||||
|
||||
- `Software` - Software
|
||||
|
||||
<br>
|
||||
|
||||
### Location and Origin
|
||||
|
||||
- `Colombia` - Colombia
|
||||
|
||||
- `Colombiana` / `Colombiano` - Colombian
|
||||
|
||||
- `De` - From
|
||||
|
||||
- `El Salvador` - El Salvador
|
||||
|
||||
- `Guatemala` - Guatemala
|
||||
|
||||
- `Guatemalteca` / `Guatemalteco` - Guatemalan
|
||||
|
||||
- `Puerto Rico` - Puerto Rico
|
||||
|
||||
- `Puertorriqueña` / `Puertorriqueño` - Puerto Rican
|
||||
|
||||
- `Salvadoreña` / `Salvadoreño` - Salvadoran
|
||||
|
||||
<br>
|
||||
|
||||
### Numbers
|
||||
|
||||
- `Treinta` - Thirty
|
||||
|
||||
- `Treinta y cinco` - Thirty-five
|
||||
|
||||
- `Treinta y seis` - Thirty-six
|
||||
|
||||
- `Veintiuno` - Twenty-one
|
||||
|
||||
- `Veinticinco` - Twenty-five
|
||||
|
||||
# --assignment--
|
||||
|
||||
I confirm I read the glossary.
|
||||
@@ -1,58 +1,108 @@
|
||||
---
|
||||
id: 68dc7578ad62ca74e21c23e0
|
||||
title: "Task 1"
|
||||
challengeType: 24
|
||||
title: Task 1
|
||||
challengeType: 19
|
||||
dashedName: task-1
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (Audio) Ángela: Me llamo Ángela -->
|
||||
|
||||
# --description--
|
||||
|
||||
Watch the video below to understand the context of the upcoming lessons.
|
||||
Ángela wants to introduce herself. She is using a common phrase for this in Spanish.
|
||||
|
||||
# --assignment--
|
||||
# --instructions--
|
||||
|
||||
Watch the video.
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
Which one of these phrases is Ángela using to introduce herself?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Llamo Ángela.`
|
||||
|
||||
### --feedback--
|
||||
|
||||
The word `me` should be in the phrase.
|
||||
|
||||
---
|
||||
|
||||
`Me llamo Ángela.`
|
||||
|
||||
---
|
||||
|
||||
`Trabajo con Ángela.`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This phrase means "I work with Ángela". This is not an introduction.
|
||||
|
||||
---
|
||||
|
||||
`Soy Ángela.`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is an alternative way to introduce yourself, but Ángela is using a different phrase.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
2
|
||||
|
||||
# --explanation--
|
||||
|
||||
The phrase `Me llamo Ángela` means "My name is Ángela".
|
||||
|
||||
This is the most common way to introduce yourself in Spanish, using the verb `llamar`.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "chaos.png",
|
||||
"background": "company3-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "David",
|
||||
"position": {"x":50,"y":80,"z":8},
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "1.1-1.mp3",
|
||||
"filename": "ES_A1_3.1.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 5.7,
|
||||
"finishTimestamp": 6.48
|
||||
"startTimestamp": 9.58,
|
||||
"finishTimestamp": 10.84
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "David",
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "David",
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 0.78,
|
||||
"finishTime": 2.26,
|
||||
"dialogue": {
|
||||
"text": "I'm Tom.",
|
||||
"text": "Me llamo Ángela.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Tom",
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 1.28
|
||||
"startTime": 2.76
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -0,0 +1,111 @@
|
||||
---
|
||||
id: 690e399dcbcca11f0f171613
|
||||
title: Task 2
|
||||
challengeType: 19
|
||||
dashedName: task-2
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (Audio) Ángela: ¿Cómo? -->
|
||||
|
||||
# --description--
|
||||
|
||||
Ángela is starting a question with a word that is commonly used to ask "How?" in Spanish.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What word is Ángela using to ask "How?"
|
||||
|
||||
## --answers--
|
||||
|
||||
`¿Qué...?`
|
||||
|
||||
### --feedback--
|
||||
|
||||
The word `Qué` means "What" in Spanish, not "How".
|
||||
|
||||
---
|
||||
|
||||
`¿Cuándo...?`
|
||||
|
||||
### --feedback--
|
||||
|
||||
The word `Cuándo` means "When" in Spanish, not "How".
|
||||
|
||||
---
|
||||
|
||||
`¿Cómo...?`
|
||||
|
||||
---
|
||||
|
||||
`¿Dónde...?`
|
||||
|
||||
### --feedback--
|
||||
|
||||
The word `Dónde` means "Where" in Spanish, not "How".
|
||||
|
||||
## --video-solution--
|
||||
|
||||
3
|
||||
|
||||
# --explanation--
|
||||
|
||||
The word `Cómo` means "How".
|
||||
|
||||
It's used in questions like `¿Cómo estás?` ("How are you?").
|
||||
|
||||
In Spanish, when the word `cómo` is used to ask a question, it carries an accent mark in the first letter `o`.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company3-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_first_questions_warmup.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 4.05,
|
||||
"finishTimestamp": 4.78
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.73,
|
||||
"dialogue": {
|
||||
"text": "¿Cómo...?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 2.23
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,109 @@
|
||||
---
|
||||
id: 690e3b36537bbb20f7c1d62f
|
||||
title: Task 3
|
||||
challengeType: 19
|
||||
dashedName: task-3
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (Audio) Ángela: Soy de El Salvador. -->
|
||||
|
||||
# --description--
|
||||
|
||||
Ángela is using a common way to say where she is from in Spanish.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What is Ángela saying?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Estoy de Uruguay.`
|
||||
|
||||
### --feedback--
|
||||
|
||||
The verb `estar` is used for temporary states or locations. To say where someone is from, you must use the verb `ser`.
|
||||
|
||||
---
|
||||
|
||||
`Tengo El Salvador.`
|
||||
|
||||
### --feedback--
|
||||
|
||||
The verb `tener` means "to have". To say where someone is from, you must use the verb `ser` instead.
|
||||
|
||||
---
|
||||
|
||||
`Somos de Guatemala.`
|
||||
|
||||
### --feedback--
|
||||
|
||||
The verb `somos` means "we are". Ángela is speaking about herself, so she uses the "I" form (`yo`) of the verb `ser`.
|
||||
|
||||
---
|
||||
|
||||
`Soy de El Salvador.`
|
||||
|
||||
## --video-solution--
|
||||
|
||||
4
|
||||
|
||||
# --explanation--
|
||||
|
||||
Ángela says `Soy de El Salvador`, which translates to "I am from El Salvador."
|
||||
|
||||
This is a common way to say where you are from in Spanish.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company3-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_first_questions_warmup.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 5.79,
|
||||
"finishTimestamp": 7.82
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 3.03,
|
||||
"dialogue": {
|
||||
"text": "Soy de El Salvador.",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 3.53
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,114 @@
|
||||
---
|
||||
id: 690e3d643e0cf5269fc248dc
|
||||
title: Task 4
|
||||
challengeType: 19
|
||||
dashedName: task-4
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (Audio) Ángela: Salvadoreña. -->
|
||||
|
||||
# --description--
|
||||
|
||||
Ángela is mentioning the nationality of someone who was born in El Salvador.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What nationality is Ángela mentioning?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Salvadoreño`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This form is correct for a male person who was born in El Salvador. However, Ángela is mentioning the feminine form of this nationality.
|
||||
|
||||
---
|
||||
|
||||
`Salvadorana`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Try again. Ángela mentions something different.
|
||||
|
||||
---
|
||||
|
||||
`Salvadoreña`
|
||||
|
||||
---
|
||||
|
||||
`Salvadorense`
|
||||
|
||||
### --feedback--
|
||||
|
||||
The correct nationality is different and includes an `ñ`.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
3
|
||||
|
||||
# --explanation--
|
||||
|
||||
The word `Salvadoreña` is the feminine form of the nationality of someone from El Salvador.
|
||||
|
||||
Nationalities must agree in gender with the person they describe. For example:
|
||||
|
||||
| Gender | Nationality | Example |
|
||||
| :--- | :--- | :--- |
|
||||
| **Feminine** | `Salvadoreña` | `Ella es salvadoreña.` ("She is Salvadoran".) |
|
||||
| **Masculine** | `Salvadoreño` | `Él es salvadoreño.` ("He is Salvadoran".) |
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company3-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_first_questions_warmup.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 8.97,
|
||||
"finishTimestamp": 10.3
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.33,
|
||||
"dialogue": {
|
||||
"text": "Salvadoreña",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 2.83
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,114 @@
|
||||
---
|
||||
id: 690e428065f59a2b48813c79
|
||||
title: Task 5
|
||||
challengeType: 19
|
||||
dashedName: task-5
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (Audio) Ángela: Guatemalteco. -->
|
||||
|
||||
# --description--
|
||||
|
||||
Ángela is mentioning the nationality of someone who was born in Guatemala.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What nationality is Ángela mentioning?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Guatemalteca`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This form is correct for a female from Guatemala. Ángela is mentioning the masculine form of this nationality.
|
||||
|
||||
---
|
||||
|
||||
`Guatemalense`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Try again. This is not the correct word.
|
||||
|
||||
---
|
||||
|
||||
`Guatemalteco`
|
||||
|
||||
---
|
||||
|
||||
`Guatemalaño`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word is not correct. Ángela mentions something different.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
3
|
||||
|
||||
# --explanation--
|
||||
|
||||
The word `Guatemalteco` is the masculine form of the nationality of someone from Guatemala.
|
||||
|
||||
Nationalities must agree in gender with the person they describe.
|
||||
|
||||
| Gender | Nationality | Example |
|
||||
| :--- | :--- | :--- |
|
||||
| **Feminine** | `Guatemalteca` | `Ella es guatemalteca.` ("She is Guatemalan.") |
|
||||
| **Masculine** | `Guatemalteco` | `Él es guatemalteco.` ("He is Guatemalan.") |
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company3-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_first_questions_warmup.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 11.24,
|
||||
"finishTimestamp": 12.7
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.46,
|
||||
"dialogue": {
|
||||
"text": "Guatemalteco",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 2.96
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,109 @@
|
||||
---
|
||||
id: 690e44b76dc8f52d638e82b7
|
||||
title: Task 6
|
||||
challengeType: 19
|
||||
dashedName: task-6
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (Audio) Ángela: ¿De dónde? -->
|
||||
|
||||
# --description--
|
||||
|
||||
Ángela is using a common way to start a question about where a person is from.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
How is Ángela starting the question?
|
||||
|
||||
## --answers--
|
||||
|
||||
`¿Por qué…?`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This phrase means "Why...?", which is used to ask about a reason, not a place of origin.
|
||||
|
||||
---
|
||||
|
||||
`¿Qué es…?`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This phrase means "What is...?", which is used to ask about identity or definition, not origin.
|
||||
|
||||
---
|
||||
|
||||
`¿De dónde…?`
|
||||
|
||||
---
|
||||
|
||||
`¿Dónde…?`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This phrase means "Where...?" but it's missing the important preposition `de` ("from") to ask about origin.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
3
|
||||
|
||||
# --explanation--
|
||||
|
||||
The question starter `¿De dónde…?` means "From where...?" and it's commonly used to ask about a person's origin.
|
||||
|
||||
The preposition `de` ("from") is very important because omitting it changes the meaning of the phrase.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company3-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_first_questions_warmup.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 13.81,
|
||||
"finishTimestamp": 14.8
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.99,
|
||||
"dialogue": {
|
||||
"text": "¿De dónde...?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 2.49
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,107 @@
|
||||
---
|
||||
id: 690e4698c0492430e49c3705
|
||||
title: Task 7
|
||||
challengeType: 19
|
||||
dashedName: task-7
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (Audio) Ángela: ¿A qué? -->
|
||||
|
||||
# --description--
|
||||
|
||||
Ángela wants to ask someone about their profession. She is using a common way to start her question in Spanish.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
How is Ángela starting her question?
|
||||
|
||||
## --answers--
|
||||
|
||||
`¿A qué…?`
|
||||
|
||||
---
|
||||
|
||||
`¿Qué es…?`
|
||||
|
||||
### --feedback--
|
||||
|
||||
Try again. This phrase means "What is...?" and it's not used to ask about professions.
|
||||
|
||||
---
|
||||
|
||||
`¿Por qué…?`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This phrase means "Why...?". It's used to ask about a reason, not a profession.
|
||||
|
||||
---
|
||||
|
||||
`¿Para cuándo…?`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This phrase means "By when...?". It's used to ask about a deadline or future time, not a profession.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
1
|
||||
|
||||
# --explanation--
|
||||
|
||||
The question starter `¿A qué…?` (specifically in the phrase `¿A qué te dedicas?`) is a very common and polite way to ask someone about their job or profession.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company3-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_first_questions_warmup.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 15.88,
|
||||
"finishTimestamp": 16.59
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.71,
|
||||
"dialogue": {
|
||||
"text": "¿A qué...?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 2.21
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,109 @@
|
||||
---
|
||||
id: 690e48893869863487c9d8af
|
||||
title: Task 8
|
||||
challengeType: 19
|
||||
dashedName: task-8
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (Audio) Ángela: ¿Cuántos? -->
|
||||
|
||||
# --description--
|
||||
|
||||
Ángela is asking about someone’s age. She starts her question with a word that literally means "how many" in Spanish.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What word is Ángela using to start her question?
|
||||
|
||||
## --answers--
|
||||
|
||||
`¿Qué…?`
|
||||
|
||||
### --feedback--
|
||||
|
||||
The word `Qué` means "What". It's not used for asking about someone's age.
|
||||
|
||||
---
|
||||
|
||||
`¿Cómo…?`
|
||||
|
||||
### --feedback--
|
||||
|
||||
The word `Cómo` means "How". It's not used to ask about someone's age.
|
||||
|
||||
---
|
||||
|
||||
`¿Cuántos…?`
|
||||
|
||||
---
|
||||
|
||||
`¿Cuál…?`
|
||||
|
||||
### --feedback--
|
||||
|
||||
The word `Cuál` means "Which" or "What" (when selecting from options). It's not used to ask about someone's age.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
3
|
||||
|
||||
# --explanation--
|
||||
|
||||
The word `Cuántos` translates to "How many" and it's used to ask about a quantity.
|
||||
|
||||
It should have an accent mark in the letter `a` when it's part of a question.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company3-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_first_questions_warmup.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 18.05,
|
||||
"finishTimestamp": 19.07
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.02,
|
||||
"dialogue": {
|
||||
"text": "¿Cuántos...?",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 2.52
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,111 @@
|
||||
---
|
||||
id: 690e4ae1ec236137adc148a1
|
||||
title: Task 15
|
||||
challengeType: 19
|
||||
dashedName: task-15
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (Audio) Ángela: Mucho gusto. -->
|
||||
|
||||
# --description--
|
||||
|
||||
Ángela is meeting someone for the first time and wants to be polite, so she replies with this common phrase used during introductions.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What phrase is Ángela using to reply?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Estoy bien`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This phrase means "I am okay", not a reply to an introduction.
|
||||
|
||||
---
|
||||
|
||||
`¿Cómo estás?`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This phrase means "How are you?". It's commonly used to start a conversation, not as a reply to an introduction.
|
||||
|
||||
---
|
||||
|
||||
`Gracias`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "Thank you". While this is polite, it's not used to reply to an introduction.
|
||||
|
||||
---
|
||||
|
||||
`Mucho gusto`
|
||||
|
||||
## --video-solution--
|
||||
|
||||
4
|
||||
|
||||
# --explanation--
|
||||
|
||||
The phrase `Mucho gusto` means "Nice to meet you".
|
||||
|
||||
It's the polite and most common way to reply to someone who introduces themselves.
|
||||
|
||||
It's used in both formal and informal settings.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company3-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_first_questions_warmup.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 20.11,
|
||||
"finishTimestamp": 21.17
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.06,
|
||||
"dialogue": {
|
||||
"text": "Mucho gusto",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 2.56
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,114 @@
|
||||
---
|
||||
id: 690e4ce4d95c5c3ab09f2700
|
||||
title: Task 16
|
||||
challengeType: 19
|
||||
dashedName: task-16
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (Audio) Ángela: Encantada. -->
|
||||
|
||||
# --description--
|
||||
|
||||
Ángela is using an alternative introductory word that is equivalent to "Pleased to meet you".
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What word is Ángela using?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Encantado`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This is the masculine form of the word that Ángela is using. Since Ángela is a female, she should use the feminine form instead.
|
||||
|
||||
---
|
||||
|
||||
`Agradable`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word is not used for introductions.
|
||||
|
||||
---
|
||||
|
||||
`Estupenda`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word is not used for introductions.
|
||||
|
||||
---
|
||||
|
||||
`Encantada`
|
||||
|
||||
## --video-solution--
|
||||
|
||||
4
|
||||
|
||||
# --explanation--
|
||||
|
||||
The word `Encantada` is an alternative, common way for a female speaker to say "Pleased to meet you".
|
||||
|
||||
It means "charmed" or "delighted".
|
||||
|
||||
| Form | Gender | Speaker | Meaning |
|
||||
| :--- | :--- | :--- | :--- |
|
||||
| `Encantado` | Masculine (`-o`) | Male Speaker | Pleased to meet you. |
|
||||
| `Encantada` | Feminine (`-a`) | Female Speaker | Pleased to meet you. |
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company3-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_first_questions_warmup.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 22.13,
|
||||
"finishTimestamp": 23.22
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.09,
|
||||
"dialogue": {
|
||||
"text": "Encantada",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 2.59
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,109 @@
|
||||
---
|
||||
id: 690e4e299e38f83d039e4811
|
||||
title: Task 17
|
||||
challengeType: 19
|
||||
dashedName: task-17
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (Audio) Ángela: Igualmente. -->
|
||||
|
||||
# --description--
|
||||
|
||||
Ángela is using a polite response to say the same nice thing back to someone.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What response is Ángela using?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Gracias`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means "Thank you". It's used for a different purpose.
|
||||
|
||||
---
|
||||
|
||||
`Igualmente`
|
||||
|
||||
---
|
||||
|
||||
`De nada`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This phrase means "You're welcome". It's used for a different purpose.
|
||||
|
||||
---
|
||||
|
||||
`Muy bien`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This phrase means "Very well". It's used for a different purpose.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
2
|
||||
|
||||
# --explanation--
|
||||
|
||||
The word `Igualmente` translates to "Likewise".
|
||||
|
||||
You can use it as a quick reply to give a nice greeting or compliment back to the person who said it to you.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company3-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_first_questions_warmup.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 24.17,
|
||||
"finishTimestamp": 25.28
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.11,
|
||||
"dialogue": {
|
||||
"text": "Igualmente",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 2.61
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,109 @@
|
||||
---
|
||||
id: 690e50f994b82a40ab8664b8
|
||||
title: Task 18
|
||||
challengeType: 19
|
||||
dashedName: task-18
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (Audio) Ángela: Representante de recursos humanos. -->
|
||||
|
||||
# --description--
|
||||
|
||||
Ángela is referring to the profession which manages and supports employees in areas like hiring and benefits.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What profession is Angela referring to?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Gerente de marketing`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This means "Marketing Manager". It's a different profession.
|
||||
|
||||
---
|
||||
|
||||
`Ingeniero de software`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This means "Software Engineer". It's a different profession.
|
||||
|
||||
---
|
||||
|
||||
`Asistente administrativo`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This means "Administrative Assistant". It's a different profession.
|
||||
|
||||
---
|
||||
|
||||
`Representante de recursos humanos`
|
||||
|
||||
## --video-solution--
|
||||
|
||||
4
|
||||
|
||||
# --explanation--
|
||||
|
||||
`Recursos humanos` means "Human resources".
|
||||
|
||||
The `representante de recursos humanos` ("Human Resources Representative") is the person responsible for managing and supporting the employees, including areas like contracts, benefits, and hiring.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company3-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_first_questions_warmup.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 26.22,
|
||||
"finishTimestamp": 28.95
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 3.73,
|
||||
"dialogue": {
|
||||
"text": "Representante de recursos humanos",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 4.23
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,109 @@
|
||||
---
|
||||
id: 690e52572154034292be27f5
|
||||
title: Task 19
|
||||
challengeType: 19
|
||||
dashedName: task-19
|
||||
lang: es
|
||||
---
|
||||
|
||||
<!-- (Audio) Ángela: Analista junior -->
|
||||
|
||||
# --description--
|
||||
|
||||
Ángela is referring to the profession of an entry-level professional who performs basic data analysis and administrative tasks to support senior team members.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What profession is Ángela referring to?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Analista junior`
|
||||
|
||||
---
|
||||
|
||||
`Analista senior`
|
||||
|
||||
### --feedback--
|
||||
|
||||
The word `senior` refers to a higher-level professional, not an entry-level or junior role.
|
||||
|
||||
---
|
||||
|
||||
`Gerente`
|
||||
|
||||
### --feedback--
|
||||
|
||||
The word `Gerente` means "Manager", which is a management role, not a junior role.
|
||||
|
||||
---
|
||||
|
||||
`Ingeniero de sistemas`
|
||||
|
||||
### --feedback--
|
||||
|
||||
`Ingeniero de sistemas` means "Systems Engineer". This is not an entry-level data analysis role.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
1
|
||||
|
||||
# --explanation--
|
||||
|
||||
The job title `analista junior` translates directly to "Junior Analyst".
|
||||
|
||||
The word `junior` ("Junior") is used to indicate an entry-level role.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company3-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_first_questions_warmup.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 29.63,
|
||||
"finishTimestamp": 30.98
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.35,
|
||||
"dialogue": {
|
||||
"text": "Analista Junior",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 2.85
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,105 @@
|
||||
---
|
||||
id: 6914e14b15579d2610af5c54
|
||||
title: Task 9
|
||||
challengeType: 19
|
||||
dashedName: task-9
|
||||
lang: es
|
||||
---
|
||||
|
||||
# --description--
|
||||
|
||||
Ángela is practicing how to say the number 21 in Spanish.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What is Ángela saying?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Veintiuno`
|
||||
|
||||
---
|
||||
|
||||
`Veintidós`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means 22. Ángela is mentioning a different number.
|
||||
|
||||
---
|
||||
|
||||
`Treinta y uno`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means 31. Ángela is mentioning a different number.
|
||||
|
||||
---
|
||||
|
||||
`Veinticinco`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means 25. Ángela is mentioning a different number.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
1
|
||||
|
||||
# --explanation--
|
||||
|
||||
Ángela is saying `veintiuno`, which means "twenty-one" (21).
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company3-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_first_questions_numbers.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 0.39,
|
||||
"finishTimestamp": 1.42
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.03,
|
||||
"dialogue": {
|
||||
"text": "Veintiuno",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 2.53
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,105 @@
|
||||
---
|
||||
id: 6914e158fc489627068929d5
|
||||
title: Task 11
|
||||
challengeType: 19
|
||||
dashedName: task-11
|
||||
lang: es
|
||||
---
|
||||
|
||||
# --description--
|
||||
|
||||
Ángela is practicing how to say the number 25 in Spanish.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What is Ángela saying?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Veintiocho`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means 28. Ángela is mentioning a different number.
|
||||
|
||||
---
|
||||
|
||||
`Veintidós`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means 22. Ángela is mentioning a different number.
|
||||
|
||||
---
|
||||
|
||||
`Veintitrés`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means 23. Ángela is mentioning a different number.
|
||||
|
||||
---
|
||||
|
||||
`Veinticinco`
|
||||
|
||||
## --video-solution--
|
||||
|
||||
4
|
||||
|
||||
# --explanation--
|
||||
|
||||
Ángela is saying `veinticinco`, which means "twenty-five" (25).
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company3-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_first_questions_numbers.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 4.6,
|
||||
"finishTimestamp": 5.85
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.25,
|
||||
"dialogue": {
|
||||
"text": "Veinticinco",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 2.75
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,105 @@
|
||||
---
|
||||
id: 6914e7f76afe9430861af32c
|
||||
title: Task 12
|
||||
challengeType: 19
|
||||
dashedName: task-12
|
||||
lang: es
|
||||
---
|
||||
|
||||
# --description--
|
||||
|
||||
Ángela is practicing how to say the number 30 in Spanish.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What is Ángela saying?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Veintiuno`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means 21. Ángela is mentioning a different number.
|
||||
|
||||
---
|
||||
|
||||
`Veintinueve`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means 29. Ángela is mentioning a different number.
|
||||
|
||||
---
|
||||
|
||||
`Treinta y dos`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means 32. Ángela is mentioning a different number.
|
||||
|
||||
---
|
||||
|
||||
`Treinta`
|
||||
|
||||
## --video-solution--
|
||||
|
||||
4
|
||||
|
||||
# --explanation--
|
||||
|
||||
Ángela is saying `treinta`, which means "thirty" (30).
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company3-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_first_questions_numbers.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 6.98,
|
||||
"finishTimestamp": 7.66
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.68,
|
||||
"dialogue": {
|
||||
"text": "Treinta",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 2.18
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,105 @@
|
||||
---
|
||||
id: 6914e870b77341326df3f70e
|
||||
title: Task 13
|
||||
challengeType: 19
|
||||
dashedName: task-13
|
||||
lang: es
|
||||
---
|
||||
|
||||
# --description--
|
||||
|
||||
Ángela is practicing how to say the number 35 in Spanish.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What is Ángela saying?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Treinta y tres`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means 33. Ángela is mentioning a different number.
|
||||
|
||||
---
|
||||
|
||||
`Treinta y ocho`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means 38. Ángela is mentioning a different number.
|
||||
|
||||
---
|
||||
|
||||
`Treinta y cinco`
|
||||
|
||||
---
|
||||
|
||||
`Treinta y cuatro`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means 34. Ángela is mentioning a different number.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
3
|
||||
|
||||
# --explanation--
|
||||
|
||||
Ángela is saying `treinta y cinco`, which means "thirty-five" (35).
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company3-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_first_questions_numbers.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 8.78,
|
||||
"finishTimestamp": 9.95
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.17,
|
||||
"dialogue": {
|
||||
"text": "Treinta y cinco",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 2.67
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,105 @@
|
||||
---
|
||||
id: 6914e8d79ff89933f84f8ddf
|
||||
title: Task 14
|
||||
challengeType: 19
|
||||
dashedName: task-14
|
||||
lang: es
|
||||
---
|
||||
|
||||
# --description--
|
||||
|
||||
Ángela is practicing how to say the number 36 in Spanish.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What is Ángela saying?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Treinta y uno`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means 31. Ángela is mentioning a different number.
|
||||
|
||||
---
|
||||
|
||||
`Treinta y siete`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means 37. Ángela is mentioning a different number.
|
||||
|
||||
---
|
||||
|
||||
`Veintinueve`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means 29. Ángela is mentioning a different number.
|
||||
|
||||
---
|
||||
|
||||
`Treinta y seis`
|
||||
|
||||
## --video-solution--
|
||||
|
||||
4
|
||||
|
||||
# --explanation--
|
||||
|
||||
Ángela is saying `treinta y seis`, which means "thirty-six" (36).
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company3-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_first_questions_numbers.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 10.92,
|
||||
"finishTimestamp": 12.07
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 2.15,
|
||||
"dialogue": {
|
||||
"text": "Treinta y seis",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 2.65
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -0,0 +1,105 @@
|
||||
---
|
||||
id: 6914e966155354366f418a2d
|
||||
title: Task 10
|
||||
challengeType: 19
|
||||
dashedName: task-10
|
||||
lang: es
|
||||
---
|
||||
|
||||
# --description--
|
||||
|
||||
Ángela is practicing how to say a shortened version of the number 21, commonly used to refer to ages.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Listen to the audio and answer the question below.
|
||||
|
||||
# --questions--
|
||||
|
||||
## --text--
|
||||
|
||||
What is Ángela saying?
|
||||
|
||||
## --answers--
|
||||
|
||||
`Veintiuno`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means 21, but it's the full number. Ángela is mentioning a different variation of this number commonly used for ages.
|
||||
|
||||
---
|
||||
|
||||
`Veintiún`
|
||||
|
||||
---
|
||||
|
||||
`Veintitrés`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means 23. Ángela is mentioning a different number.
|
||||
|
||||
---
|
||||
|
||||
`Veinticinco`
|
||||
|
||||
### --feedback--
|
||||
|
||||
This word means 25. Ángela is mentioning a different number.
|
||||
|
||||
## --video-solution--
|
||||
|
||||
2
|
||||
|
||||
# --explanation--
|
||||
|
||||
Ángela is saying `veintiún`, which means "twenty-one" (21). This is a shortened version of the word `veintiuno`. The shortened version is commonly used to refer to ages.
|
||||
|
||||
# --scene--
|
||||
|
||||
```json
|
||||
{
|
||||
"setup": {
|
||||
"background": "company3-breakroom.png",
|
||||
"characters": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"position": {
|
||||
"x": 50,
|
||||
"y": 0,
|
||||
"z": 1.4
|
||||
},
|
||||
"opacity": 0
|
||||
}
|
||||
],
|
||||
"audio": {
|
||||
"filename": "ES_A1_first_questions_numbers.mp3",
|
||||
"startTime": 1,
|
||||
"startTimestamp": 2.38,
|
||||
"finishTimestamp": 3.35
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 1,
|
||||
"startTime": 0
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"startTime": 1,
|
||||
"finishTime": 1.97,
|
||||
"dialogue": {
|
||||
"text": "Veintiún",
|
||||
"align": "center"
|
||||
}
|
||||
},
|
||||
{
|
||||
"character": "Ángela",
|
||||
"opacity": 0,
|
||||
"startTime": 2.47
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -4,6 +4,45 @@
|
||||
"dashedName": "es-a1-learn-meet-angela-and-basti",
|
||||
"helpCategory": "English",
|
||||
"blockLayout": "challenge-grid",
|
||||
"challengeOrder": [{ "id": "68dc7593a29e5c7621d873ee", "title": "Task 1" }],
|
||||
"challengeOrder": [
|
||||
{ "id": "690e56ba74d1914de028d9a5", "title": "Task 1" },
|
||||
{ "id": "690e5c1b0c20a951beb34d89", "title": "Task 2" },
|
||||
{ "id": "690e5db95d4ade5410ae4aea", "title": "Task 3" },
|
||||
{ "id": "690e640d82be9a5b5539bab0", "title": "Task 4" },
|
||||
{ "id": "690e68d68dff8f607f651658", "title": "Task 5" },
|
||||
{ "id": "690e6b63edc0e0658d8f1eba", "title": "Task 6" },
|
||||
{ "id": "69150542094cd0569af7c631", "title": "Task 7" },
|
||||
{ "id": "690e6d806191306870c924c1", "title": "Task 8" },
|
||||
{ "id": "6915d1d38ca358189af1ab08", "title": "Task 9" },
|
||||
{ "id": "690e6ee180beed6aa929ee4d", "title": "Task 10" },
|
||||
{ "id": "6916019cc2aa0367de683686", "title": "Task 11" },
|
||||
{ "id": "690e7403d7c1a272295bb2b0", "title": "Task 12" },
|
||||
{ "id": "69160253e5339069a251cd9a", "title": "Task 13" },
|
||||
{ "id": "690f5a015ec6842542a57d60", "title": "Task 14" },
|
||||
{ "id": "6915d2fd70e1631a7c2c035e", "title": "Task 15" },
|
||||
{ "id": "690f5cb4a5bd682a05ab4242", "title": "Task 16" },
|
||||
{ "id": "6915d44e280a531d2f1c2bb1", "title": "Task 17" },
|
||||
{ "id": "690f61b1a2b78d305e825d13", "title": "Task 18" },
|
||||
{ "id": "690f66818d456538fbba06e4", "title": "Task 19" },
|
||||
{ "id": "6915d734d182222357aff8d7", "title": "Task 20" },
|
||||
{ "id": "6915d83a16f43c25b3f978c7", "title": "Task 21" },
|
||||
{ "id": "6915d99c51f4782817abd129", "title": "Task 22" },
|
||||
{ "id": "690f68686781213c9eac4b65", "title": "Task 23" },
|
||||
{ "id": "690f6ad7e1192b412653189c", "title": "Task 24" },
|
||||
{ "id": "690f6d6c27b78644af22a833", "title": "Task 25" },
|
||||
{ "id": "6915e72256d30f37056ac39e", "title": "Task 26" },
|
||||
{ "id": "6915e51b2abe35343f9b79cf", "title": "Task 27" },
|
||||
{ "id": "6915e8d7b68cb73a9c9b89fe", "title": "Task 28" },
|
||||
{ "id": "690f6f11d51d16478c286346", "title": "Task 29" },
|
||||
{ "id": "690f70f98d43b24acc706a72", "title": "Task 30" },
|
||||
{ "id": "6915eab337b5573e73cc5fbf", "title": "Task 31" },
|
||||
{ "id": "6915ebb4c0915b41248f387e", "title": "Task 32" },
|
||||
{ "id": "6915eca78be9dc43790f3025", "title": "Task 33" },
|
||||
{ "id": "6915ed88d969cb45865f84ab", "title": "Task 34" },
|
||||
{ "id": "690f862639740057f3ded75e", "title": "Task 35" },
|
||||
{ "id": "690f89a537e5a15bceeed373", "title": "Task 36" },
|
||||
{ "id": "690f8b36b9f7a95e9a85adef", "title": "Task 37" },
|
||||
{ "id": "6915f062758b5b505dc60d9c", "title": "Task 38" }
|
||||
],
|
||||
"blockLabel": "learn"
|
||||
}
|
||||
|
||||
@@ -4,6 +4,24 @@
|
||||
"dashedName": "es-a1-practice-first-questions",
|
||||
"helpCategory": "English",
|
||||
"blockLayout": "challenge-grid",
|
||||
"challengeOrder": [{ "id": "68dc75b0fe65b57754913412", "title": "Task 1" }],
|
||||
"challengeOrder": [
|
||||
{ "id": "691606a74e875776d0c00634", "title": "Task 1" },
|
||||
{ "id": "691610efdd1f677c74eae91a", "title": "Task 2" },
|
||||
{ "id": "691613b96a5856810fdcd106", "title": "Task 3" },
|
||||
{ "id": "691615c732e6878518963786", "title": "Task 4" },
|
||||
{ "id": "6916172fb15c2b88c574ac88", "title": "Task 5" },
|
||||
{ "id": "6916190046c3a78bcf0b47c7", "title": "Task 6" },
|
||||
{ "id": "691078d4e99ddd082b12ee9c", "title": "Task 7" },
|
||||
{ "id": "69164c74aff66fc089750967", "title": "Task 8" },
|
||||
{ "id": "69107e5c3d2e240f97b5742f", "title": "Task 9" },
|
||||
{ "id": "691081b5ef232e138b301ac8", "title": "Task 10" },
|
||||
{ "id": "691083ce2c387615cf14e5f1", "title": "Task 11" },
|
||||
{ "id": "69164df41ff49cc2f332be4c", "title": "Task 12" },
|
||||
{ "id": "6910867bb3065a1924502732", "title": "Task 13" },
|
||||
{ "id": "69108a0006dd331d159c51f3", "title": "Task 14" },
|
||||
{ "id": "69108ccea9363f23b3aacb49", "title": "Task 15" },
|
||||
{ "id": "691090f4e43e61297523d064", "title": "Task 16" },
|
||||
{ "id": "6910932c6c4e812ca246cdae", "title": "Task 17" }
|
||||
],
|
||||
"blockLabel": "practice"
|
||||
}
|
||||
|
||||
@@ -4,6 +4,9 @@
|
||||
"dashedName": "es-a1-review-first-questions",
|
||||
"helpCategory": "English",
|
||||
"blockLayout": "challenge-list",
|
||||
"challengeOrder": [{ "id": "68dc75d172549d787975d2fc", "title": "Task 1" }],
|
||||
"challengeOrder": [
|
||||
{ "id": "6910a23b05a7eb4386e6e730", "title": "Task 1" },
|
||||
{ "id": "6910a2da60b9e944f13240a0", "title": "Task 2" }
|
||||
],
|
||||
"blockLabel": "review"
|
||||
}
|
||||
|
||||
@@ -4,6 +4,26 @@
|
||||
"dashedName": "es-a1-warm-up-first-questions-basics",
|
||||
"helpCategory": "English",
|
||||
"blockLayout": "challenge-grid",
|
||||
"challengeOrder": [{ "id": "68dc7578ad62ca74e21c23e0", "title": "Task 1" }],
|
||||
"challengeOrder": [
|
||||
{ "id": "68dc7578ad62ca74e21c23e0", "title": "Task 1" },
|
||||
{ "id": "690e399dcbcca11f0f171613", "title": "Task 2" },
|
||||
{ "id": "690e3b36537bbb20f7c1d62f", "title": "Task 3" },
|
||||
{ "id": "690e3d643e0cf5269fc248dc", "title": "Task 4" },
|
||||
{ "id": "690e428065f59a2b48813c79", "title": "Task 5" },
|
||||
{ "id": "690e44b76dc8f52d638e82b7", "title": "Task 6" },
|
||||
{ "id": "690e4698c0492430e49c3705", "title": "Task 7" },
|
||||
{ "id": "690e48893869863487c9d8af", "title": "Task 8" },
|
||||
{ "id": "6914e14b15579d2610af5c54", "title": "Task 9" },
|
||||
{ "id": "6914e966155354366f418a2d", "title": "Task 10" },
|
||||
{ "id": "6914e158fc489627068929d5", "title": "Task 11" },
|
||||
{ "id": "6914e7f76afe9430861af32c", "title": "Task 12" },
|
||||
{ "id": "6914e870b77341326df3f70e", "title": "Task 13" },
|
||||
{ "id": "6914e8d79ff89933f84f8ddf", "title": "Task 14" },
|
||||
{ "id": "690e4ae1ec236137adc148a1", "title": "Task 15" },
|
||||
{ "id": "690e4ce4d95c5c3ab09f2700", "title": "Task 16" },
|
||||
{ "id": "690e4e299e38f83d039e4811", "title": "Task 17" },
|
||||
{ "id": "690e50f994b82a40ab8664b8", "title": "Task 18" },
|
||||
{ "id": "690e52572154034292be27f5", "title": "Task 19" }
|
||||
],
|
||||
"blockLabel": "warm-up"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user