feat(bisaya): update gap fill exercise instruction to clarify first person usage
All checks were successful
Deploy to production / deploy (push) Successful in 3m40s

This commit is contained in:
Torsten Schulz (local)
2026-09-07 15:13:55 +02:00
parent 86f3b4c247
commit 1149814f64
2 changed files with 22 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
'use strict';
/** The expected answers include "ko", so the prompt must name first person. */
module.exports = {
async up(queryInterface) {
await queryInterface.sequelize.query(`
UPDATE community.vocab_grammar_exercise AS exercise
SET instruction = 'Bilde „ich gehe“ mit „adto“ in Vergangenheit, Gegenwart und Zukunft. Verwende in jeder Form „ko“.'
FROM community.vocab_course_lesson AS lesson
WHERE exercise.lesson_id = lesson.id
AND lesson.lesson_number = 15
AND lesson.title = 'Zeitformen - Grundlagen'
AND exercise.exercise_number = 5
AND exercise.title = 'Zeitmuster anwenden';
`);
},
async down() {
// The old instruction omitted the required person marker.
}
};

View File

@@ -2710,7 +2710,7 @@ const BISAYA_EXERCISES = {
}, },
withTypeName('gap_fill', { withTypeName('gap_fill', {
title: 'Zeitmuster anwenden', title: 'Zeitmuster anwenden',
instruction: 'Verwende das Verb "adto" in Vergangenheit, Gegenwart und Zukunft. Trage jede Form in das passende Feld ein.', instruction: 'Bilde „ich gehe“ mit „adto in Vergangenheit, Gegenwart und Zukunft. Verwende in jeder Form „ko“.',
questionData: { questionData: {
type: 'gap_fill', type: 'gap_fill',
text: 'Vergangenheit: {gap} | Gegenwart: {gap} | Zukunft: {gap}', text: 'Vergangenheit: {gap} | Gegenwart: {gap} | Zukunft: {gap}',