feat(bisaya): update health gap exercise instruction for clarity
All checks were successful
Deploy to production / deploy (push) Successful in 3m26s
All checks were successful
Deploy to production / deploy (push) Successful in 3m26s
This commit is contained in:
@@ -0,0 +1,21 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
/** The original body-part gap had several equally plausible answers. */
|
||||||
|
module.exports = {
|
||||||
|
async up(queryInterface) {
|
||||||
|
await queryInterface.sequelize.query(`
|
||||||
|
UPDATE community.vocab_grammar_exercise AS exercise
|
||||||
|
SET instruction = 'Frage auf Bisaya: „Tut dir der Bauch weh? Geht es dir schon besser?“'
|
||||||
|
FROM community.vocab_course_lesson AS lesson
|
||||||
|
WHERE exercise.lesson_id = lesson.id
|
||||||
|
AND lesson.lesson_number = 26
|
||||||
|
AND lesson.title = 'Gesundheit & Wohlbefinden'
|
||||||
|
AND exercise.exercise_number = 2
|
||||||
|
AND exercise.title = 'Gesundheitsfrage ergänzen';
|
||||||
|
`);
|
||||||
|
},
|
||||||
|
|
||||||
|
async down() {
|
||||||
|
// The old wording did not identify the intended body part.
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -1106,7 +1106,7 @@ const BISAYA_EXERCISES = {
|
|||||||
{
|
{
|
||||||
exerciseTypeId: 1,
|
exerciseTypeId: 1,
|
||||||
title: 'Gesundheitsfrage ergänzen',
|
title: 'Gesundheitsfrage ergänzen',
|
||||||
instruction: 'Fülle die Lücken mit den passenden Bisaya-Wörtern.',
|
instruction: 'Frage auf Bisaya: „Tut dir der Bauch weh? Geht es dir schon besser?“',
|
||||||
questionData: {
|
questionData: {
|
||||||
type: 'gap_fill',
|
type: 'gap_fill',
|
||||||
text: 'Sakit imong {gap}? Mas maayo na {gap}?',
|
text: 'Sakit imong {gap}? Mas maayo na {gap}?',
|
||||||
|
|||||||
Reference in New Issue
Block a user