diff --git a/src/activities/letter-in-word/CMakeLists.txt b/src/activities/letter-in-word/CMakeLists.txt index bb9fd0cba..706b33446 100644 --- a/src/activities/letter-in-word/CMakeLists.txt +++ b/src/activities/letter-in-word/CMakeLists.txt @@ -1 +1 @@ -GCOMPRIS_ADD_RCC(activities/letter-in-word *.qml *.svg *.js resource/images/* resource/levels/*) +GCOMPRIS_ADD_RCC(activities/letter-in-word *.qml *.svg *.js resource/images/*) diff --git a/src/activities/letter-in-word/Card.qml b/src/activities/letter-in-word/Card.qml index d0eb18010..92df53497 100644 --- a/src/activities/letter-in-word/Card.qml +++ b/src/activities/letter-in-word/Card.qml @@ -1,230 +1,180 @@ /* GCompris - Card.qml * * Copyright (C) 2016 Akshat Tandon * * Authors: * Akshat Tandon * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . */ import QtQuick 2.1 import GCompris 1.0 import QtGraphicalEffects 1.0 import "../../core" import "letter-in-word.js" as Activity Item { id: cardItem width: cardImage.width height: wordPic.height + cardImage.height - 30 * ApplicationInfo.ratio Image{ id: wordPic sourceSize.width: cardItem.width -6 sourceSize.height: cardItem.width -5 fillMode: Image.PreserveAspectFit source: imgurl z:5 } Image { id: cardImage anchors.top:wordPic.bottom anchors.topMargin: -30 * ApplicationInfo.ratio sourceSize.width: cardItem.width - 10 fillMode: Image.PreserveAspectFit source: Activity.url + "images/cloud.svg" z: (state == 'scaled') ? 1 : -1 - /*ListView{ - //anchors.horizontalCenter:parent.horizontalCenter - //anchors.verticalCenter: parent.verticalCenter - model:components - delegate:GCText { - //id: textbox - - z: 11 - //anchors.horizontalCenter:cardImage.horizontalCenter - //anchors.verticalCenter: cardImage.verticalCenter - - - text: - font.pointSize: NaN // need to clear font.pointSize explicitly - font.pixelSize: spelling.length > 5 ? cardImage.width * 0.23 : cardImage.width * 0.30 - font.bold: true - style: Text.Outline - styleColor: "#2a2a2a" - color: "white" - } - }*/ Row{ anchors.verticalCenter: cardImage.verticalCenter Repeater{ - //anchors.verticalCenter: cardImage.verticalCenter model: components GCText { id: textbox - z: 11 - //anchors.horizontalCenter:cardImage.horizontalCenter - //anchors.verticalCenter: cardImage.verticalCenter - - text: textdata font.pointSize: NaN // need to clear font.pointSize explicitly font.pixelSize: spelling.length > 5 ? (spelling.length > 7 ? cardImage.width * 0.19 : cardImage.width * 0.25): cardImage.width * 0.30 font.bold: true style: Text.Outline styleColor: "#2a2a2a" color: selected && textdata.length == 1 && textdata == Activity.currentLetter ? "green" : "white" - } } } - - - /* - DropShadow { - anchors.fill: textbox - cached: false - horizontalOffset: 1 - verticalOffset: 1 - radius: 3 - samples: 16 - color: "#422a2a2a" - source: textbox - }*/ - ParticleSystemStarLoader { id: particle clip: false } states: State { name: "scaled"; when: mouseArea.containsMouse PropertyChanges { target: cardItem scale: /*carriageImage.scale * */ 1.2 z: 2} } transitions: Transition { NumberAnimation { properties: "scale"; easing.type: Easing.OutCubic } } SequentialAnimation { id: successAnimation running: selected loops: Animation.Infinite NumberAnimation { target: cardImage easing.type: Easing.InOutQuad property: "rotation" to: 20; duration: 500 } NumberAnimation { target: cardImage easing.type: Easing.InOutQuad property: "rotation"; to: -20 duration: 500 } } SequentialAnimation { id: failureAnimation NumberAnimation { target: colorCardImage property: "opacity" to: 1; duration: 400 } NumberAnimation { target: colorCardImage property: "opacity" to: 0; duration: 200 } } NumberAnimation { id: rotationStop running: !selected target: cardImage property: "rotation" to: 0 duration: 500 easing.type: Easing.InOutQuad } } Colorize { id: colorCardImage z: 5 anchors.fill: cardImage source: cardImage hue: 0.0 saturation: 1 opacity: 0 } MouseArea { id: mouseArea anchors.fill: parent hoverEnabled: ApplicationInfo.isMobile ? false : true onClicked: { if (Activity.checkWord(index)) { successAnimation.restart(); particle.burst(30) components.clear(); var tempword; var j = 0; for(var i = 0; i < spelling.length; i++){ if(spelling.charAt(i) == Activity.currentLetter){ tempword = spelling.substring(j,i); if(i!=j){ - //console.log(tempword) + components.append({"textdata": tempword}) } components.append({"textdata": Activity.currentLetter}); - //console.log(Activity.currentLetter) - //console.log('qwe:') - //console.log(tempword) + j = i + 1; } } if(j < spelling.length){ tempword = spelling.substring(j, spelling.length); components.append({"textdata": tempword}) - //console.log(tempword) - //console.log(tempword) - //console.log(componenetsArr.length) - } - //console.log('*/*/') - //console.log(components.length) - + } } else { failureAnimation.restart() } } } } diff --git a/src/activities/letter-in-word/letter-in-word.js b/src/activities/letter-in-word/letter-in-word.js index 602099d8e..eb5936b67 100644 --- a/src/activities/letter-in-word/letter-in-word.js +++ b/src/activities/letter-in-word/letter-in-word.js @@ -1,341 +1,289 @@ /* GCompris - letter-in-word.js * * Copyright (C) 2014 Holger Kaelberer * 2016 Akshat Tandon * * Authors: * Holger Kaelberer (Qt Quick port of click-on-letter) * Akshat Tandon * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . */ .pragma library .import QtQuick 2.0 as Quick .import GCompris 1.0 as GCompris //for ApplicationInfo .import "qrc:/gcompris/src/core/core.js" as Core .import "qrc:/gcompris/src/activities/lang/lang_api.js" as Lang var url = "qrc:/gcompris/src/activities/letter-in-word/resource/" var defaultLevelsFile = ":/gcompris/src/activities/letter-in-word/resource/levels/levels-en.json"; var maxLettersPerLine = 6; var levels; var currentLevel; var maxLevel; var currentSubLevel; var currentLetter; var maxSubLevel; var level; var questions; var words; var items; var dataset = null; var frequency; var incorrectFlag = false; function start(_items) { Core.checkForVoices(_items.main); - items = _items; - - // register the voices for the locale var locale = GCompris.ApplicationInfo.getVoicesLocale(items.locale) GCompris.DownloadManager.updateResource(GCompris.DownloadManager.getVoicesResourceForLocale(locale)) - loadDataset(); - //console.log('Dataset:') - //console.log(dataset); + loadDataset(); levels = Lang.getAllLessons(dataset) currentLevel = 0; currentSubLevel = 0; maxLevel = levels.length; - //console.log('Max num of levels') - //console.log(maxLevel); initLevel(); } function loadDataset() { var resourceUrl = "qrc:/gcompris/src/activities/lang/resource/" var locale = GCompris.ApplicationInfo.getVoicesLocale(items.locale) dataset = Lang.load(items.parser, resourceUrl, GCompris.ApplicationSettings.wordset ? "words.json" : "words_sample.json", "content-"+ locale +".json") - //console.log('** Came here') // If dataset is empty, we try to load from short locale // and if not present again, we switch to default one var localeUnderscoreIndex = locale.indexOf('_') if(!dataset) { var localeShort; // We will first look again for locale xx (without _XX if exist) if(localeUnderscoreIndex > 0) { localeShort = locale.substring(0, localeUnderscoreIndex) } else { localeShort = locale; } dataset = Lang.load(items.parser, resourceUrl, GCompris.ApplicationSettings.wordset ? "words.json" : "words_sample.json", "content-"+localeShort+ ".json") } - //console.log('** Came here 2') if(!dataset) { // English fallback dataset = Lang.load(items.parser, resourceUrl, GCompris.ApplicationSettings.wordset ? "words.json" : "words_sample.json", "content-en.json") } - //console.log('** Came here 3') - - } function stop() { items.animateX.stop() } function shuffleString(s) { var a = s; var n = a.length; for(var i = n-1; i>0; i--) { var j = Math.floor(Math.random() * (i + 1)); var tmp = a[i]; a[i] = a[j]; a[j] = tmp; } return a.join(""); } function initLevel() { - //console.log("**********Current level: " + currentLevel) + var componentsArr; items.bar.level = currentLevel + 1; if (currentSubLevel == 0 && !incorrectFlag) { level = levels[currentLevel]; words = Lang.getLessonWords(dataset, level); Core.shuffle(words); var limit = Math.min(13, words.length) words = words.slice(0,limit) frequency = calculateFrequency(); var tempQuestions = generateQuestions(); maxSubLevel = tempQuestions.length; items.score.numberOfSubLevels = maxSubLevel; items.score.currentSubLevel = 1; questions = shuffleString(tempQuestions); items.wordsModel.clear(); for (var i = 0; i < words.length; i++) { componentsArr = []; componentsArr.push({"textdata": words[i].translatedTxt}); - //console.log(componentsArr.length) + items.wordsModel.append({ "spelling": words[i].translatedTxt, "imgurl": words[i].image, "selected": false, "components": componentsArr }); } } else { items.score.currentSubLevel = currentSubLevel + 1; } incorrectFlag = false; for(var i = 0; i < words.length; i++){ items.wordsModel.setProperty(i, "selected", false); } var locale = GCompris.ApplicationInfo.getVoicesLocale(items.locale); currentLetter = questions[currentSubLevel]; items.question = currentLetter items.animateX.restart(); if (GCompris.ApplicationSettings.isAudioVoicesEnabled && GCompris.DownloadManager.haveLocalResource( GCompris.DownloadManager.getVoicesResourceForLocale(locale))) { items.audioVoices.silence(100) playLetter(currentLetter) } } function calculateFrequency(){ var freq = []; //regex pattern to detect wether the character is an english alphabet or some accented latin chacarcter var pattern = /[A-Za-z\u00C0-\u017F]/; for(var i = 0; i < words.length; i++){ var currentWord = words[i].translatedTxt; for(var j = 0; j < currentWord.length; j++){ var character = currentWord.charAt(j); //consider the character if and only if it is an alphabet or an accented latin chataracter if(pattern.test(character)){ if(freq[character]){ freq[character]++; } else{ freq[character] = 1; - } - //console.log('Character FOUND *****' + character) - } - else{ - //console.log('Character NOT found *****' + character); + } } } } - /* - for(var i in freq){ - console.log(i) - console.log(freq[i]) - - }*/ return freq; } function generateQuestions(){ var freqArr = []; var ques = []; for(var character in frequency){ - //console.log('calc freq') - //console.log(character) - //console.log(frequency[character]) freqArr.push([character, frequency[character]]); } freqArr.sort(function(a, b) {return b[1] - a[1]}); - /* - for(var i = 0; i < freqArr.length; i++){ - console.log('freq arr') - console.log(freqArr[i][0]) - console.log(freqArr[i][1]) - }*/ - var limit = Math.min(10, freqArr.length); - //console.log(freqArr.length) - //console.log(limit) for(var i = 0; i < limit; i++){ ques.push(freqArr[i][0]) } - /*for(var i = 0; i < ques.length; i++){ - console.log('bablu') - console.log(ques[i]) - }*/ + return ques; } function playLetter(letter) { var locale = GCompris.ApplicationInfo.getVoicesLocale(items.locale) items.audioVoices.append(GCompris.ApplicationInfo.getAudioFilePath("voices-$CA/"+locale+"/alphabet/" + Core.getSoundFilenamForChar(letter))) } function nextLevel() { items.audioVoices.clearQueue() if(maxLevel <= ++currentLevel ) { currentLevel = 0 } currentSubLevel = 0; initLevel(); } function previousLevel() { items.audioVoices.clearQueue() if(--currentLevel < 0) { currentLevel = maxLevel - 1 } currentSubLevel = 0; initLevel(); } function nextSubLevel() { if( ++currentSubLevel >= maxSubLevel) { currentSubLevel = 0 nextLevel() } initLevel(); } function checkAnswer() { var checkFlag = false; var modelEntry; for(var i = 0; i < words.length; i++){ modelEntry = items.wordsModel.get(i); for(var j = 0; j < modelEntry.spelling.length; j++){ if(currentLetter == modelEntry.spelling.charAt(j) && modelEntry.selected == false){ checkFlag = true; break; } } } if(checkFlag == false){ items.bonus.good("flower"); } } function checkWord(index) { var checkFlag = false; var modelEntry = items.wordsModel.get(index); for(var i = 0; i < modelEntry.spelling.length; i++){ if(currentLetter == modelEntry.spelling.charAt(i)){ items.wordsModel.setProperty(index, "selected", true); checkAnswer(); checkFlag = true; break; } } if(checkFlag == true){ - - - //items.wordsModel.setProperty(index, "components", componenetsArr) - //items.wordsModel.setProperty(index, "imgurl","qrc:/gcompris/src/activities/lang/resource/words_sample/one.png") - - /*for(var i = 0; i < componenetsArr.length; i++){ - console.log(componenetsArr[i].textdata) - }*/ return true; } else{ items.bonus.bad("flower"); return false; } } function incorrectSelection(){ - //console.log('Entered /*******************************'); - //console.log(typeof(questions)) - //console.log('Before') - //console.log(questions) incorrectFlag = true; var quesLen = questions.length; questions = questions.slice(0,currentSubLevel) + questions.slice(currentSubLevel+1,quesLen) + questions.charAt(currentSubLevel); - //console.log('After') - //console.log(questions); currentSubLevel--; nextSubLevel(); - //console.log('Exited /*******************************'); } diff --git a/src/activities/letter-in-word/resource/images/apple.svg b/src/activities/letter-in-word/resource/images/apple.svg deleted file mode 100644 index 7fe4abb9d..000000000 --- a/src/activities/letter-in-word/resource/images/apple.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/balloons.svg b/src/activities/letter-in-word/resource/images/balloons.svg deleted file mode 100644 index 7b3e02cc6..000000000 --- a/src/activities/letter-in-word/resource/images/balloons.svg +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/banana.svg b/src/activities/letter-in-word/resource/images/banana.svg deleted file mode 100644 index 08406fbe7..000000000 --- a/src/activities/letter-in-word/resource/images/banana.svg +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/bug.svg b/src/activities/letter-in-word/resource/images/bug.svg deleted file mode 100644 index fca2747f5..000000000 --- a/src/activities/letter-in-word/resource/images/bug.svg +++ /dev/null @@ -1,216 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/bulb.svg b/src/activities/letter-in-word/resource/images/bulb.svg deleted file mode 100644 index 2bfcd4c8b..000000000 --- a/src/activities/letter-in-word/resource/images/bulb.svg +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - Ampoule - - - - - image/svg+xml - - Ampoule - - 2009-12-09 - - - Jean-Victor Balin - - - - - openclipart.org - - - fr-FR - - - idea - bulb - light - electric - - - jean.victor.balin@gmail.com - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/calculator.svg b/src/activities/letter-in-word/resource/images/calculator.svg deleted file mode 100644 index a6999e140..000000000 --- a/src/activities/letter-in-word/resource/images/calculator.svg +++ /dev/null @@ -1,280 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/car.svg b/src/activities/letter-in-word/resource/images/car.svg deleted file mode 100644 index a693a6fb1..000000000 --- a/src/activities/letter-in-word/resource/images/car.svg +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/cat.svg b/src/activities/letter-in-word/resource/images/cat.svg deleted file mode 100644 index ff6ee6d46..000000000 --- a/src/activities/letter-in-word/resource/images/cat.svg +++ /dev/null @@ -1,5130 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/cherries.svg b/src/activities/letter-in-word/resource/images/cherries.svg deleted file mode 100644 index fe72a7164..000000000 --- a/src/activities/letter-in-word/resource/images/cherries.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/chicken.svg b/src/activities/letter-in-word/resource/images/chicken.svg deleted file mode 100644 index 79bedabba..000000000 --- a/src/activities/letter-in-word/resource/images/chicken.svg +++ /dev/null @@ -1,5614 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/clock.svg b/src/activities/letter-in-word/resource/images/clock.svg deleted file mode 100644 index e57e1235e..000000000 --- a/src/activities/letter-in-word/resource/images/clock.svg +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/cow.svg b/src/activities/letter-in-word/resource/images/cow.svg deleted file mode 100644 index e5e3ebf9d..000000000 --- a/src/activities/letter-in-word/resource/images/cow.svg +++ /dev/null @@ -1,5307 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/dice.svg b/src/activities/letter-in-word/resource/images/dice.svg deleted file mode 100644 index d2e550b4e..000000000 --- a/src/activities/letter-in-word/resource/images/dice.svg +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/dog.svg b/src/activities/letter-in-word/resource/images/dog.svg deleted file mode 100644 index 9079fd958..000000000 --- a/src/activities/letter-in-word/resource/images/dog.svg +++ /dev/null @@ -1,5142 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/domino.svg b/src/activities/letter-in-word/resource/images/domino.svg deleted file mode 100644 index 8fe076a5e..000000000 --- a/src/activities/letter-in-word/resource/images/domino.svg +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/duck.svg b/src/activities/letter-in-word/resource/images/duck.svg deleted file mode 100644 index b4f7071a8..000000000 --- a/src/activities/letter-in-word/resource/images/duck.svg +++ /dev/null @@ -1,5387 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/earth.svg b/src/activities/letter-in-word/resource/images/earth.svg deleted file mode 100644 index 95ada954b..000000000 --- a/src/activities/letter-in-word/resource/images/earth.svg +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/fire.svg b/src/activities/letter-in-word/resource/images/fire.svg deleted file mode 100644 index b063595c0..000000000 --- a/src/activities/letter-in-word/resource/images/fire.svg +++ /dev/null @@ -1,1097 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/fish.svg b/src/activities/letter-in-word/resource/images/fish.svg deleted file mode 100644 index d8262aadf..000000000 --- a/src/activities/letter-in-word/resource/images/fish.svg +++ /dev/null @@ -1,224 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/football.svg b/src/activities/letter-in-word/resource/images/football.svg deleted file mode 100644 index 1e51faa51..000000000 --- a/src/activities/letter-in-word/resource/images/football.svg +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/girl.svg b/src/activities/letter-in-word/resource/images/girl.svg deleted file mode 100644 index e8ea5ccde..000000000 --- a/src/activities/letter-in-word/resource/images/girl.svg +++ /dev/null @@ -1,513 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/hand.svg b/src/activities/letter-in-word/resource/images/hand.svg deleted file mode 100644 index b2734a701..000000000 --- a/src/activities/letter-in-word/resource/images/hand.svg +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/hat.svg b/src/activities/letter-in-word/resource/images/hat.svg deleted file mode 100644 index fe77ecd4a..000000000 --- a/src/activities/letter-in-word/resource/images/hat.svg +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/horse.svg b/src/activities/letter-in-word/resource/images/horse.svg deleted file mode 100644 index 548f49819..000000000 --- a/src/activities/letter-in-word/resource/images/horse.svg +++ /dev/null @@ -1,5157 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/keyboard.svg b/src/activities/letter-in-word/resource/images/keyboard.svg deleted file mode 100644 index ff1e4dbb6..000000000 --- a/src/activities/letter-in-word/resource/images/keyboard.svg +++ /dev/null @@ -1,721 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Openclipart - - - tango input keyboard - 2010-03-27T10:17:43 - "Keyboard" icon from <a href="http://tango.freedesktop.org/Tango_Desktop_Project"> Tango Project </a> \n<br><br> \nSince version 0.8.90 Tango Project icons are Public Domain: <a href="http://tango.freedesktop.org/Frequently_Asked_Questions#Terms_of_Use.3F"> Tango Project FAQ </a> - https://openclipart.org/detail/34561/tango-input-keyboard-by-warszawianka - - - warszawianka - - - - - device - externalsource - hardware - icon - input - keyboard - tango - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/lemon.svg b/src/activities/letter-in-word/resource/images/lemon.svg deleted file mode 100644 index 81ad1e7c8..000000000 --- a/src/activities/letter-in-word/resource/images/lemon.svg +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/maze.svg b/src/activities/letter-in-word/resource/images/maze.svg deleted file mode 100644 index b3dd8b1d1..000000000 --- a/src/activities/letter-in-word/resource/images/maze.svg +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/money.svg b/src/activities/letter-in-word/resource/images/money.svg deleted file mode 100644 index 03afa3668..000000000 --- a/src/activities/letter-in-word/resource/images/money.svg +++ /dev/null @@ -1,362 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/orange.svg b/src/activities/letter-in-word/resource/images/orange.svg deleted file mode 100644 index 2a4fee533..000000000 --- a/src/activities/letter-in-word/resource/images/orange.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/owl.svg b/src/activities/letter-in-word/resource/images/owl.svg deleted file mode 100644 index 2f261c74c..000000000 --- a/src/activities/letter-in-word/resource/images/owl.svg +++ /dev/null @@ -1,5191 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/pear.svg b/src/activities/letter-in-word/resource/images/pear.svg deleted file mode 100644 index 813e5fb39..000000000 --- a/src/activities/letter-in-word/resource/images/pear.svg +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/pig.svg b/src/activities/letter-in-word/resource/images/pig.svg deleted file mode 100644 index 922217cd3..000000000 --- a/src/activities/letter-in-word/resource/images/pig.svg +++ /dev/null @@ -1,5146 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/pineapple.svg b/src/activities/letter-in-word/resource/images/pineapple.svg deleted file mode 100644 index 58c19d9d9..000000000 --- a/src/activities/letter-in-word/resource/images/pineapple.svg +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/plum.svg b/src/activities/letter-in-word/resource/images/plum.svg deleted file mode 100644 index dcc49005d..000000000 --- a/src/activities/letter-in-word/resource/images/plum.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/rainbow.svg b/src/activities/letter-in-word/resource/images/rainbow.svg deleted file mode 100644 index 4c171137b..000000000 --- a/src/activities/letter-in-word/resource/images/rainbow.svg +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/rooster.svg b/src/activities/letter-in-word/resource/images/rooster.svg deleted file mode 100644 index 949ab6edd..000000000 --- a/src/activities/letter-in-word/resource/images/rooster.svg +++ /dev/null @@ -1,5126 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/sheep.svg b/src/activities/letter-in-word/resource/images/sheep.svg deleted file mode 100644 index b8b7454cc..000000000 --- a/src/activities/letter-in-word/resource/images/sheep.svg +++ /dev/null @@ -1,674 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/images/xylophone.svg b/src/activities/letter-in-word/resource/images/xylophone.svg deleted file mode 100644 index efca83949..000000000 --- a/src/activities/letter-in-word/resource/images/xylophone.svg +++ /dev/null @@ -1,266 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/letter-in-word/resource/levels/levels-ca.json b/src/activities/letter-in-word/resource/levels/levels-ca.json deleted file mode 100644 index 5bfa90ff3..000000000 --- a/src/activities/letter-in-word/resource/levels/levels-ca.json +++ /dev/null @@ -1,23 +0,0 @@ -[ - { - "level": 1, - "words": "car,cat,dog,cow,pig,duck,hat,owl", - "questions":"cadhouw" - }, - { - "level": 2, - "words": "chicken,sheep,fire,fish,duck,pear,dice,apple,bulb,clock", - "questions":"csfudpiahe" - }, - { - "level": 3, - "words": "bug,sheep,earth,orange,cat,pineapple,banana,apple,football,hand,dice", - "questions":"abcdefgiopshlt" - }, - { - "level": 4, - "words": "balloons,rainbow,keyboard,football,horse,rooster,lemon,cherries,money,bulb,domino,girl,dice", - "questions":"brkfhlcmdgiey" - } -] - diff --git a/src/activities/letter-in-word/resource/levels/levels-en.json b/src/activities/letter-in-word/resource/levels/levels-en.json deleted file mode 100644 index 5bfa90ff3..000000000 --- a/src/activities/letter-in-word/resource/levels/levels-en.json +++ /dev/null @@ -1,23 +0,0 @@ -[ - { - "level": 1, - "words": "car,cat,dog,cow,pig,duck,hat,owl", - "questions":"cadhouw" - }, - { - "level": 2, - "words": "chicken,sheep,fire,fish,duck,pear,dice,apple,bulb,clock", - "questions":"csfudpiahe" - }, - { - "level": 3, - "words": "bug,sheep,earth,orange,cat,pineapple,banana,apple,football,hand,dice", - "questions":"abcdefgiopshlt" - }, - { - "level": 4, - "words": "balloons,rainbow,keyboard,football,horse,rooster,lemon,cherries,money,bulb,domino,girl,dice", - "questions":"brkfhlcmdgiey" - } -] - diff --git a/src/activities/letter-in-word/resource/levels/levels-es.json b/src/activities/letter-in-word/resource/levels/levels-es.json deleted file mode 100644 index 5bfa90ff3..000000000 --- a/src/activities/letter-in-word/resource/levels/levels-es.json +++ /dev/null @@ -1,23 +0,0 @@ -[ - { - "level": 1, - "words": "car,cat,dog,cow,pig,duck,hat,owl", - "questions":"cadhouw" - }, - { - "level": 2, - "words": "chicken,sheep,fire,fish,duck,pear,dice,apple,bulb,clock", - "questions":"csfudpiahe" - }, - { - "level": 3, - "words": "bug,sheep,earth,orange,cat,pineapple,banana,apple,football,hand,dice", - "questions":"abcdefgiopshlt" - }, - { - "level": 4, - "words": "balloons,rainbow,keyboard,football,horse,rooster,lemon,cherries,money,bulb,domino,girl,dice", - "questions":"brkfhlcmdgiey" - } -] - diff --git a/src/activities/letter-in-word/resource/levels/levels-fr.json b/src/activities/letter-in-word/resource/levels/levels-fr.json deleted file mode 100644 index 5bfa90ff3..000000000 --- a/src/activities/letter-in-word/resource/levels/levels-fr.json +++ /dev/null @@ -1,23 +0,0 @@ -[ - { - "level": 1, - "words": "car,cat,dog,cow,pig,duck,hat,owl", - "questions":"cadhouw" - }, - { - "level": 2, - "words": "chicken,sheep,fire,fish,duck,pear,dice,apple,bulb,clock", - "questions":"csfudpiahe" - }, - { - "level": 3, - "words": "bug,sheep,earth,orange,cat,pineapple,banana,apple,football,hand,dice", - "questions":"abcdefgiopshlt" - }, - { - "level": 4, - "words": "balloons,rainbow,keyboard,football,horse,rooster,lemon,cherries,money,bulb,domino,girl,dice", - "questions":"brkfhlcmdgiey" - } -] - diff --git a/src/activities/letter-in-word/resource/levels/levels-lt.json b/src/activities/letter-in-word/resource/levels/levels-lt.json deleted file mode 100644 index 5bfa90ff3..000000000 --- a/src/activities/letter-in-word/resource/levels/levels-lt.json +++ /dev/null @@ -1,23 +0,0 @@ -[ - { - "level": 1, - "words": "car,cat,dog,cow,pig,duck,hat,owl", - "questions":"cadhouw" - }, - { - "level": 2, - "words": "chicken,sheep,fire,fish,duck,pear,dice,apple,bulb,clock", - "questions":"csfudpiahe" - }, - { - "level": 3, - "words": "bug,sheep,earth,orange,cat,pineapple,banana,apple,football,hand,dice", - "questions":"abcdefgiopshlt" - }, - { - "level": 4, - "words": "balloons,rainbow,keyboard,football,horse,rooster,lemon,cherries,money,bulb,domino,girl,dice", - "questions":"brkfhlcmdgiey" - } -] -