Skip to content

Commit

Permalink
[CONTENT] translates quiz level 13 to NL (hedyorg#4216)
Browse files Browse the repository at this point in the history
Quiz level 13 to nl
  • Loading branch information
MarleenGilsing authored May 2, 2023
1 parent 4dc528d commit ab72f77
Show file tree
Hide file tree
Showing 46 changed files with 431 additions and 328 deletions.
8 changes: 4 additions & 4 deletions content/quizzes/ar.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2821,13 +2821,13 @@ levels:
question_text: What is wrong with this code?
code: "1 chocolate = ask 'Would you like chocolate sauce on your ice cream?'\n2 sprinkles = ask 'Would you like sprinkles on your ice cream?'\n3 if chocolate and sprinkles = 'yes'\n4 print 'Ice cream with chocolate sauce and sprinkles, coming up!'\n5 if chocolate = 'yes' and sprinkles = 'no'\n6 print 'Ice cream with chocolate sauce, coming up!'\n7 if chocolate = 'no' and sprinkles = 'yes'\n8 print 'Ice cream with sprinkles, coming up'\n9 if chocolate = 'no' and sprinkles = 'no'\n10 print 'Just plain icecream, coming up!'"
mp_choice_options:
- option: "Line 3 should be: if chocolate = 'yes' and sprinkles is 'no'"
- option: "Line 3 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'yes'\n```\n"
feedback: Correct!
- option: "Line 3 should be: if chocolate = 'no' and sprinkles is 'no'"
- option: "Line 3 should be:\n```\n{if} chocolate = 'no' {and} sprinkles = 'no'\n```\n"
feedback: This is not what I ordered!
- option: "Line 5 should be: if chocolate = 'yes' and sprinkles is 'yes'"
- option: "Line 5 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'yes'\n```\n"
feedback: This is not what I ordered!
- option: "Line 7 should be: if chocolate = 'yes' and sprinkles is 'no'"
- option: "Line 7 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'no'\n```\n"
feedback: This is not what I ordered!
correct_answer: A
hint: There is a mistake in line 3
Expand Down
8 changes: 4 additions & 4 deletions content/quizzes/bg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2778,13 +2778,13 @@ levels:
question_text: What is wrong with this code?
code: "1 chocolate = ask 'Would you like chocolate sauce on your ice cream?'\n2 sprinkles = ask 'Would you like sprinkles on your ice cream?'\n3 if chocolate and sprinkles = 'yes'\n4 print 'Ice cream with chocolate sauce and sprinkles, coming up!'\n5 if chocolate = 'yes' and sprinkles = 'no'\n6 print 'Ice cream with chocolate sauce, coming up!'\n7 if chocolate = 'no' and sprinkles = 'yes'\n8 print 'Ice cream with sprinkles, coming up'\n9 if chocolate = 'no' and sprinkles = 'no'\n10 print 'Just plain icecream, coming up!'"
mp_choice_options:
- option: "Line 3 should be: if chocolate = 'yes' and sprinkles is 'no'"
- option: "Line 3 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'yes'\n```\n"
feedback: Correct!
- option: "Line 3 should be: if chocolate = 'no' and sprinkles is 'no'"
- option: "Line 3 should be:\n```\n{if} chocolate = 'no' {and} sprinkles = 'no'\n```\n"
feedback: This is not what I ordered!
- option: "Line 5 should be: if chocolate = 'yes' and sprinkles is 'yes'"
- option: "Line 5 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'yes'\n```\n"
feedback: This is not what I ordered!
- option: "Line 7 should be: if chocolate = 'yes' and sprinkles is 'no'"
- option: "Line 7 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'no'\n```\n"
feedback: This is not what I ordered!
correct_answer: A
hint: There is a mistake in line 3
Expand Down
8 changes: 4 additions & 4 deletions content/quizzes/bn.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2747,13 +2747,13 @@ levels:
question_text: What is wrong with this code?
code: "1 chocolate = ask 'Would you like chocolate sauce on your ice cream?'\n2 sprinkles = ask 'Would you like sprinkles on your ice cream?'\n3 if chocolate and sprinkles = 'yes'\n4 print 'Ice cream with chocolate sauce and sprinkles, coming up!'\n5 if chocolate = 'yes' and sprinkles = 'no'\n6 print 'Ice cream with chocolate sauce, coming up!'\n7 if chocolate = 'no' and sprinkles = 'yes'\n8 print 'Ice cream with sprinkles, coming up'\n9 if chocolate = 'no' and sprinkles = 'no'\n10 print 'Just plain icecream, coming up!'"
mp_choice_options:
- option: "Line 3 should be: if chocolate = 'yes' and sprinkles is 'no'"
- option: "Line 3 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'yes'\n```\n"
feedback: Correct!
- option: "Line 3 should be: if chocolate = 'no' and sprinkles is 'no'"
- option: "Line 3 should be:\n```\n{if} chocolate = 'no' {and} sprinkles = 'no'\n```\n"
feedback: This is not what I ordered!
- option: "Line 5 should be: if chocolate = 'yes' and sprinkles is 'yes'"
- option: "Line 5 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'yes'\n```\n"
feedback: This is not what I ordered!
- option: "Line 7 should be: if chocolate = 'yes' and sprinkles is 'no'"
- option: "Line 7 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'no'\n```\n"
feedback: This is not what I ordered!
correct_answer: A
hint: There is a mistake in line 3
Expand Down
8 changes: 4 additions & 4 deletions content/quizzes/ca.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1880,13 +1880,13 @@ levels:
question_score: '10'
question_text: What is wrong with this code?
mp_choice_options:
- option: "Line 3 should be: if chocolate = 'yes' and sprinkles is 'no'"
- option: "Line 3 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'yes'\n```\n"
feedback: Correct!
- option: "Line 3 should be: if chocolate = 'no' and sprinkles is 'no'"
- option: "Line 3 should be:\n```\n{if} chocolate = 'no' {and} sprinkles = 'no'\n```\n"
feedback: This is not what I ordered!
- feedback: This is not what I ordered!
option: "Line 5 should be: if chocolate = 'yes' and sprinkles is 'yes'"
- option: "Line 7 should be: if chocolate = 'yes' and sprinkles is 'no'"
option: "Line 5 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'yes'\n```\n"
- option: "Line 7 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'no'\n```\n"
feedback: This is not what I ordered!
correct_answer: A
code: "1 chocolate = ask 'Would you like chocolate sauce on your ice cream?'\n2 sprinkles = ask 'Would you like sprinkles on your ice cream?'\n3 if chocolate and sprinkles = 'yes'\n4 print 'Ice cream with chocolate sauce and sprinkles, coming up!'\n5 if chocolate = 'yes' and sprinkles = 'no'\n6 print 'Ice cream with chocolate sauce, coming up!'\n7 if chocolate = 'no' and sprinkles = 'yes'\n8 print 'Ice cream with sprinkles, coming up'\n9 if chocolate = 'no' and sprinkles = 'no'\n10 print 'Just plain icecream, coming up!'"
Expand Down
8 changes: 4 additions & 4 deletions content/quizzes/cs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2822,13 +2822,13 @@ levels:
question_text: What is wrong with this code?
code: "1 chocolate = ask 'Would you like chocolate sauce on your ice cream?'\n2 sprinkles = ask 'Would you like sprinkles on your ice cream?'\n3 if chocolate and sprinkles = 'yes'\n4 print 'Ice cream with chocolate sauce and sprinkles, coming up!'\n5 if chocolate = 'yes' and sprinkles = 'no'\n6 print 'Ice cream with chocolate sauce, coming up!'\n7 if chocolate = 'no' and sprinkles = 'yes'\n8 print 'Ice cream with sprinkles, coming up'\n9 if chocolate = 'no' and sprinkles = 'no'\n10 print 'Just plain icecream, coming up!'"
mp_choice_options:
- option: "Line 3 should be: if chocolate = 'yes' and sprinkles is 'no'"
- option: "Line 3 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'yes'\n```\n"
feedback: Correct!
- option: "Line 3 should be: if chocolate = 'no' and sprinkles is 'no'"
- option: "Line 3 should be:\n```\n{if} chocolate = 'no' {and} sprinkles = 'no'\n```\n"
feedback: This is not what I ordered!
- option: "Line 5 should be: if chocolate = 'yes' and sprinkles is 'yes'"
- option: "Line 5 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'yes'\n```\n"
feedback: This is not what I ordered!
- option: "Line 7 should be: if chocolate = 'yes' and sprinkles is 'no'"
- option: "Line 7 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'no'\n```\n"
feedback: This is not what I ordered!
correct_answer: A
hint: There is a mistake in line 3
Expand Down
8 changes: 4 additions & 4 deletions content/quizzes/cy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1909,13 +1909,13 @@ levels:
question_score: '10'
question_text: What is wrong with this code?
mp_choice_options:
- option: "Line 3 should be: if chocolate = 'yes' and sprinkles is 'no'"
- option: "Line 3 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'yes'\n```\n"
feedback: Correct!
- option: "Line 3 should be: if chocolate = 'no' and sprinkles is 'no'"
- option: "Line 3 should be:\n```\n{if} chocolate = 'no' {and} sprinkles = 'no'\n```\n"
feedback: This is not what I ordered!
- option: "Line 5 should be: if chocolate = 'yes' and sprinkles is 'yes'"
- option: "Line 5 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'yes'\n```\n"
feedback: This is not what I ordered!
- option: "Line 7 should be: if chocolate = 'yes' and sprinkles is 'no'"
- option: "Line 7 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'no'\n```\n"
feedback: This is not what I ordered!
code: "1 chocolate = ask 'Would you like chocolate sauce on your ice cream?'\n2 sprinkles = ask 'Would you like sprinkles on your ice cream?'\n3 if chocolate and sprinkles = 'yes'\n4 print 'Ice cream with chocolate sauce and sprinkles, coming up!'\n5 if chocolate = 'yes' and sprinkles = 'no'\n6 print 'Ice cream with chocolate sauce, coming up!'\n7 if chocolate = 'no' and sprinkles = 'yes'\n8 print 'Ice cream with sprinkles, coming up'\n9 if chocolate = 'no' and sprinkles = 'no'\n10 print 'Just plain icecream, coming up!'"
correct_answer: A
Expand Down
8 changes: 4 additions & 4 deletions content/quizzes/da.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1939,13 +1939,13 @@ levels:
question_text: What is wrong with this code?
code: "1 chocolate = ask 'Would you like chocolate sauce on your ice cream?'\n2 sprinkles = ask 'Would you like sprinkles on your ice cream?'\n3 if chocolate and sprinkles = 'yes'\n4 print 'Ice cream with chocolate sauce and sprinkles, coming up!'\n5 if chocolate = 'yes' and sprinkles = 'no'\n6 print 'Ice cream with chocolate sauce, coming up!'\n7 if chocolate = 'no' and sprinkles = 'yes'\n8 print 'Ice cream with sprinkles, coming up'\n9 if chocolate = 'no' and sprinkles = 'no'\n10 print 'Just plain icecream, coming up!'"
mp_choice_options:
- option: "Line 3 should be: if chocolate = 'yes' and sprinkles is 'no'"
- option: "Line 3 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'yes'\n```\n"
feedback: Correct!
- option: "Line 3 should be: if chocolate = 'no' and sprinkles is 'no'"
- option: "Line 3 should be:\n```\n{if} chocolate = 'no' {and} sprinkles = 'no'\n```\n"
feedback: This is not what I ordered!
- option: "Line 5 should be: if chocolate = 'yes' and sprinkles is 'yes'"
- option: "Line 5 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'yes'\n```\n"
feedback: This is not what I ordered!
- option: "Line 7 should be: if chocolate = 'yes' and sprinkles is 'no'"
- option: "Line 7 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'no'\n```\n"
feedback: This is not what I ordered!
correct_answer: A
hint: There is a mistake in line 3
Expand Down
8 changes: 4 additions & 4 deletions content/quizzes/el.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2720,13 +2720,13 @@ levels:
question_text: What is wrong with this code?
code: "1 chocolate = ask 'Would you like chocolate sauce on your ice cream?'\n2 sprinkles = ask 'Would you like sprinkles on your ice cream?'\n3 if chocolate and sprinkles = 'yes'\n4 print 'Ice cream with chocolate sauce and sprinkles, coming up!'\n5 if chocolate = 'yes' and sprinkles = 'no'\n6 print 'Ice cream with chocolate sauce, coming up!'\n7 if chocolate = 'no' and sprinkles = 'yes'\n8 print 'Ice cream with sprinkles, coming up'\n9 if chocolate = 'no' and sprinkles = 'no'\n10 print 'Just plain icecream, coming up!'"
mp_choice_options:
- option: "Line 3 should be: if chocolate = 'yes' and sprinkles is 'no'"
- option: "Line 3 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'yes'\n```\n"
feedback: Correct!
- option: "Line 3 should be: if chocolate = 'no' and sprinkles is 'no'"
- option: "Line 3 should be:\n```\n{if} chocolate = 'no' {and} sprinkles = 'no'\n```\n"
feedback: This is not what I ordered!
- option: "Line 5 should be: if chocolate = 'yes' and sprinkles is 'yes'"
- option: "Line 5 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'yes'\n```\n"
feedback: This is not what I ordered!
- option: "Line 7 should be: if chocolate = 'yes' and sprinkles is 'no'"
- option: "Line 7 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'no'\n```\n"
feedback: This is not what I ordered!
10:
question_text: Which command needs to be in line 8 at the place of the ??? ?
Expand Down
8 changes: 4 additions & 4 deletions content/quizzes/en.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3061,13 +3061,13 @@ levels:
9 {if} chocolate = 'no' {and} sprinkles = 'no'
10 {print} 'Just plain icecream, coming up!'
mp_choice_options:
- option: "Line 3 should be: {if} chocolate = 'yes' {and} sprinkles = 'yes'"
- option: "Line 3 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'yes'\n```\n"
feedback: "Correct!"
- option: "Line 3 should be: {if} chocolate = 'no' {and} sprinkles = 'no'"
- option: "Line 3 should be: \n```\n{if} chocolate = 'no' {and} sprinkles = 'no'\n```\n"
feedback: "This is not what I ordered!"
- option: "Line 5 should be: {if} chocolate = 'yes' {and} sprinkles = 'yes'"
- option: "Line 5 should be: \n```\n{if} chocolate = 'yes' {and} sprinkles = 'yes'\n```\n"
feedback: "This is not what I ordered!"
- option: "Line 7 should be: {if} chocolate = 'yes' {and} sprinkles = 'no'"
- option: "Line 7 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'no'\n```\n"
feedback: "This is not what I ordered!"
correct_answer: "A"
hint: "There is a mistake in line 3"
Expand Down
8 changes: 4 additions & 4 deletions content/quizzes/eo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2058,13 +2058,13 @@ levels:
question_text: What is wrong with this code?
code: "1 chocolate = ask 'Would you like chocolate sauce on your ice cream?'\n2 sprinkles = ask 'Would you like sprinkles on your ice cream?'\n3 if chocolate and sprinkles = 'yes'\n4 print 'Ice cream with chocolate sauce and sprinkles, coming up!'\n5 if chocolate = 'yes' and sprinkles = 'no'\n6 print 'Ice cream with chocolate sauce, coming up!'\n7 if chocolate = 'no' and sprinkles = 'yes'\n8 print 'Ice cream with sprinkles, coming up'\n9 if chocolate = 'no' and sprinkles = 'no'\n10 print 'Just plain icecream, coming up!'"
mp_choice_options:
- option: "Line 3 should be: if chocolate = 'yes' and sprinkles is 'no'"
- option: "Line 3 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'yes'\n```\n"
feedback: Correct!
- option: "Line 3 should be: if chocolate = 'no' and sprinkles is 'no'"
- option: "Line 3 should be:\n```\n{if} chocolate = 'no' {and} sprinkles = 'no'\n```\n"
feedback: This is not what I ordered!
- option: "Line 5 should be: if chocolate = 'yes' and sprinkles is 'yes'"
- option: "Line 5 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'yes'\n```\n"
feedback: This is not what I ordered!
- option: "Line 7 should be: if chocolate = 'yes' and sprinkles is 'no'"
- option: "Line 7 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'no'\n```\n"
feedback: This is not what I ordered!
correct_answer: A
hint: There is a mistake in line 3
Expand Down
8 changes: 4 additions & 4 deletions content/quizzes/es.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2748,13 +2748,13 @@ levels:
question_text: What is wrong with this code?
code: "1 chocolate = ask 'Would you like chocolate sauce on your ice cream?'\n2 sprinkles = ask 'Would you like sprinkles on your ice cream?'\n3 if chocolate and sprinkles = 'yes'\n4 print 'Ice cream with chocolate sauce and sprinkles, coming up!'\n5 if chocolate = 'yes' and sprinkles = 'no'\n6 print 'Ice cream with chocolate sauce, coming up!'\n7 if chocolate = 'no' and sprinkles = 'yes'\n8 print 'Ice cream with sprinkles, coming up'\n9 if chocolate = 'no' and sprinkles = 'no'\n10 print 'Just plain icecream, coming up!'"
mp_choice_options:
- option: "Line 3 should be: if chocolate = 'yes' and sprinkles is 'no'"
- option: "Line 3 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'yes'\n```\n"
feedback: Correct!
- option: "Line 3 should be: if chocolate = 'no' and sprinkles is 'no'"
- option: "Line 3 should be:\n```\n{if} chocolate = 'no' {and} sprinkles = 'no'\n```\n"
feedback: This is not what I ordered!
- option: "Line 5 should be: if chocolate = 'yes' and sprinkles is 'yes'"
- option: "Line 5 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'yes'\n```\n"
feedback: This is not what I ordered!
- option: "Line 7 should be: if chocolate = 'yes' and sprinkles is 'no'"
- option: "Line 7 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'no'\n```\n"
feedback: This is not what I ordered!
correct_answer: A
hint: There is a mistake in line 3
Expand Down
8 changes: 4 additions & 4 deletions content/quizzes/et.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1819,13 +1819,13 @@ levels:
question_text: What is wrong with this code?
code: "1 chocolate = ask 'Would you like chocolate sauce on your ice cream?'\n2 sprinkles = ask 'Would you like sprinkles on your ice cream?'\n3 if chocolate and sprinkles = 'yes'\n4 print 'Ice cream with chocolate sauce and sprinkles, coming up!'\n5 if chocolate = 'yes' and sprinkles = 'no'\n6 print 'Ice cream with chocolate sauce, coming up!'\n7 if chocolate = 'no' and sprinkles = 'yes'\n8 print 'Ice cream with sprinkles, coming up'\n9 if chocolate = 'no' and sprinkles = 'no'\n10 print 'Just plain icecream, coming up!'"
mp_choice_options:
- option: "Line 3 should be: if chocolate = 'yes' and sprinkles is 'no'"
- option: "Line 3 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'yes'\n```\n"
feedback: Correct!
- option: "Line 3 should be: if chocolate = 'no' and sprinkles is 'no'"
- option: "Line 3 should be:\n```\n{if} chocolate = 'no' {and} sprinkles = 'no'\n```\n"
feedback: This is not what I ordered!
- option: "Line 5 should be: if chocolate = 'yes' and sprinkles is 'yes'"
- option: "Line 5 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'yes'\n```\n"
feedback: This is not what I ordered!
- option: "Line 7 should be: if chocolate = 'yes' and sprinkles is 'no'"
- option: "Line 7 should be:\n```\n{if} chocolate = 'yes' {and} sprinkles = 'no'\n```\n"
feedback: This is not what I ordered!
correct_answer: A
hint: There is a mistake in line 3
Expand Down
Loading

0 comments on commit ab72f77

Please sign in to comment.