Warning, /education/gcompris/src/activities/ordering_sentences/resource/1/Data.qml is written in an unsupported language. File is not indexed.

0001 /* GCompris - Data.qml
0002  *
0003  * SPDX-FileCopyrightText: 2021 Harsh Kumar <hadron43@yahoo.com>
0004  *
0005  * Authors:
0006  *   Harsh Kumar <hadron43@yahoo.com>
0007  *
0008  *   SPDX-License-Identifier: GPL-3.0-or-later
0009  */
0010 import GCompris 1.0
0011 
0012 Data {
0013     objective: qsTr("Below 5 words.")
0014     difficulty: 4
0015     data: [
0016         {
0017             //: These sentences should not need to be translated word by word. Please add at least 10 sentences, each one being between 3 and 5 words. Use | to separate group of words. The aim of the string is to shuffle the group of words and let the child reorder them correctly. We should not be able to form a correct sentence by shuffling some words in the final sentence.
0018             sentences: qsTr('The|dog|barks.\n' +
0019             'The|house|is|red.\n' +
0020             'The|boy|reads|a book.\n' +
0021             'My|friend|is|nice.\n'+
0022             'What|a|beautiful|sight!\n' +
0023             'Steve|jumps|into|the|pool.\n'+
0024             'Jessica|wants|a|new|book.\n'+
0025             'Mom|made|me|a|sandwich.\n'+
0026             'Tigers|live|in|forests.\n'+
0027             'Football|is|a|team|game.')
0028         }
0029     ]
0030 }