diff --git a/src/activities/activities.txt b/src/activities/activities.txt index 60ba12542..2aa28c892 100644 --- a/src/activities/activities.txt +++ b/src/activities/activities.txt @@ -1,105 +1,106 @@ # The list of activities that will be loaded at GCompris start. # Keep it sorted advanced_colors algebra_by algebra_div algebra_minus algebra_plus algorithm align4 align4-2players alphabet-sequence babymatch babyshapes ballcatch braille_alphabets braille_fun canal_lock chronos clickanddraw clickgame click_on_letter click_on_letter_up clockgame color_mix color_mix_light colors details drawnumber enumerate erase erase_2clic erase_clic fifteen followline football geo-country geography gletters gnumch-equality gnumch-factors gnumch-inequality gnumch-multiples gnumch-primes guessnumber hanoi hanoi_real hexagon -simplepaint imageid imagename instruments intro_gravity +lang leftright lightsoff louis-braille magic-hat-minus magic-hat-plus maze mazeinvisible mazerelative memory memory-enumerate memory-math-add memory-math-add-minus memory-math-add-minus-mult-div memory-math-add-minus-mult-div-tux memory-math-add-minus-tux memory-math-add-tux memory-math-div memory-math-div-tux memory-math-minus memory-math-minus-tux memory-math-mult memory-math-mult-div memory-math-mult-div-tux memory-math-mult-tux memory-sound memory-sound-tux memory-tux memory-wordnumber mining missing-letter money money_back money_back_cents money_cents mosaic numbers-odd-even penalty planegame redraw redraw_symmetrical reversecount scalesboard scalesboard_weight scalesboard_weight_avoirdupois +simplepaint smallnumbers smallnumbers2 sudoku superbrain target tic_tac_toe tic_tac_toe_2players traffic wordsgame diff --git a/src/activities/lang/ActivityInfo.qml b/src/activities/lang/ActivityInfo.qml new file mode 100644 index 000000000..73c57f9ff --- /dev/null +++ b/src/activities/lang/ActivityInfo.qml @@ -0,0 +1,37 @@ +/* GCompris - ActivityInfo.qml + * + * Copyright (C) 2015 Your Name + * + * 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 GCompris 1.0 + +ActivityInfo { + name: "lang/Lang.qml" + difficulty: 1 + icon: "lang/lang.svg" + author: "siddhesh suthar " + demo: false + title: qsTr("Lang activity") + description: qsTr("Complete language learning activities.") + goal: qsTr("Enrich your vocabulary in your native language or in a foreign one.") + prerequisite: qsTr("Reading") + manual: qsTr("Review a set of words. Each word is shown with a voice a text and an image.") + + "

" + qsTr("When done you are suggested an exercise in which, given the voice,") + + "

" + qsTr("you must find the right word. In the configuration you can select the language you want to learn.") + credit: qsTr("The images and voices come from the Art4Apps project: http://www.art4apps.org/.") + + "

" +qsTr(" You can also access this activity online on http://gcompris.net/activity/lang.") + section: "reading" + enabled: DownloadManager.isDataRegistered("words") || ApplicationInfo.isDownloadAllowed +} diff --git a/src/activities/lang/CMakeLists.txt b/src/activities/lang/CMakeLists.txt new file mode 100644 index 000000000..e52b64551 --- /dev/null +++ b/src/activities/lang/CMakeLists.txt @@ -0,0 +1 @@ +GCOMPRIS_ADD_RCC(activities/lang *.qml *.svg *.js resource/*) diff --git a/src/activities/lang/Lang.qml b/src/activities/lang/Lang.qml new file mode 100644 index 000000000..ca5e3beba --- /dev/null +++ b/src/activities/lang/Lang.qml @@ -0,0 +1,410 @@ +/* GCompris - lang.qml + * + * Copyright (C) 2014 + * + * Authors: + * Pascal Georges (pascal.georges1@free.fr) (GTK+ version) + * Siddhesh suthar (Qt Quick port) + * Bruno Coudoin (Integration Lang dataset) + * + * 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 "lang.js" as Activity +import "qrc:/gcompris/src/core/core.js" as Core + +ActivityBase { + id: activity + + onStart: focus = true + onStop: {} + + pageComponent: Image { + id: background + source: "qrc:/gcompris/src/activities/lang/resource/imageid-bg.svg" + fillMode: Image.PreserveAspectCrop + sourceSize.width: parent.width + + property bool horizontalLayout: background.width > background.height + property bool keyNavigation: false + readonly property string wordsResource: "data2/words/words.rcc" + property bool englishFallback: false + property bool downloadWordsNeeded: false + + signal start + signal stop + signal voiceError + signal voiceDone + + Component.onCompleted: { + activity.start.connect(start) + activity.stop.connect(stop) + } + + // Add here the QML items you need to access in javascript + QtObject { + id: items + property Item main: activity.main + property alias background: background + property alias bar: bar + property alias bonus: bonus + property alias score: score + property alias wordImage: wordImage + property alias wordText: wordText + property alias categoryText: categoryText + property alias wordListModel: wordListModel + property alias parser: parser + property variant goodWord + property int goodWordIndex + property alias englishFallbackDialog: englishFallbackDialog + + function playWord() { + if (!activity.audioVoices.append(ApplicationInfo.getAudioFilePath(goodWord.voice))) + voiceError(); + } + onGoodWordChanged: playWord() + + } + + function handleResourceRegistered(resource) + { + if (resource == wordsResource) + Activity.start(items); + } + + onStart: { + Activity.init(items) + repeatItem.visible = false + keyNavigation = false + activity.audioVoices.error.connect(voiceError) + activity.audioVoices.done.connect(voiceDone) + + // check for words.rcc: + if (DownloadManager.isDataRegistered("words")) { + // words.rcc is already registered -> start right away + Activity.start(items); + } else if(DownloadManager.haveLocalResource(wordsResource)) { + // words.rcc is there, but not yet registered -> updateResource + DownloadManager.resourceRegistered.connect(handleResourceRegistered); + DownloadManager.updateResource(wordsResource); + } else { + // words.rcc has not been downloaded yet -> ask for download + downloadWordsNeeded = true + } + } + onStop: { + DownloadManager.resourceRegistered.disconnect(handleResourceRegistered); + Activity.stop() + } + + JsonParser { + id: parser + + onError: console.error("lang: Error parsing json: " + msg); + } + + ListModel { + id: wordListModel + } + + Rectangle{ + id: categoryTextbg + x: categoryText.x -4 + y: categoryText.y -4 + width: imageFrame.width + height: categoryText.height +4 + color: "#5090ff" + border.color: "#000000" + border.width: 2 + radius: 16 + anchors.bottom: imageFrame.top + anchors.left: imageFrame.left + anchors.bottomMargin: 20 + + + GCText{ + id: categoryText + text: "" + fontSize: largeSize + font.weight: Font.DemiBold + width: parent.width + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + color: "white" + wrapMode: Text.WordWrap + + property string nextCategory + function changeCategory(nextCategory_) { + nextCategory = nextCategory_ + animCategory.start() + } + + SequentialAnimation { + id: animCategory + PropertyAnimation { + target: categoryText + property: "opacity" + to: 0 + duration: 100 + } + PropertyAction { + target: categoryText + property: "text" + value: "Category: "+ categoryText.nextCategory + } + PropertyAnimation { + target: categoryText + property: "opacity" + to: 1 + duration: 100 + } + } + + } + } + + Image { + id: imageFrame + width: background.width * 0.55 + height: background.horizontalLayout + ? (background.height - bar.height)* 0.7 + : (background.height - bar.height) * 0.4 + + anchors { + horizontalCenter: background.horizontalCenter + top: background.top + topMargin: (background.height - bar.height) * 0.15 + } + source: "qrc:/gcompris/src/activities/lang/resource/imageid_frame.svg" + sourceSize.width: background.horizontalLayout ? parent.width * 0.9 : parent.height * 1.2 + z: 11 + + Image { + id: wordImage + sourceSize.width: parent.width * 0.6 + + anchors { + centerIn: parent + margins: 0.05 + parent.width + } + property string nextSource + function changeSource(nextSource_) { + nextSource = nextSource_ + animImage.start() + } + + SequentialAnimation { + id: animImage + PropertyAnimation { + target: wordImage + property: "opacity" + to: 0 + duration: 100 + } + PropertyAction { + target: wordImage + property: "source" + value: wordImage.nextSource + } + PropertyAnimation { + target: wordImage + property: "opacity" + to: 1 + duration: 100 + } + } + } + + Image{ + id: previousWordButton + source: "qrc:/gcompris/src/core/resource/bar_previous.svg"; + sourceSize.width: 30 * 1.2 * ApplicationInfo.ratio + anchors{ + right: parent.left + rightMargin: 30 + top: parent.top + topMargin: parent.height/2 - previousWordButton.height/2 + } + MouseArea{ + id: previousWordButtonArea + anchors.fill: parent + onClicked: Activity.prevSubLevel() + } + } + + Image{ + id: nextWordButton + source: "qrc:/gcompris/src/core/resource/bar_next.svg"; + sourceSize.width: 30 * 1.2 * ApplicationInfo.ratio + anchors{ + left: parent.right + leftMargin: 30 + top: parent.top + topMargin: parent.height/2 - previousWordButton.height/2 + } + MouseArea{ + id: nextWordButtonArea + anchors.fill: parent + onClicked: Activity.nextSubLevel(); + } + } + } + + Rectangle{ + id: wordTextbg + x: wordText.x -4 + y: wordText.y -4 + width: imageFrame.width + height: wordText.height +4 + color: "#5090ff" + border.color: "#000000" + border.width: 2 + radius: 16 + anchors.top: imageFrame.bottom + anchors.left: imageFrame.left + anchors.topMargin: 20 + + + GCText{ + id: wordText + text: "" + fontSize: largeSize + font.weight: Font.DemiBold + width: parent.width + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + color: "white" + wrapMode: Text.WordWrap + + property string nextWord + function changeText(nextWord_) { + nextWord = nextWord_ + animWord.start() + } + + SequentialAnimation { + id: animWord + PropertyAnimation { + target: wordText + property: "opacity" + to: 0 + duration: 100 + } + PropertyAction { + target: wordText + property: "text" + value: wordText.nextWord + } + PropertyAnimation { + target: wordText + property: "opacity" + to: 1 + duration: 100 + } + } + + } + + } + + onVoiceDone: repeatItem.visible = true + onVoiceError: repeatItem.visible = false + + BarButton { + id: repeatItem + source: "qrc:/gcompris/src/core/resource/bar_repeat.svg"; + sourceSize.width: 80 * ApplicationInfo.ratio + + z: 12 + anchors { + top: parent.top + left: parent.left + margins: 10 * ApplicationInfo.ratio + } + onClicked: items.playWord() + } + + DialogHelp { + id: dialogHelp + onClose: home() + } + + Bar { + id: bar + content: BarEnumContent { value: help | home | level } + onHelpClicked: { + displayDialog(dialogHelp) + } + onPreviousLevelClicked: Activity.previousLevel() + onNextLevelClicked: Activity.nextLevel() + onHomeClicked: activity.home() + } + + Bonus { + id: bonus + Component.onCompleted: win.connect(Activity.nextLevel) + } + + Loader { + id: englishFallbackDialog + sourceComponent: GCDialog { + parent: activity.main + message: qsTr("We are sorry, we don't have yet a translation for your language.") + " " + + qsTr("GCompris is developed by the KDE community, you can translate GCompris by joining a translation team on %2").arg("http://l10n.kde.org/") + + "

" + + qsTr("We switched to English for this activity but you can select another language in the configuration dialog.") + onClose: background.englishFallback = false + } + anchors.fill: parent + focus: true + active: background.englishFallback + onStatusChanged: if (status == Loader.Ready) item.start() + } + + Loader { + id: downloadWordsDialog + sourceComponent: GCDialog { + parent: activity.main + message: qsTr("The images for this activity are not yet installed.") + button1Text: qsTr("Download the images") + onClose: background.downloadWordsNeeded = false + onButton1Hit: { + DownloadManager.resourceRegistered.connect(handleResourceRegistered); + DownloadManager.downloadResource(wordsResource) + var downloadDialog = Core.showDownloadDialog(activity, {}); + } + } + anchors.fill: parent + focus: true + active: background.downloadWordsNeeded + onStatusChanged: if (status == Loader.Ready) item.start() + } + + Score { + id: score + + anchors.bottom: parent.bottom + anchors.bottomMargin: 10 * ApplicationInfo.ratio + anchors.right: parent.right + anchors.rightMargin: 10 * ApplicationInfo.ratio + anchors.top: undefined + } + + } + +} diff --git a/src/activities/lang/lang.js b/src/activities/lang/lang.js new file mode 100644 index 000000000..cd3551b48 --- /dev/null +++ b/src/activities/lang/lang.js @@ -0,0 +1,170 @@ +/* GCompris - lang.js + * + * Copyright (C) 2014 + * + * Authors: + * Pascal Georges (pascal.georges1@free.fr) (GTK+ version) + * Siddhesh suthar (Qt Quick port) + * Bruno Coudoin (Integration Lang dataset) + * + * 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 +.import "qrc:/gcompris/src/core/core.js" as Core +.import "qrc:/gcompris/src/activities/lang/lang_api.js" as Lang + +var currentLevel = 0; +var currentSubLevel = 0; +var level = null; +var maxLevel; +var maxSubLevel; +var items; +var baseUrl = "qrc:/gcompris/src/activities/lang/resource/"; +var dataset = null; +var lessons +var wordList +var subLevelsLeft +var backFlag +var flag + +function init(items_) { + items = items_ + maxLevel = 0 + maxSubLevel = 0 + currentLevel = 0 + currentSubLevel = 0 +} + +function start() { + currentLevel = 0; + currentSubLevel = 0; + + dataset = Lang.load(items.parser, baseUrl, "words.json", "content-$LOCALE.json") + if(!dataset) { + // English fallback + items.background.englishFallback = true + dataset = Lang.load(items.parser, baseUrl, "words.json", "content-en.json") + } else { + items.background.englishFallback = false + } + + lessons = Lang.getAllLessons(dataset) + maxLevel = lessons.length + + initLevel(); + +} + +function stop() { +} + +function initLevel() { + items.bar.level = currentLevel + 1; + + var currentLesson = lessons[currentLevel] + wordList = Lang.getLessonWords(dataset, currentLesson); +// Core.shuffle(wordList); + + backFlag = 0 + flag =0 + maxSubLevel = wordList.length; + items.score.numberOfSubLevels = maxSubLevel; + items.score.visible = true + console.log(currentLesson.name) + items.categoryText.changeCategory(currentLesson.name); + + subLevelsLeft = []; + for(var i in wordList){ + subLevelsLeft.push(i) // This is available in all editors. + } + + initSubLevel() +} + +function initSubLevel() { + // initialize sublevel + items.score.currentSubLevel = currentSubLevel + 1; + + console.log(flag) + if(flag === maxSubLevel || flag === -maxSubLevel){ + items.bonus.good("smiley"); + } + + else{ + if(backFlag === 1 ){ + items.goodWordIndex = subLevelsLeft.shift() + subLevelsLeft.push(items.goodWordIndex) + + } + if(backFlag === 0) { + items.goodWordIndex = subLevelsLeft.pop() + subLevelsLeft.unshift(items.goodWordIndex) + } + + items.goodWord = wordList[items.goodWordIndex] + items.wordImage.changeSource("qrc:/gcompris/data/" + items.goodWord.image) + items.wordText.changeText(items.goodWord.translatedTxt) + } +} + +function nextLevel() { + if(maxLevel <= ++currentLevel ) { + currentLevel = 0 + } + currentSubLevel = 0; + initLevel(); +} + +function previousLevel() { + if(--currentLevel < 0) { + currentLevel = maxLevel - 1 + } + currentSubLevel = 0; + initLevel(); +} + +function nextSubLevel() { + flag++; + if(maxSubLevel <= ++currentSubLevel ) { + currentSubLevel = 0 + } + if(backFlag === 1){ + subLevelsLeft.pop() + subLevelsLeft.unshift(items.goodWordIndex) + } + backFlag = 0 + initSubLevel(); + +} + +function prevSubLevel() { + flag--; + if(--currentSubLevel < 0) { + currentSubLevel = maxSubLevel - 1 + } + if(backFlag === 0){ + subLevelsLeft.shift() + subLevelsLeft.push(items.goodWordIndex) + } + backFlag =1 + initSubLevel() +} + + +// Append to the queue of words for the sublevel the error +function badWordSelected(wordIndex) { + if (subLevelsLeft[0] != wordIndex) + subLevelsLeft.unshift(wordIndex); +} diff --git a/src/activities/lang/lang.svg b/src/activities/lang/lang.svg new file mode 100644 index 000000000..a1f19ec0e --- /dev/null +++ b/src/activities/lang/lang.svg @@ -0,0 +1,211 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/src/activities/lang/lang_api.js b/src/activities/lang/lang_api.js new file mode 100644 index 000000000..84aac3444 --- /dev/null +++ b/src/activities/lang/lang_api.js @@ -0,0 +1,112 @@ +/* GCompris - lang_api.js + * + * Copyright (C) 2014 Bruno Coudoin + * + * Authors: + * Bruno Coudoin (bruno.coudoin@gcompris.net) + * + * 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 GCompris 1.0 as GCompris +.import "qrc:/gcompris/src/core/core.js" as Core + +var contentText + +function validateDataset(levels) +{ + return true; +} + +function load(parser, baseUrl, datasetFilename, translationFilename) { + + var datasetUrl = baseUrl + "/" + datasetFilename; + var dataset = parser.parseFromUrl(datasetUrl, validateDataset); + if (dataset === null) { + console.error("Lang: Invalid dataset, can't continue: " + + datasetUrl); + return; + } + dataset['contentText'] = loadContent(parser, + GCompris.ApplicationInfo.getLocaleFilePath(baseUrl + "/" + translationFilename)) + + if(!dataset['contentText']) { + return null + } + + return dataset +} + +function loadContent(parser, datasetUrl) { + + var dataset = parser.parseFromUrl(datasetUrl, validateDataset); + if (dataset === null) { + console.error("Lang: Invalid dataset, can't continue: " + + datasetUrl); + return; + } + return dataset +} + +function getChapter(dataset, chapter) { + return dataset[chapter] +} + +// Return a datamodel for the chapter suitable for creating a chapter selector +function getChapterModel(dataset) { + var chapters = [] + for (var c = 0; c < dataset.length; c++) { + chapters.push( + {'name': dataset[c].name, + 'image': dataset[c].content[0].content[0].image, + 'index': c + }) + } + return chapters +} + +function getLesson(dataset, chapter, lesson) { + return chapter.content[lesson] +} + +function getAllLessons(dataset) { + var lessons = [] + for (var c in dataset) { + for (var l in dataset[c].content) { + var lesson = getLesson(dataset, dataset[c], l) + lessons.push(lesson) + } + } + return lessons +} + +function getLessonWords(dataset, lesson) { + var wordList = lesson.content + // Fill up the lesson with the translated text + var allWords = [] + for (var k in wordList) { + var word = wordList[k] + word['translatedTxt'] = getTextByAudio(dataset.contentText, + word.description) + if(word['translatedTxt']) + allWords.push(word) + } + return allWords +} + +function getTextByAudio(contentText, audio) { + audio += ".ogg" + return contentText[audio] +} diff --git a/src/activities/lang/resource/content-de.json b/src/activities/lang/resource/content-de.json new file mode 100644 index 000000000..4f8b91f11 --- /dev/null +++ b/src/activities/lang/resource/content-de.json @@ -0,0 +1,1105 @@ +{ + "accountant.ogg": "der Buchhalter", + "ache.ogg": "der Schmerz", + "acorn.ogg": "die Eichel", + "actor.ogg": "der Schauspieler", + "air_horn.ogg": "die Hupe", + "alarmclock.ogg": "der Wecker", + "alligator.ogg": "der Alligator", + "alphabet.ogg": "das Alphabet", + "anchor.ogg": "der Anker", + "angel.ogg": "der Engle", + "angry.ogg": "wütend", + "animal.ogg": "die Tiere", + "ankle.ogg": "der Knöchel", + "ant.ogg": "die Ameise", + "anteater.ogg": "der Ameisenbär", + "antelope.ogg": "die Antilope", + "apple.ogg": "der Apfel", + "apple_tree.ogg": "der Apfelbaum", + "appliance.ogg": "das Gerät", + "apricot.ogg": "die Aprikose", + "arm.ogg": "der Arm", + "armchair.ogg": "der Sessel", + "artichoke.ogg": "die Artischocke", + "artist.ogg": "der Künstler", + "asparagus.ogg": "der Spargel", + "astronaut.ogg": "der Astronaut", + "athlete.ogg": "der Athlet", + "avocado.ogg": "die Avocado", + "ax.ogg": "die Axt", + "baby_bottle.ogg": "die Babyflasche", + "back.ogg": "der Rücken", + "badge.ogg": "das Abzeichen", + "bag.ogg": "der Rucksack", + "bait.ogg": "der Köder", + "bake.ogg": "kochen", + "balance.ogg": "die Waage", + "bald.ogg": "glatzköpfig", + "ball.ogg": "der Ball", + "ball_of_yarn.ogg": "der Wollknäuel", + "ball_soccer.ogg": "der Fußball", + "ballet.ogg": "das Ballet", + "bank.ogg": "die Bank", + "banker_female.ogg": "die Bankangestellte", + "bark.ogg": "bellen", + "barn.ogg": "die Scheune", + "bat.ogg": "die Fledermaus", + "bath.ogg": "das Bad", + "bathing_suit.ogg": "der Badeanzug", + "bay.ogg": "die Bucht", + "beach.ogg": "der Strand", + "bead.ogg": "die Blase", + "bean.ogg": "die Bohne", + "bear.ogg": "der Bär", + "beard.ogg": "der Bart", + "beat.ogg": "schlagen", + "beaver.ogg": "der Biber", + "bed.ogg": "das Bett", + "bedroom.ogg": "das Schlafzimmer", + "bee.ogg": "die Biene", + "beef.ogg": "das Rindfleisch", + "beetle.ogg": "der Käfer", + "beg.ogg": "betteln", + "behind.ogg": "dahinter", + "bell.ogg": "die Glocke", + "belly.ogg": "der Bauch", + "bench.ogg": "die Bank", + "bib.ogg": "der Latz", + "big.ogg": "groß", + "big_top.ogg": "das Zirkuszelt", + "bike.ogg": "das Fahrrad", + "bird.ogg": "der Vogel", + "bit.ogg": "der Bissen", + "bite.ogg": "abbeißen", + "black.ogg": "schwarz", + "blackberry.ogg": "die Brombeere", + "blackbird.ogg": "die Amsel", + "blade.ogg": "die Klinge", + "blind.ogg": "blind", + "blink.ogg": "blinzeln", + "block.ogg": "der Block", + "blond.ogg": "blond", + "blue.ogg": "blau", + "blueberry.ogg": "die Heidelbeere", + "blush.ogg": "erröten", + "board.ogg": "das Brett", + "boat.ogg": "das Boot", + "boil.ogg": "kochen", + "bolt.ogg": "die Mutter", + "bomb.ogg": "die Bombe", + "bone.ogg": "der Knochen", + "book.ogg": "das Buch", + "bookcase.ogg": "das Bücherregal", + "bottom.ogg": "das Gesäß", + "box.ogg": "die Schachtel", + "boxer.ogg": "der Boxer", + "boy.ogg": "der Junge", + "braid.ogg": "der Zopf", + "brain.ogg": "das Gehirn", + "branch.ogg": "der Ast", + "bread.ogg": "das Brot", + "break.ogg": "brechen", + "breast.ogg": "die Brust", + "brick.ogg": "der Ziegelstein", + "bricklayer.ogg": "der Maurer", + "bride.ogg": "die Braut", + "bridge.ogg": "die Brücke", + "bright.ogg": "leuchtend", + "broccoli.ogg": "der Brokkoli", + "brother.ogg": "der Bruder", + "brown.ogg": "braun", + "brush.ogg": "der Pinsel", + "bubble.ogg": "die Blase", + "bucket.ogg": "der Eimer", + "bud.ogg": "die Knospe", + "buffalo.ogg": "der Büffel", + "bug.ogg": "das Insekt", + "bulb.ogg": "die Glühbirne", + "bull.ogg": "der Stier", + "bump.ogg": "die Beule", + "bun.ogg": "das Brötchen", + "bus.ogg": "der Bus", + "bush.ogg": "der Busch", + "butcher.ogg": "der Metzger", + "butter.ogg": "die Butter", + "butterfly.ogg": "der Schmetterling", + "button.ogg": "der Knopf", + "cabbage.ogg": "der Kohl", + "cabin.ogg": "die Hütte", + "cacao.ogg": "der Kakao", + "cactus.ogg": "der Kaktus", + "cage.ogg": "der Käfig", + "cake.ogg": "die Torte", + "call.ogg": "anrufen", + "camel.ogg": "das Kamel", + "camera.ogg": "der Fotoapparat", + "camp.ogg": "zelten", + "can.ogg": "die Dose", + "canary.ogg": "der Kanarienvogel", + "candle.ogg": "die Kerze", + "candy.ogg": "das Bonbon", + "cane.ogg": "der Stock", + "canoe.ogg": "das Kanu", + "canon.ogg": "die Kanone", + "canyon.ogg": "der Canyon", + "cap.ogg": "die Mütze", + "cape.ogg": "der Umhang", + "car.ogg": "das Auto", + "carafe.ogg": "die Karaffe", + "card.ogg": "die Karte", + "carnival.ogg": "der Karneval", + "carpenter.ogg": "der Zimmermann", + "carpet.ogg": "der Teppich", + "carrot.ogg": "die Karotte", + "cart.ogg": "der Einkaufswagen", + "cash.ogg": "das Geld", + "castle.ogg": "das Schloß", + "cat.ogg": "der Kater", + "cat_female.ogg": "die Katze", + "catch.ogg": "fangen", + "caterpillar.ogg": "die Raupe", + "cauldron.ogg": "der Kessel", + "cauliflower.ogg": "der Blumenkohl", + "cavern.ogg": "die Höhle", + "celery.ogg": "der Sellerie", + "centipede.ogg": "der Tausendfüßler", + "cereal.ogg": "das Getreide", + "chain.ogg": "die Kette", + "chair.ogg": "der Stuhl", + "chalk.ogg": "die Kreide", + "chameleon.ogg": "das Chamäleon", + "chandelier.ogg": "der Kronleuchter", + "chat.ogg": "paludern", + "cheek.ogg": "die Wange", + "cheer.ogg": "jubeln", + "cheese.ogg": "der Käse", + "chef.ogg": "die Köchin", + "cherry.ogg": "die Kirsche", + "chest.ogg": "die Truhe", + "chick.ogg": "das Küken", + "chicken.ogg": "das Huhn", + "chief.ogg": "der Indianer", + "child.ogg": "das Kind", + "chimney.ogg": "der Schornstein", + "chimp.ogg": "der Schimpanse", + "chin.ogg": "das Kinn", + "chocolate.ogg": "die Schokolade", + "chop.ogg": "zerschneiden", + "chores.ogg": "die Hausarbeit", + "christmas.ogg": "das Weihnachten", + "cigar.ogg": "die Zigarre", + "circus.ogg": "der Zirkus", + "city.ogg": "die Stadt", + "clam.ogg": "die Muschel", + "clap.ogg": "klatschen", + "class.ogg": "die Klasse", + "claw.ogg": "die Tatze", + "clay.ogg": "der Ton", + "clean.ogg": "sich waschen", + "cleaning_lady.ogg": "die Putzfrau", + "cliff.ogg": "das Kliff", + "climb.ogg": "klettern", + "clock.ogg": "der Wecker", + "cloth.ogg": "der Stoff", + "clothes_hanger.ogg": "der Kleiderbügel", + "cloud.ogg": "die Wolke", + "cloudy.ogg": "wolkig", + "clover.ogg": "der Klee", + "cowboy.ogg": "der Cowboy", + "clown.ogg": "der Clown", + "coach.ogg": "die Trainerin", + "coast.ogg": "die Küste", + "coat.ogg": "der Mantel", + "cobra.ogg": "die Kobra", + "coconut.ogg": "die Kokosnuss", + "cod.ogg": "der Dorsch", + "coffee.ogg": "der Kaffee", + "coin.ogg": "das Geldstück", + "cold.ogg": "die Kälte", + "color.ogg": "bunt", + "colt.ogg": "das Fohlen", + "comb.ogg": "der Kamm", + "cone.ogg": "der Kegel", + "cookie.ogg": "der Keks", + "cork.ogg": "der Korken", + "corn.ogg": "der Mais", + "couch.ogg": "das Sofa", + "cough.ogg": "husten", + "couple.ogg": "das Paar", + "cow.ogg": "die Kuh", + "crab.ogg": "der Krebs", + "cradle.ogg": "die Wiege", + "craft.ogg": "das Handwerk", + "crawl.ogg": "krabbeln", + "crazy.ogg": "verrückt", + "creek.ogg": "der Bach", + "crepe.ogg": "der Pfannkuchen", + "crib.ogg": "das Kinderbett", + "criminal.ogg": "der Verbrecher", + "croak.ogg": "quaken", + "crocodile.ogg": "das Krokodil", + "cross.ogg": "das Kreuz", + "crow.ogg": "die Krähe", + "crown.ogg": "die Krone", + "crumb.ogg": "der Krümel", + "crust.ogg": "die Kruste", + "cry.ogg": "weinen", + "crystal.ogg": "der Kristall", + "cube.ogg": "der Würfel", + "cucumber.ogg": "die Gurke", + "curtain.ogg": "der Vorhang", + "cut.ogg": "schneiden", + "cute.ogg": "reizend", + "dad.ogg": "der Vater", + "daffodil.ogg": "die Osterglocke", + "daisy.ogg": "die Margerite", + "dam.ogg": "der Staudamm ", + "dance.ogg": "tanzen", + "dandelion.ogg": "der Löwenzahn", + "danger.ogg": "die Gefahr", + "dart_board.ogg": "die Zielscheibe", + "date_fruit.ogg": "die Dattel", + "deer.ogg": "der Hirsch", + "den.ogg": "der Bau", + "desert.ogg": "die Wüste", + "desk.ogg": "der Schreibtisch", + "dessert.ogg": "der Nachtisch", + "diamond.ogg": "der Diamant", + "dig.ogg": "graben", + "dirt.ogg": "der Schmutz", + "dirty.ogg": "schmutzig", + "dish.ogg": "das Gericht", + "dishcloth.ogg": "der Spüllappen", + "dive.ogg": "tauchen", + "doctor.ogg": "die Ärztin", + "doe.ogg": "die Hirschkuh", + "dog.ogg": "der Hund", + "doll.ogg": "die Puppe", + "dolphin.ogg": "der Delphin", + "domino.ogg": "der Domino", + "door.ogg": "die Tür", + "doormat.ogg": "die Fußmatte", + "dot.ogg": "der Punkt", + "doughnut.ogg": "der Donut", + "dove.ogg": "die Taube", + "dragon.ogg": "der Drache", + "dragonfly.ogg": "die Libelle", + "drank.ogg": "trinken", + "draw.ogg": "die Zeichnung", + "drawer.ogg": "die Schublade", + "dream.ogg": "träumen", + "dress.ogg": "das Kleid", + "drink.ogg": "das Getränk", + "drinking.ogg": "trinken", + "drip.ogg": "der Tropfen", + "drive.ogg": "fahren", + "drool.ogg": "sabbern", + "drum.ogg": "die Trommel", + "dry.ogg": "trocknen", + "duck.ogg": "der Erpel", + "duck_mother.ogg": "die Ente", + "dune.ogg": "die Düne", + "dwarf.ogg": "der Zwerg", + "eagle.ogg": "der Adler", + "ear.ogg": "das Ohr", + "earth.ogg": "die Erde", + "eat.ogg": "essen", + "egg.ogg": "das Ei", + "eggplant.ogg": "die Aubergine", + "elbow.ogg": "der Ellbogen", + "electrician.ogg": "der Elektriker", + "eleven.ogg": "elf", + "elk.ogg": "der Elch", + "empty.ogg": "leer", + "engine.ogg": "der Motor", + "engineer.ogg": "der Ingenieur", + "eraser.ogg": "der Radiergummi", + "explore.ogg": "die Erforscher", + "eyelash.ogg": "die Wimper", + "eyes.ogg": "die Augen", + "face.ogg": "das Gesicht", + "fair.ogg": "die Kirmes", + "fairy.ogg": "die Fee", + "fall_down.ogg": "fallen", + "fall_season.ogg": "der Herbst", + "family.ogg": "die Familie", + "fan.ogg": "der Ventilator", + "farm.ogg": "der Bauernhof", + "farmer.ogg": "der Bauer", + "fat.ogg": "dick", + "faucet.ogg": "der Wasserhahn", + "fawn.ogg": "das Rehkitz", + "feast.ogg": "das Hähnchen", + "feather.ogg": "die Feder", + "feed.ogg": "füttern", + "feet.ogg": "Füße", + "fell.ogg": "fallen", + "femur.ogg": "der Oberschenkelknochen", + "fetch.ogg": "bringen", + "fig.ogg": "die Feige", + "fin.ogg": "die Flosse", + "find.ogg": "finden", + "finger.ogg": "der Finger", + "fire.ogg": "das Feuer", + "fire_extinguisher.ogg": "der Feuerlöscher", + "fireman.ogg": "der Feuerwehrmann", + "fish.ogg": "der Fisch", + "fisherman.ogg": "der Fischer", + "fist.ogg": "die Faust", + "flacon.ogg": "der Flakon", + "flag.ogg": "die Flagge", + "flame.ogg": "die Flamme", + "flamingo.ogg": "der Flamingo", + "flash.ogg": "die Taschenlampe", + "flat.ogg": "die Wohnungen", + "flies.ogg": "die Fliege", + "flight.ogg": "der Flug", + "float.ogg": "treiben", + "flour.ogg": "das Mehl", + "flower.ogg": "die Blume", + "fluff.ogg": "die Fluse", + "flute.ogg": "die Flöte", + "fly.ogg": "fliegen", + "foam.ogg": "der Schaum", + "food.ogg": "der Hamburger", + "foot.ogg": "der Fuß", + "forest.ogg": "der Wald", + "fork.ogg": "die Gabel", + "fountain.ogg": "der Brunnen", + "fox.ogg": "der Fuchs", + "freeze.ogg": "friehren", + "friend.ogg": "der Freund", + "fries.ogg": "die Pommes Frites", + "frog.ogg": "der Frosch", + "front.ogg": "davor", + "frown.ogg": "murren", + "fruit.ogg": "die Früchte", + "fudge.ogg": "das Sahnebonbon", + "full.ogg": "voll", + "fun.ogg": "der Spaß", + "fur.ogg": "der Pelz", + "game.ogg": "die Freude", + "garage.ogg": "die Garage", + "garden.ogg": "der Garten", + "garlic.ogg": "der Knoblauch", + "gem.ogg": "der Edelstein", + "giant.ogg": "riesig", + "gift.ogg": "das Geschenk", + "giraffe.ogg": "die Giraffe", + "girl.ogg": "das Mädchen", + "glass.ogg": "das Glas", + "glasses.ogg": "die Brille", + "glove.ogg": "die Handschuhe", + "glue.ogg": "der Kleber", + "gnome.ogg": "der Gnom", + "goat.ogg": "die Ziege", + "golden.ogg": "golden", + "golf.ogg": "das Golf", + "goose.ogg": "die Gans", + "gorilla.ogg": "der Gorilla", + "grain.ogg": "das Getreide", + "grandmother.ogg": "die Großmutter", + "grape.ogg": "die Traube", + "grapefruit.ogg": "die Pampelmuse", + "grass.ogg": "das Gras", + "grave.ogg": "das Grab", + "gray.ogg": "grau", + "green.ogg": "grün", + "grill.ogg": "der Grill", + "grin.ogg": "lächeln", + "ground.ogg": "die Erde", + "growl.ogg": "knurren", + "guignol.ogg": "der Kasper", + "guinea_pig.ogg": "das Meerschweinchen", + "gum.ogg": "der Kaugummi", + "hair.ogg": "die Haare", + "hair_dryer.ogg": "der Föhn", + "half.ogg": "halb", + "ham.ogg": "der Schinken", + "hammer.ogg": "der Hammer", + "hand.ogg": "die Hand", + "handlebar.ogg": "der Lenker", + "happy.ogg": "glücklich", + "harp.ogg": "die Harfe", + "hat.ogg": "der Hut", + "hatch.ogg": "ausschlüpfen", + "hay.ogg": "das Heu", + "head.ogg": "der Kopf", + "hear.ogg": "hören", + "heat.ogg": "die Hitze ", + "hedge.ogg": "die Hecke", + "hedgehog.ogg": "der Igel", + "heel.ogg": "der Absatz", + "helmet.ogg": "der Helm", + "hen.ogg": "die Henne", + "herd.ogg": "die Herde", + "high.ogg": "hoch", + "hike.ogg": "wandern", + "hill.ogg": "der Hügel", + "hip.ogg": "die Hüfte", + "hippopotamus.ogg": "das Nilpferd", + "hit.ogg": "schlagen", + "hive.ogg": "der Bienenstock", + "hockey.ogg": "das Eishockey", + "hole.ogg": "das Loch", + "home.ogg": "das Zuhause", + "hook.ogg": "der Angelhaken", + "horse.ogg": "das Pferd", + "hose.ogg": "der Schlauch", + "hospital.ogg": "das Krankenhaus", + "hot.ogg": "heiß", + "hot_dog.ogg": "der Hotdog", + "hound.ogg": "der Jagdhund", + "house.ogg": "das Haus", + "howl.ogg": "heulen", + "huge.ogg": "riesig", + "hummingbird.ogg": "der Kolibri", + "hunchback.ogg": "der Buckel", + "hunter.ogg": "der Jäger", + "husband.ogg": "der Ehemann", + "hut.ogg": "die Hütte", + "hyena.ogg": "die Hyäne", + "ice.ogg": "der Eiswürfel", + "iceberg.ogg": "der Eisberg", + "iguana.ogg": "der Leguan", + "ill.ogg": "krank", + "ink.ogg": "die Tinte", + "island.ogg": "die Insel", + "jacket.ogg": "das Jackett", + "jaguar.ogg": "der Jaguar", + "jam.ogg": "die Marmelade", + "jay.ogg": "der Eichelhäher", + "jelly.ogg": "das Gelee", + "jellyfish.ogg": "die Qualle", + "jewel.ogg": "das Juwel", + "job.ogg": "die Arbeit", + "jockey.ogg": "der Jockey", + "jog.ogg": "das Jogging", + "judge.ogg": "der Richter", + "judo.ogg": "das Judo", + "juggler.ogg": "Jongleur", + "juice.ogg": "der Saft", + "jump.ogg": "springen", + "kangaroo.ogg": "das Känguru", + "keel.ogg": "der Kegel", + "kernel.ogg": "der Kern", + "keyboard.ogg": "die Tastatur", + "kimono.ogg": "der Kimono", + "king.ogg": "der König", + "kiss.ogg": "küssen", + "kitchen.ogg": "die Küche", + "kite.ogg": "der Drachen", + "kitten.ogg": "das Kätzchen", + "kiwi.ogg": "die Kiwi", + "knee.ogg": "das Knie", + "kneel.ogg": "sich hinknien", + "knife.ogg": "das Messer", + "knight.ogg": "der Ritter", + "knit.ogg": "stricken", + "knot.ogg": "der Knoten", + "koala.ogg": "der Koala", + "lady.ogg": "die Dame", + "ladybug.ogg": "der Marienkäfer", + "lake.ogg": "der See", + "lama.ogg": "das Lama", + "lamb.ogg": "das Lamm", + "lamp.ogg": "die Lampe", + "lane.ogg": "die Fahrbahn", + "lap.ogg": "der Schoß", + "land.ogg": "das Gelände", + "lasso.ogg": "das Lasso", + "laugh.ogg": "lachen", + "lava.ogg": "die Lava", + "lawn.ogg": "der Rasen", + "lawyer.ogg": "der Rechtsanwalt", + "leaf.ogg": "das Blatt", + "ledge.ogg": "der Felsvorsprung", + "leek.ogg": "der Lauch", + "left.ogg": "links", + "leg.ogg": "das Bein", + "leg_animal.ogg": "das Käferbein", + "lemon.ogg": "die Zitrone", + "lemonade.ogg": "die Limonade", + "lemur.ogg": "der Lemur", + "leopard.ogg": "der Leopard", + "lettuce.ogg": "der Blattsalat", + "librarian.ogg": "die Bibliothekarin", + "lick.ogg": "ablecken", + "lid.ogg": "der Deckel", + "lift.ogg": "hochheben", + "light.ogg": "das Licht", + "lighthouse.ogg": "der Leuchtturm", + "lightning.ogg": "der Blitz", + "lilac.ogg": "der Flieder", + "lime.ogg": "die Limone", + "line.ogg": "der Strich", + "link.ogg": "das Kettenglied", + "lion.ogg": "der Löwe", + "lion_cub.ogg": "das Löwenjunge", + "lip.ogg": "die Lippe", + "liquid.ogg": "flüssig", + "lizard.ogg": "die Eidechse", + "lobster.ogg": "der Hummer", + "log.ogg": "das Holzscheit", + "look.ogg": "das Aussehen", + "lunch.ogg": "der Imbiß", + "mad.ogg": "der Zorn", + "magic.ogg": "magisch", + "magnet.ogg": "der Magnet", + "magnifying_glass.ogg": "die Lupe", + "magpie.ogg": "die Elster", + "mail.ogg": "der Briefumschlag", + "man.ogg": "der Mann", + "mane.ogg": "die Mähne", + "mango.ogg": "die Mango", + "map.ogg": "die Landkarte", + "maple.ogg": "der Ahorn", + "marble.ogg": "die Murmel", + "mashed_potatoes.ogg": "der Kartoffelbrei", + "mask.ogg": "die Taucherbrille", + "mast.ogg": "der Mast", + "mat.ogg": "die Matte", + "match.ogg": "die Streichhölzer", + "mate_male.ogg": "der Freund", + "mate_female.ogg": "die Freundin", + "mattress.ogg": "die Matratze", + "mauve.ogg": "lila", + "meal.ogg": "die Mahlzeit", + "meat.ogg": "das Fleisch", + "mechanic.ogg": "der Mechaniker", + "medal.ogg": "die Medaille", + "meet.ogg": "treffen", + "melon.ogg": "die Melone", + "men.ogg": "die Menschenmenge", + "merry-go-round.ogg": "das Karussell", + "mice.ogg": "die Mäuse", + "microphone.ogg": "das Mikrophon", + "milk.ogg": "die Milch", + "mill.ogg": "die Windmühle", + "mimosa.ogg": "die Mimose", + "mirror.ogg": "der Spiegel", + "mixer.ogg": "der Mixer", + "mole.ogg": "der Maulwurf", + "mom.ogg": "die Mama", + "moon.ogg": "der Mond", + "moose.ogg": "der Elch", + "mop.ogg": "der Mopp", + "mosque.ogg": "die Moschee", + "mosquito.ogg": "die Mücke", + "mother.ogg": "die Mutter", + "motorcycle.ogg": "das Motorrad", + "mountain.ogg": "der Berg", + "mouse.ogg": "die Maus", + "mouth.ogg": "der Mund", + "movie.ogg": "der Film", + "mower.ogg": "der Rasenmäher", + "mud.ogg": "der Schlamm", + "mug.ogg": "die Tasse", + "mule.ogg": "der Esel", + "muscle.ogg": "der Muskel", + "mushroom.ogg": "der Fliegenpilz", + "music.ogg": "die Musik", + "musician.ogg": "der Musiker", + "naked.ogg": "nackt", + "nap.ogg": "schlummern", + "navel.ogg": "der Bauchnabel", + "neck.ogg": "der Nacken", + "necklace.ogg": "die Halskette", + "needle.ogg": "die Nadel", + "nest.ogg": "das Nest", + "net.ogg": "der Kescher", + "newspaper.ogg": "die Zeitung", + "night.ogg": "die Nacht", + "nightgown.ogg": "das Nachthemd", + "nose.ogg": "die Nase", + "nostril.ogg": "das Nasenloch", + "notebook.ogg": "das Notizbuch", + "number.ogg": "die Zahl", + "nun.ogg": "die Nonne", + "nurse.ogg": "die Krankenschwester", + "nurse_male.ogg": "der Krankenpfleger", + "nut.ogg": "die Erdnuß", + "oar.ogg": "das Ruder", + "ocean.ogg": "der Ozean", + "office.ogg": "das Büro", + "olive.ogg": "die Olive", + "on.ogg": "darauf", + "onion.ogg": "die Zwiebel", + "open.ogg": "offen", + "opossum.ogg": "das Opossum", + "orange-color.ogg": "orange", + "orange.ogg": "die Orange", + "orchid.ogg": "die Orchidee", + "ostrich.ogg": "der Strauß", + "otter.ogg": "der Otter", + "owl.ogg": "die Eule", + "ox.ogg": "der Ochse", + "oyster.ogg": "die Auster", + "pacifier.ogg": "der Schnuller", + "page.ogg": "die Seite", + "pair.ogg": "das Paar", + "pajamas.ogg": "der Pyjama", + "palm_tree.ogg": "die Palme", + "pan.ogg": "die Pfanne", + "panda.ogg": "der Panda", + "panther.ogg": "der Panther", + "panties.ogg": "die Unterhose", + "pants.ogg": "die Hose", + "papaya.ogg": "die Papaya", + "paper.ogg": "das Papier", + "parachute.ogg": "der Fallschirm", + "parakeet.ogg": "der Sittich", + "parrot.ogg": "der Papagei", + "patch.ogg": "der Flicken", + "path.ogg": "der Weg", + "paw.ogg": "die Pfote", + "pea.ogg": "die Erbse", + "peach.ogg": "der Pfirsich", + "peacock.ogg": "der Pfau", + "peak.ogg": "der Gipfel", + "pear.ogg": "die Birne", + "pearl.ogg": "die Perle", + "peck.ogg": "picken", + "pedal.ogg": "das Pedal", + "pelican.ogg": "der Pelikan", + "pen.ogg": "der Füller", + "pencil.ogg": "der Bleistift", + "peony.ogg": "die Päonie", + "people.ogg": "die Leute", + "pepper.ogg": "der Pfeffer", + "peppers.ogg": "die Peperoni", + "petal.ogg": "das Blütenblatt", + "petite.ogg": "klein", + "phone.ogg": "das Telefon", + "piano.ogg": "das Klavier", + "picture.ogg": "das Bild", + "pie.ogg": "der Kuchen", + "pig.ogg": "das Schwein", + "pigeon.ogg": "die Taube", + "pill.ogg": "die Tablette", + "pillow.ogg": "das Kissen", + "pilot.ogg": "der Pilot", + "pine.ogg": "die Pinie", + "pine_cone.ogg": "der Tannenzapfen", + "pink.ogg": "rosa", + "pip.ogg": "der Kern", + "pipe.ogg": "die Pfeife", + "piranha.ogg": "der Piranha", + "pirate.ogg": "der Pirat", + "pizza.ogg": "die Pizza", + "plane.ogg": "das Flugzeug", + "planet.ogg": "der Planet", + "plant.ogg": "die Pflanze", + "plate.ogg": "der Teller", + "play.ogg": "spielen", + "pliers.ogg": "die Zange", + "plum.ogg": "die Pflaume", + "plow.ogg": "pflügen", + "plumber.ogg": "der Klempner", + "pocket.ogg": "die Hosentasche", + "pod.ogg": "die Schote", + "pole.ogg": "der Pfosten", + "police.ogg": "der Polizist", + "pompon.ogg": "der Pompon", + "pond.ogg": "der Teich", + "pony.ogg": "das Ponny", + "pool.ogg": "das Schwimmbad", + "pop.ogg": "das Popcorn", + "pope.ogg": "der Papst", + "porthole.ogg": "das Bullauge", + "post.ogg": "der Briefkasten", + "pot.ogg": "der Topf", + "potato.ogg": "die Kartoffel", + "pounce.ogg": "anspringen", + "president.ogg": "der Präsident", + "pretty.ogg": "schön", + "price.ogg": "der Preis", + "priest.ogg": "der Pfarrer", + "prince.ogg": "der Prinz", + "princess.ogg": "die Prinzession", + "prison.ogg": "das Gefängnis", + "prisoner.ogg": "der Häftling", + "prize.ogg": "der Pokal", + "pug.ogg": "der Mops", + "pull.ogg": "ziehen", + "pullover.ogg": "der Pullover", + "pumpkin.ogg": "der Kürbis", + "puppy.ogg": "der Welpe", + "pyramid.ogg": "die Pyramide", + "quarrel.ogg": "sich streiten", + "queen.ogg": "die Königin", + "question.ogg": "die Frage", + "quilt.ogg": "die Steppdecke", + "quiz.ogg": "das Quiz", + "rabbit.ogg": "das Kaninchen", + "rabbit_baby.ogg": "das Kaninchenjunge", + "race.ogg": "das Wettrennen", + "radio.ogg": "das Radio", + "radish.ogg": "der Rettich", + "raft.ogg": "das Floß", + "rag.ogg": "der Lappen", + "rage.ogg": "die Wut", + "rain.ogg": "der Regen", + "raincoat.ogg": "der Regenmantel", + "rake.ogg": "die Harke", + "ramp.ogg": "die Rampe", + "raspberry.ogg": "die Himbeere", + "rat.ogg": "die Ratte", + "razor.ogg": "der Rasierer", + "read.ogg": "lesen", + "red.ogg": "rot", + "reptile.ogg": "das Reptil", + "rhinoceros.ogg": "das Nashorn", + "rice.ogg": "der Reis", + "ride.ogg": "Fahrrad fahren", + "rifle.ogg": "das Gewehr", + "right.ogg": "rechts", + "rip.ogg": "das Grab", + "rise.ogg": "ansteigen", + "river.ogg": "der Fluß", + "road.ogg": "die Straße", + "roast.ogg": "der Braten", + "robe.ogg": "die Robe", + "robot.ogg": "der Roboter", + "rock.ogg": "der Stein", + "rocket.ogg": "die Rakete", + "rolling_pin.ogg": "das Nudelholz", + "roof.ogg": "das Dach", + "room.ogg": "das Zimmer", + "root.ogg": "die Wurzel", + "rope.ogg": "das Seil", + "rose.ogg": "die Rose", + "round.ogg": "rund", + "rowing.ogg": "das Rudern", + "royal.ogg": "königlich", + "rug.ogg": "der Vorleger", + "run.ogg": "rennen", + "sad.ogg": "traurig", + "saddle.ogg": "der Sattel", + "sail.ogg": "das Segelboot", + "sailor.ogg": "der Matrose", + "salamander.ogg": "der Salamander", + "salmon.ogg": "der Lachs", + "sand.ogg": "der Sand", + "sandals.ogg": "die Sandalen", + "sandwich.ogg": "das Sandwich", + "sash.ogg": "die Schärpe", + "sat.ogg": "sich hinsetzen", + "sauce.ogg": "die Sauce", + "sausage.ogg": "die Wurst", + "scale.ogg": "die Waage", + "scar.ogg": "die Narbe", + "scared.ogg": "erschrecken", + "scarf.ogg": "der Schal", + "school.ogg": "die Schule", + "school_bag.ogg": "die Schultasche", + "science.ogg": "die Wissenschaft", + "scissors.ogg": "die Schere", + "scorpion.ogg": "der Skorpion", + "scratch.ogg": "kratzen", + "scream.ogg": "schreien", + "screw.ogg": "die Schraube", + "screwdriver.ogg": "der Schraubenzieher", + "scribble.ogg": "kritzeln", + "sea.ogg": "das Meer", + "seat.ogg": "der Stuhl", + "see.ogg": "sehen", + "seed.ogg": "der Samen", + "shadow.ogg": "der Schatten", + "shake.ogg": "schütteln", + "shark.ogg": "der Hai", + "shave.ogg": "scheren", + "shed.ogg": "der Schuppen", + "sheep.ogg": "das Schaf", + "shelf.ogg": "das Regal", + "shell.ogg": "die Muschel", + "ship.ogg": "das Schiff", + "shirt.ogg": "das Hemd", + "shoe.ogg": "der Schuh", + "shoelace.ogg": "der Schnürsenkel", + "shop.ogg": "der Laden", + "shore.ogg": "das Ufer", + "short.ogg": "die Shorts", + "shovel.ogg": "die Schippe", + "shower.ogg": "die Dusche", + "shrimp.ogg": "die Garnele", + "shrub.ogg": "der Strauch", + "shut.ogg": "geschlossen", + "shutter.ogg": "der Fensterladen", + "sick.ogg": "krank", + "sidewalk.ogg": "der Gehweg", + "sign.ogg": "das Schild", + "sing.ogg": "singen", + "sink.ogg": "die Spüle", + "sip.ogg": "nippen", + "sister.ogg": "die Schwester", + "sit.ogg": "sich hinsetzen", + "sixteen.ogg": "sechzehn", + "skate.ogg": "das Skateboardfahren", + "skeleton.ogg": "das Skelett", + "ski.ogg": "das Skifahren", + "skimmer.ogg": "der Schaumlöffel", + "skin.ogg": "die Haut", + "skirt.ogg": "der Rock", + "skunk.ogg": "das Stinktier", + "sky.ogg": "der Himmel", + "sled.ogg": "der Schlitten", + "sleep.ogg": "schlafen", + "sleeve.ogg": "der Ärmel", + "sleigh.ogg": "der Pferdeschlitten", + "slide.ogg": "die Rutsche", + "slim.ogg": "schlank", + "slime.ogg": "der Schleim", + "slippers.ogg": "der Hausschuh", + "slope.ogg": "der Abhang", + "sloppy.ogg": "durchnäßt", + "slot.ogg": "der Schlitz", + "sloth.ogg": "das Faultier", + "slug.ogg": "die Nacktschnecke", + "small.ogg": "klein", + "smell.ogg": "riechen", + "smile.ogg": "lächeln", + "smock.ogg": "der Kittel", + "smoke.ogg": "der Rauch", + "smooch.ogg": "küssen", + "snack.ogg": "der Imbiss", + "snail.ogg": "die Schnecke", + "snake.ogg": "die Schlange", + "sneaker.ogg": "der Turnschuh", + "sniff.ogg": "schnüffeln", + "snow.ogg": "der Schnee", + "soap.ogg": "die Seife", + "sob.ogg": "schluchzen", + "sock.ogg": "die Socke", + "soldier.ogg": "die Soldatin", + "sole.ogg": "die Seezunge", + "sole_shoe.ogg": "die Schuhsohle", + "son.ogg": "der Sohn", + "soup.ogg": "die Suppe", + "spade.ogg": "der Spaten", + "spaghetti.ogg": "die Spaghetti", + "spark.ogg": "der Funke", + "sparrow.ogg": "der Spatz", + "spatula.ogg": "der Pfannenwender", + "speak.ogg": "sprechen", + "spear.ogg": "der Speer", + "spice.ogg": "das Gewürz", + "spider.ogg": "die Spinne", + "spider_web.ogg": "das Spinnennetz", + "spike.ogg": "der Stachel", + "spill.ogg": "ausschütten", + "spinach.ogg": "der Spinat", + "spine.ogg": "die Wirbelsäule", + "spinning_top.ogg": "der Kreisel", + "splash.ogg": "spritzen", + "splatter.ogg": "der Spritzer", + "sponge.ogg": "der Schwamm", + "spool.ogg": "die Spule", + "spoon.ogg": "der Löffel", + "sport.ogg": "der Sport", + "spot.ogg": "fleckig", + "spray.ogg": "sprühen", + "spread.ogg": "verteilen", + "spring.ogg": "federn", + "spring_season.ogg": "der Frühling", + "sprinkle.ogg": "der Streusel", + "square.ogg": "das Quadrat", + "squash.ogg": "der Kürbis", + "squat.ogg": "die Hocke", + "squid.ogg": "der Tintenfisch", + "squirrel.ogg": "das Eichhörnchen", + "stack.ogg": "der Stapel", + "stage.ogg": "die Bühne", + "staircase.ogg": "die Treppe", + "stamp.ogg": "die Briefmarke", + "stand.ogg": "stehend", + "star.ogg": "der Stern", + "stare.ogg": "der Blick", + "starfish.ogg": "der Seestern", + "steak.ogg": "das Steak", + "steam.ogg": "der Dampf", + "steep.ogg": "steil", + "steeple.ogg": "der Kirchturm", + "stem.ogg": "der Stiel", + "step.ogg": "die Stufe", + "stew.ogg": "der Eintopf", + "stick.ogg": "der Ast", + "sting.ogg": "stechen", + "stinky.ogg": "stinkend", + "stitch.ogg": "nähen", + "stomach.ogg": "der Magen", + "stone.ogg": "der Stein", + "stop.ogg": "anhalten", + "store.ogg": "das Geschäft", + "stove.ogg": "der Herd", + "straight.ogg": "gerade", + "strainer.ogg": "das Sieb", + "straw.ogg": "der Strohhalm", + "strawberry.ogg": "die Erdbeere", + "stream.ogg": "der Strom", + "street.ogg": "die Straße", + "stretch.ogg": "sich strecken", + "string.ogg": "die Schnur", + "stripe.ogg": "gestreift", + "strong.ogg": "stark", + "student.ogg": "der Student", + "study.ogg": "lernen", + "stump.ogg": "der Baumstumpf", + "sugar.ogg": "der Zucker", + "suit.ogg": "der Anzug", + "suitcase.ogg": "der Koffer", + "summer.ogg": "der Sommer", + "summit.ogg": "der Gipfel", + "sun.ogg": "die Sonne", + "swan.ogg": "der Schwan", + "sweat.ogg": "schwitzen", + "sweatshirt.ogg": "das Sweatshirt", + "swim.ogg": "schwimmen", + "table.ogg": "der Tisch", + "tablecloth.ogg": "die Tischdecke", + "tadpole.ogg": "die Kaulquappe", + "tag.ogg": "das Etikett", + "tail.ogg": "der Schwanz", + "tall.ogg": "groß", + "tape_measure.ogg": "das Metermaß", + "taxi.ogg": "das Taxi", + "teach.ogg": "unterrichten", + "teacher.ogg": "die Lehrerin", + "tear.ogg": "zerreißen", + "teddy.ogg": "der Teddybär", + "teeth.ogg": "die Zähne", + "television.ogg": "das Fernsehen", + "temple.ogg": "der Tempel", + "tennis.ogg": "das Tennis", + "tent.ogg": "das Zelt", + "text.ogg": "der Text", + "thick.ogg": "dick", + "thief.ogg": "der Dieb", + "thigh.ogg": "der Oberschenkel", + "think.ogg": "denken", + "thread.ogg": "die Spule", + "throat.ogg": "der Rachen", + "throw.ogg": "werfen", + "thumb.ogg": "der Daumen", + "ticket.ogg": "die Eintrittskarte", + "tiger.ogg": "der Tiger", + "time.ogg": "die Zeit", + "tin.ogg": "die Dose", + "tire.ogg": "der Reifen", + "tired.ogg": "müde", + "tissue.ogg": "das Papiertaschentuch", + "toad.ogg": "die Kröte", + "toaster.ogg": "der Toaster", + "toe.ogg": "der Zeh", + "toilet.ogg": "die Toilette", + "tomatoe.ogg": "die Tomate", + "tongs.ogg": "die Zange", + "tongue.ogg": "die Zunge", + "tool.ogg": "das Werkzeug", + "top.ogg": "darauf", + "torch.ogg": "die Fackel", + "touch.ogg": "berühren", + "towel.ogg": "das Handtuch", + "toy.ogg": "das Spielzeug", + "trail.ogg": "der Pfad", + "train.ogg": "der Zug", + "train_station.ogg": "der Bahnhof", + "trap.ogg": "die Falle", + "trash.ogg": "der Schmutz", + "tray.ogg": "das Tablett", + "treat.ogg": "die Süßigkeit", + "tree.ogg": "der Baum", + "triangle.ogg": "dreieckig", + "tribe.ogg": "der Stamm", + "trip.ogg": "die Reise", + "truck.ogg": "der Lastwagen", + "tube.ogg": "der Lippenstift", + "tulip.ogg": "die Tulpe", + "tune.ogg": "die Melodie", + "turkey.ogg": "der Truthahn", + "turnip.ogg": "die Rübe", + "turtle.ogg": "die Schildkröte", + "tusk.ogg": "der Stoßzahn", + "twelve.ogg": "zwölf", + "twin_boys.ogg": "der Zwillingsbruder", + "twin_girls.ogg": "die Zwillingsschwester", + "umbrella.ogg": "der Regenschirm", + "under.ogg": "darunter", + "uniform.ogg": "die Uniform", + "van.ogg": "der Kleinbus", + "vase.ogg": "die Vase", + "vegetable.ogg": "das Gemüse", + "vein.ogg": "die Ader", + "verdure.ogg": "das Grün", + "vest.ogg": "die Veste", + "vet.ogg": "der Tierarzt", + "viper.ogg": "die Viper", + "vowel.ogg": "der Vokal", + "vulture.ogg": "der Geier", + "wag.ogg": "schwänzeln", + "walk.ogg": "gehen", + "wall.ogg": "die Mauer", + "walnut.ogg": "die Walnuß", + "wart.ogg": "die Warze", + "wash.ogg": "baden", + "wasp.ogg": "die Wespe", + "watch.ogg": "die Armbanduhr", + "water.ogg": "das Wasser", + "wave.ogg": "die Welle", + "wedding.ogg": "die Hochzeit", + "wedge.ogg": "der Keil", + "weight.ogg": "das Gewicht", + "wet.ogg": "naß", + "whale.ogg": "der Wal", + "wheat.ogg": "der Weizen", + "wheel.ogg": "das Rad", + "whisk.ogg": "der Schneebesen", + "whisper.ogg": "flüstern", + "white.ogg": "weiß", + "wide.ogg": "breit", + "wife.ogg": "die Ehefrau", + "wig.ogg": "die Perücke", + "win.ogg": "gewinnen", + "wind.ogg": "der Wind", + "window.ogg": "das Fenster", + "window_glass.ogg": "die Fensterscheibe", + "wing.ogg": "der Flügel", + "winter.ogg": "der Winter", + "wolf.ogg": "der Wolf", + "woman.ogg": "die Frau", + "wood.ogg": "das Holz", + "word.ogg": "das Wort", + "worker.ogg": "der Arbeiter", + "world.ogg": "die Welt", + "wreath.ogg": "der Kranz", + "wrench.ogg": "der Schraubenschlüssel", + "wrist.ogg": "das Handgelenk", + "write.ogg": "schreiben", + "yellow.ogg": "gelb", + "yogurt.ogg": "der Joghurt", + "yum.ogg": "lecker", + "zebra.ogg": "das Zebra", + "zipper.ogg": "der Reißverschluß", + "zoo.ogg": "der Zoo", + "one.ogg": "eins", + "two.ogg": "zwei", + "three.ogg": "drei", + "four.ogg": "vier", + "five.ogg": "fünf", + "six.ogg": "sechs", + "seven.ogg": "sieben", + "eight.ogg": "acht", + "nine.ogg": "neun", + "ten.ogg": "zehn", + "U0030.ogg": "null", + "U0031.ogg": "eins", + "U0032.ogg": "zwei", + "U0033.ogg": "drei", + "U0034.ogg": "vier", + "U0035.ogg": "fünf", + "U0036.ogg": "sechs", + "U0037.ogg": "sieben", + "U0038.ogg": "acht", + "U0039.ogg": "neun" +} diff --git a/src/activities/lang/resource/content-en.json b/src/activities/lang/resource/content-en.json new file mode 100644 index 000000000..c0074c86c --- /dev/null +++ b/src/activities/lang/resource/content-en.json @@ -0,0 +1,582 @@ +{ + "ate.ogg": "ate", + "bake.ogg": "bake", + "bark.ogg": "bark", + "beg.ogg": "beg", + "bite.ogg": "bite", + "blink.ogg": "blink", + "boil.ogg": "boil", + "break.ogg": "break", + "call.ogg": "call", + "catch.ogg": "catch", + "centipede.ogg": "centipede", + "chat.ogg": "chat", + "chop.ogg": "chop", + "clap.ogg": "clap", + "clean.ogg": "clean", + "crawl.ogg": "crawl", + "croak.ogg": "croak", + "cry.ogg": "cry", + "cut.ogg": "cut", + "dig.ogg": "dig", + "drank.ogg": "drank", + "draw.ogg": "draw", + "dream.ogg": "dream", + "drive.ogg": "drive", + "drool.ogg": "drool", + "dry.ogg": "dry", + "eat.ogg": "eat", + "fell.ogg": "fell", + "fetch.ogg": "fetch", + "find.ogg": "find", + "float.ogg": "float", + "fly.ogg": "fly", + "freeze.ogg": "freeze", + "growl.ogg": "growl", + "hatch.ogg": "hatch", + "hear.ogg": "hear", + "howl.ogg": "howl", + "hug.ogg": "hug", + "jump.ogg": "jump", + "kneel.ogg": "kneel", + "knit.ogg": "knit", + "lick.ogg": "lick", + "look.ogg": "look", + "meet.ogg": "meet", + "nap.ogg": "nap", + "peck.ogg": "peck", + "play.ogg": "play", + "plow.ogg": "plow", + "pounce.ogg": "pounce", + "quarrel.ogg": "quarrel", + "read.ogg": "read", + "rip.ogg": "rip", + "run.ogg": "run", + "sat.ogg": "sat", + "scared.ogg": "scared", + "scratch.ogg": "scratch", + "scream.ogg": "scream", + "scribble.ogg": "scribble", + "see.ogg": "see", + "shake.ogg": "shake", + "sing.ogg": "sing", + "sip.ogg": "sip", + "sit.ogg": "sit", + "sleep.ogg": "sleep", + "smell.ogg": "smell", + "smooch.ogg": "smooch", + "sniff.ogg": "sniff", + "spill.ogg": "spill", + "splash.ogg": "splash", + "spray.ogg": "spray", + "spread.ogg": "spread", + "spring.ogg": "spring", + "squat.ogg": "squat", + "sting.ogg": "sting", + "stop.ogg": "stop", + "stretch.ogg": "stretch", + "study.ogg": "study", + "teach.ogg": "teach", + "tear.ogg": "tear", + "think.ogg": "think", + "touch.ogg": "touch", + "wag.ogg": "wag", + "walk.ogg": "walk", + "wash.ogg": "wash", + "whisper.ogg": "whisper", + "win.ogg": "win", + "back.ogg": "back", + "braid.ogg": "braid", + "brain.ogg": "brain", + "bump.ogg": "bump", + "chin.ogg": "chin", + "ear.ogg": "ear", + "face.ogg": "face", + "feet.ogg": "feet", + "fist.ogg": "fist", + "foot.ogg": "foot", + "grin.ogg": "grin", + "hair.ogg": "hair", + "hand.ogg": "hand", + "head.ogg": "head", + "hip.ogg": "hip", + "knee.ogg": "knee", + "lap.ogg": "lap", + "lip.ogg": "lip", + "mouth.ogg": "mouth", + "neck.ogg": "neck", + "nose.ogg": "nose", + "scar.ogg": "scar", + "skin.ogg": "skin", + "stare.ogg": "stare", + "sweat.ogg": "sweat", + "teeth.ogg": "teeth", + "thigh.ogg": "thigh", + "throat.ogg": "throat", + "wrist.ogg": "wrist", + "bib.ogg": "bib", + "cap.ogg": "cap", + "cape.ogg": "cape", + "coat.ogg": "coat", + "dress.ogg": "dress", + "glove.ogg": "glove", + "hat.ogg": "hat", + "patch.ogg": "patch", + "scarf.ogg": "scarf", + "shirt.ogg": "shirt", + "shoe.ogg": "shoe", + "short.ogg": "short", + "skirt.ogg": "skirt", + "sleeve.ogg": "sleeve", + "smock.ogg": "smock", + "sneaker.ogg": "sneaker", + "sock.ogg": "sock", + "suit.ogg": "suit", + "zoo.ogg": "zoo", + "danger.ogg": "danger", + "frown.ogg": "frown", + "fun.ogg": "fun", + "mad.ogg": "mad", + "rage.ogg": "rage", + "sad.ogg": "sad", + "smile.ogg": "smile", + "whisk.ogg": "whisk", + "chief.ogg": "chief", + "clown.ogg": "clown", + "coach.ogg": "coach", + "cowboy.ogg": "cowboy", + "hunter.ogg": "hunter", + "judge.ogg": "judge", + "knight.ogg": "knight", + "lad.ogg": "lad", + "pope.ogg": "pope", + "prince.ogg": "prince", + "princess.ogg": "princess", + "queen.ogg": "queen", + "teacher.ogg": "teacher", + "vet.ogg": "vet", + "boy.ogg": "boy", + "bride.ogg": "bride", + "brother.ogg": "brother", + "child.ogg": "child", + "dad.ogg": "dad", + "friend.ogg": "friend", + "girl.ogg": "girl", + "gnome.ogg": "gnome", + "mate.ogg": "mate", + "men.ogg": "men", + "pal.ogg": "pal", + "athlete.ogg": "athlete", + "ballet.ogg": "ballet", + "camp.ogg": "camp", + "cheer.ogg": "cheer", + "climb.ogg": "climb", + "dance.ogg": "dance", + "dive.ogg": "dive", + "explore.ogg": "explore", + "hike.ogg": "hike", + "hit.ogg": "hit", + "hop.ogg": "hop", + "jog.ogg": "jog", + "lift.ogg": "lift", + "ran.ogg": "ran", + "ride.ogg": "ride", + "skate.ogg": "skate", + "ski.ogg": "ski", + "sport.ogg": "sport", + "swim.ogg": "swim", + "write.ogg": "write", + "alligator.ogg": "alligator", + "animal.ogg": "animal", + "bait.ogg": "bait", + "bat.ogg": "bat", + "bee.ogg": "bee", + "beetle.ogg": "beetle", + "bird.ogg": "bird", + "bug.ogg": "bug", + "camel.ogg": "camel", + "cat.ogg": "cat", + "chick.ogg": "chick", + "chicken.ogg": "chicken", + "chimp.ogg": "chimp", + "clam.ogg": "clam", + "claw.ogg": "claw", + "cow.ogg": "cow", + "crab.ogg": "crab", + "crocodile.ogg": "crocodile", + "crow.ogg": "crow", + "den.ogg": "den", + "dog.ogg": "dog", + "dragon.ogg": "dragon", + "duck.ogg": "duck", + "fin.ogg": "fin", + "fish.ogg": "fish", + "flies.ogg": "flies", + "fox.ogg": "fox", + "frog.ogg": "frog", + "fur.ogg": "fur", + "giraffe.ogg": "giraffe", + "goat.ogg": "goat", + "hen.ogg": "hen", + "herd.ogg": "herd", + "hound.ogg": "hound", + "lamb.ogg": "lamb", + "mane.ogg": "mane", + "mice.ogg": "mice", + "mole.ogg": "mole", + "mosquito.ogg": "mosquito", + "mule.ogg": "mule", + "owl.ogg": "owl", + "ox.ogg": "ox", + "paw.ogg": "paw", + "pet.ogg": "pet", + "pig.ogg": "pig", + "pug.ogg": "pug", + "puppy.ogg": "puppy", + "rat.ogg": "rat", + "shark.ogg": "shark", + "shell.ogg": "shell", + "shrimp.ogg": "shrimp", + "skunk.ogg": "skunk", + "slime.ogg": "slime", + "snail.ogg": "snail", + "snake.ogg": "snake", + "spider.ogg": "spider", + "spike.ogg": "spike", + "squid.ogg": "squid", + "squirrel.ogg": "squirrel", + "starfish.ogg": "starfish", + "swan.ogg": "swan", + "tick.ogg": "tick", + "wing.ogg": "wing", + "yum.ogg": "yum", + "bone.ogg": "bone", + "bread.ogg": "bread", + "bun.ogg": "bun", + "cake.ogg": "cake", + "candy.ogg": "candy", + "cheese.ogg": "cheese", + "chocolate.ogg": "chocolate", + "cookie.ogg": "cookie", + "crumb.ogg": "crumb", + "crust.ogg": "crust", + "drink.ogg": "drink", + "feast.ogg": "feast", + "flour.ogg": "flour", + "food.ogg": "food", + "fudge.ogg": "fudge", + "gum.ogg": "gum", + "ice.ogg": "ice", + "juice.ogg": "juice", + "lunch.ogg": "lunch", + "pop.ogg": "pop", + "rice.ogg": "rice", + "sandwich.ogg": "sandwich", + "sauce.ogg": "sauce", + "snack.ogg": "snack", + "spaghetti.ogg": "spaghetti", + "sprinkle.ogg": "sprinkle", + "stew.ogg": "stew", + "treat.ogg": "treat", + "cherry.ogg": "cherry", + "fruit.ogg": "fruit", + "lime.ogg": "lime", + "orange.ogg": "orange", + "peach.ogg": "peach", + "plum.ogg": "plum", + "bay.ogg": "bay", + "beach.ogg": "beach", + "cave.ogg": "cave", + "cliff.ogg": "cliff", + "cloud.ogg": "cloud", + "cold.ogg": "cold", + "dirt.ogg": "dirt", + "dune.ogg": "dune", + "earth.ogg": "earth", + "fire.ogg": "fire", + "flame.ogg": "flame", + "garden.ogg": "garden", + "gem.ogg": "gem", + "ground.ogg": "ground", + "heat.ogg": "heat", + "hole.ogg": "hole", + "lake.ogg": "lake", + "land.ogg": "land", + "ledge.ogg": "ledge", + "mud.ogg": "mud", + "night.ogg": "night", + "ocean.ogg": "ocean", + "path.ogg": "path", + "rock.ogg": "rock", + "sand.ogg": "sand", + "shore.ogg": "shore", + "sky.ogg": "sky", + "slope.ogg": "slope", + "smoke.ogg": "smoke", + "snow.ogg": "snow", + "star.ogg": "star", + "stone.ogg": "stone", + "stream.ogg": "stream", + "summer.ogg": "summer", + "sun.ogg": "sun", + "time.ogg": "time", + "top.ogg": "top", + "trail.ogg": "trail", + "water.ogg": "water", + "wind.ogg": "wind", + "yarn.ogg": "yarn", + "angel.ogg": "angel", + "bit.ogg": "bit", + "class.ogg": "class", + "price.ogg": "price", + "question.ogg": "question", + "quiz.ogg": "quiz", + "science.ogg": "science", + "splatter.ogg": "splatter", + "tune.ogg": "tune", + "branch.ogg": "branch", + "bud.ogg": "bud", + "bush.ogg": "bush", + "flower.ogg": "flower", + "grass.ogg": "grass", + "hay.ogg": "hay", + "hedge.ogg": "hedge", + "lawn.ogg": "lawn", + "pine.ogg": "pine", + "plant.ogg": "plant", + "rose.ogg": "rose", + "seed.ogg": "seed", + "shrub.ogg": "shrub", + "stem.ogg": "stem", + "stick.ogg": "stick", + "stump.ogg": "stump", + "tree.ogg": "tree", + "carrot.ogg": "carrot", + "corn.ogg": "corn", + "cucumber.ogg": "cucumber", + "mushroom.ogg": "mushroom", + "nut.ogg": "nut", + "squash.ogg": "squash", + "bank.ogg": "bank", + "barn.ogg": "barn", + "bridge.ogg": "bridge", + "cabin.ogg": "cabin", + "cage.ogg": "cage", + "castle.ogg": "castle", + "door.ogg": "door", + "fair.ogg": "fair", + "fountain.ogg": "fountain", + "grave.ogg": "grave", + "home.ogg": "home", + "hut.ogg": "hut", + "lane.ogg": "lane", + "pool.ogg": "pool", + "ramp.ogg": "ramp", + "roof.ogg": "roof", + "school.ogg": "school", + "shed.ogg": "shed", + "shop.ogg": "shop", + "stage.ogg": "stage", + "store.ogg": "store", + "street.ogg": "street", + "strawberry.ogg": "strawberry", + "bath.ogg": "bath", + "bed.ogg": "bed", + "bench.ogg": "bench", + "chair.ogg": "chair", + "chest.ogg": "chest", + "couch.ogg": "couch", + "crib.ogg": "crib", + "desk.ogg": "desk", + "fan.ogg": "fan", + "lamp.ogg": "lamp", + "light.ogg": "light", + "mat.ogg": "mat", + "quilt.ogg": "quilt", + "rug.ogg": "rug", + "seat.ogg": "seat", + "shelf.ogg": "shelf", + "shower.ogg": "shower", + "sink.ogg": "sink", + "stove.ogg": "stove", + "toilet.ogg": "toilet", + "balance.ogg": "balance", + "can.ogg": "can", + "clock.ogg": "clock", + "dish.ogg": "dish", + "fork.ogg": "fork", + "glass.ogg": "glass", + "knife.ogg": "knife", + "lid.ogg": "lid", + "mop.ogg": "mop", + "mug.ogg": "mug", + "pan.ogg": "pan", + "plate.ogg": "plate", + "pot.ogg": "pot", + "scale.ogg": "scale", + "sponge.ogg": "sponge", + "spoon.ogg": "spoon", + "trash.ogg": "trash", + "tray.ogg": "tray", + "farm.ogg": "farm", + "anchor.ogg": "anchor", + "badge.ogg": "badge", + "bag.ogg": "bag", + "ball.ogg": "ball", + "bead.ogg": "bead", + "block.ogg": "block", + "board.ogg": "board", + "bomb.ogg": "bomb", + "book.ogg": "book", + "box.ogg": "box", + "candle.ogg": "candle", + "cane.ogg": "cane", + "card.ogg": "card", + "cart.ogg": "cart", + "cash.ogg": "cash", + "chalk.ogg": "chalk", + "clay.ogg": "clay", + "cloth.ogg": "cloth", + "coin.ogg": "coin", + "comb.ogg": "comb", + "cone.ogg": "cone", + "crown.ogg": "crown", + "cube.ogg": "cube", + "drum.ogg": "drum", + "flag.ogg": "flag", + "flute.ogg": "flute", + "game.ogg": "game", + "gift.ogg": "gift", + "glue.ogg": "glue", + "hook.ogg": "hook", + "hose.ogg": "hose", + "ink.ogg": "ink", + "jewel.ogg": "jewel", + "kite.ogg": "kite", + "knot.ogg": "knot", + "log.ogg": "log", + "map.ogg": "map", + "mask.ogg": "mask", + "match.ogg": "match", + "nest.ogg": "nest", + "net.ogg": "net", + "oar.ogg": "oar", + "page.ogg": "page", + "pair.ogg": "pair", + "pen.ogg": "pen", + "pencil.ogg": "pencil", + "picture.ogg": "picture", + "pole.ogg": "pole", + "prize.ogg": "prize", + "rag.ogg": "rag", + "rope.ogg": "rope", + "sign.ogg": "sign", + "sleigh.ogg": "sleigh", + "slide.ogg": "slide", + "squirt.ogg": "squirt", + "stack.ogg": "stack", + "stamp.ogg": "stamp", + "straw.ogg": "straw", + "string.ogg": "string", + "tag.ogg": "tag", + "thread.ogg": "thread", + "torch.ogg": "torch", + "towel.ogg": "towel", + "toy.ogg": "toy", + "trap.ogg": "trap", + "tube.ogg": "tube", + "watch.ogg": "watch", + "wheel.ogg": "wheel", + "wig.ogg": "wig", + "wood.ogg": "wood", + "link.ogg": "link", + "dirty.ogg": "dirty", + "throw.ogg": "throw", + "brick.ogg": "brick", + "brush.ogg": "brush", + "flash.ogg": "flash", + "rake.ogg": "rake", + "screw.ogg": "screw", + "spear.ogg": "spear", + "tool.ogg": "tool", + "wedge.ogg": "wedge", + "wrench.ogg": "wrench", + "bike.ogg": "bike", + "boat.ogg": "boat", + "canoe.ogg": "canoe", + "car.ogg": "car", + "plane.ogg": "plane", + "sail.ogg": "sail", + "ship.ogg": "ship", + "sled.ogg": "sled", + "train.ogg": "train", + "truck.ogg": "truck", + "black.ogg": "black", + "blue.ogg": "blue", + "brown.ogg": "brown", + "color.ogg": "color", + "gray.ogg": "gray", + "green.ogg": "green", + "orange-color.ogg": "orange", + "pink.ogg": "pink", + "red.ogg": "red", + "white.ogg": "white", + "five.ogg": "five", + "one.ogg": "one", + "ten.ogg": "ten", + "three.ogg": "three", + "two.ogg": "two", + "van.ogg": "van", + "big.ogg": "big", + "blind.ogg": "blind", + "blond.ogg": "blond", + "bright.ogg": "bright", + "crazy.ogg": "crazy", + "cute.ogg": "cute", + "dot.ogg": "dot", + "empty.ogg": "empty", + "fat.ogg": "fat", + "flat.ogg": "flat", + "front.ogg": "front", + "full.ogg": "full", + "giant.ogg": "giant", + "happy.ogg": "happy", + "high.ogg": "high", + "hot.ogg": "hot", + "huge.ogg": "huge", + "left.ogg": "left", + "line.ogg": "line", + "liquid.ogg": "liquid", + "magic.ogg": "magic", + "on.ogg": "on", + "pretty.ogg": "pretty", + "right.ogg": "right", + "round.ogg": "round", + "royal.ogg": "royal", + "shut.ogg": "shut", + "sick.ogg": "sick", + "small.ogg": "small", + "spot.ogg": "spot", + "square.ogg": "square", + "stand.ogg": "stand", + "straight.ogg": "straight", + "stripe.ogg": "stripe", + "strong.ogg": "strong", + "tall.ogg": "tall", + "thick.ogg": "thick", + "tired.ogg": "tired", + "under.ogg": "under", + "wet.ogg": "wet", + "wheat.ogg": "wheat", + "U0030.ogg": "zero", + "U0031.ogg": "one", + "U0032.ogg": "two", + "U0033.ogg": "three", + "U0034.ogg": "four", + "U0035.ogg": "five", + "U0036.ogg": "six", + "U0037.ogg": "seven", + "U0038.ogg": "eight", + "U0039.ogg": "nine", + "10.ogg": "ten" +} diff --git a/src/activities/lang/resource/content-es.json b/src/activities/lang/resource/content-es.json new file mode 100644 index 000000000..2f353ad42 --- /dev/null +++ b/src/activities/lang/resource/content-es.json @@ -0,0 +1,724 @@ +{ + "acorn.ogg": "bellota", + "actor.ogg": "actor", + "add.ogg": "anadir", + "admire.ogg": "admirar", + "age.ogg": "edad", + "air.ogg": "aire", + "alligator.ogg": "caimán", + "alone.ogg": "solo", + "alphabet.ogg": "alfabeto", + "always.ogg": "siempre", + "anchor.ogg": "ancla", + "angel.ogg": "angel", + "animal.ogg": "animal", + "ankle.ogg": "tobillo", + "answer.ogg": "responder", + "ant.ogg": "hormiga", + "antelope.ogg": "antilope", + "apple.ogg": "manzana", + "apricot.ogg": "albaricoque", + "april.ogg": "abril", + "arm.ogg": "brazo", + "armchair.ogg": "sillón", + "artichoke.ogg": "alcachofa", + "artist.ogg": "artista", + "ask.ogg": "pedir", + "asparagus.ogg": "espárragos", + "astronaut.ogg": "astronauta", + "athlete.ogg": "atleta", + "august.ogg": "agosto", + "avocado.ogg": "aguacate", + "baby.ogg": "bebe", + "back.ogg": "espalda", + "bad.ogg": "malo", + "bag.ogg": "bolsa", + "bald.ogg": "calvo", + "ballet.ogg": "ballet", + "bank.ogg": "banco", + "bark.ogg": "ladrido", + "barn.ogg": "granero", + "basket.ogg": "canasta", + "bath.ogg": "baño", + "be.ogg": "ser", + "beach.ogg": "playa", + "bean.ogg": "frejol", + "beard.ogg": "barba", + "beat.ogg": "batir", + "bed.ogg": "cama", + "bedroom.ogg": "dormitorio", + "bee.ogg": "abeja", + "beef.ogg": "carne de res", + "bell.ogg": "campana", + "belly.ogg": "vientre", + "bet.ogg": "apostar", + "bib.ogg": "babero", + "big.ogg": "grande", + "bike.ogg": "bicicleta", + "bird.ogg": "pájaro", + "birth.ogg": "nacimiento", + "black.ogg": "negro", + "blind.ogg": "ciego", + "blond.ogg": "rubio", + "blue.ogg": "azul", + "boat.ogg": "barco", + "boil.ogg": "hervir", + "bomb.ogg": "bomba", + "bone.ogg": "hueso", + "book.ogg": "libro", + "bowl.ogg": "cuenco", + "box.ogg": "caja", + "boy.ogg": "niño", + "brain.ogg": "cerebro", + "branch.ogg": "rama", + "bread.ogg": "pan", + "break.ogg": "romper", + "bridge.ogg": "puente", + "bright.ogg": "brillante", + "bring.ogg": "llevar", + "broccoli.ogg": "brócoli", + "brown.ogg": "marrón", + "bubble.ogg": "burbuja", + "bucket.ogg": "cubo", + "bug.ogg": "escarabajo", + "build.ogg": "construir", + "bus.ogg": "autobús", + "butcher.ogg": "carnicero", + "butter.ogg": "mantequilla", + "butterfly.ogg": "mariposa", + "button.ogg": "botón", + "buy.ogg": "comprar", + "cab.ogg": "cabina", + "cabbage.ogg": "repollo", + "cactus.ogg": "cactus", + "cage.ogg": "jaula", + "cake.ogg": "pastel", + "call.ogg": "llamar", + "camel.ogg": "camello", + "camera.ogg": "cámara", + "camp.ogg": "campamento", + "candle.ogg": "vela", + "candy.ogg": "caramelo", + "cane.ogg": "caña", + "canoe.ogg": "canoa", + "cape.ogg": "capa", + "car.ogg": "coche", + "carpet.ogg": "alfombra", + "carrot.ogg": "zanahoria", + "castle.ogg": "castillo", + "cat.ogg": "gato", + "caterpillar.ogg": "oruga", + "cauliflower.ogg": "coliflor", + "cave.ogg": "cueva", + "cereal.ogg": "cereal", + "chain.ogg": "cadena", + "chair.ogg": "silla", + "chalk.ogg": "tiza", + "chat.ogg": "charlar", + "cheese.ogg": "queso", + "cherry.ogg": "cereza", + "chick.ogg": "pollito", + "chicken.ogg": "pollo", + "chimney.ogg": "chimenea", + "chin.ogg": "mentón", + "chocolate.ogg": "chocolate", + "christmas.ogg": "Navidad", + "church.ogg": "iglesia", + "cigar.ogg": "cigarro", + "circle.ogg": "círculo", + "circus.ogg": "circo", + "city.ogg": "ciudad", + "class.ogg": "clase", + "claw.ogg": "garra", + "clean.ogg": "limpiar", + "clock.ogg": "reloj", + "close.ogg": "cerrar", + "cloth.ogg": "ropa", + "cloud.ogg": "nube", + "clown.ogg": "payaso", + "coast.ogg": "costa", + "coat.ogg": "abrigo", + "cobra.ogg": "cobra", + "coffee.ogg": "cafe", + "coin.ogg": "moneda", + "cold.ogg": "frio", + "color.ogg": "color", + "comb.ogg": "peine", + "cone.ogg": "cono", + "cookie.ogg": "galleta", + "corn.ogg": "maíz", + "couple.ogg": "pareja", + "cow.ogg": "vaca", + "crab.ogg": "cangrejo", + "crazy.ogg": "loco", + "cream.ogg": "crema", + "crocodile.ogg": "cocodrilo", + "cry.ogg": "llorar", + "cucumber.ogg": "pepino", + "curtain.ogg": "cortina", + "cut.ogg": "cortar", + "dad.ogg": "papá", + "daisy.ogg": "margarita", + "dance.ogg": "bailar", + "danger.ogg": "peligro", + "day.ogg": "dia", + "dead.ogg": "muerto", + "december.ogg": "Diciembre", + "deer.ogg": "ciervo", + "desert.ogg": "desierto", + "desk.ogg": "escritorio", + "dessert.ogg": "postre", + "diamond.ogg": "diamante", + "die.ogg": "morir", + "dig.ogg": "cavar", + "dirty.ogg": "sucio", + "dive.ogg": "inmersión", + "do.ogg": "hacer", + "doctor.ogg": "médico", + "dog.ogg": "perro", + "doll.ogg": "muñeca", + "donkey.ogg": "burro", + "door.ogg": "puerta", + "dot.ogg": "punto", + "dragon.ogg": "dragón", + "draw.ogg": "dibujar", + "dream.ogg": "sueño", + "dress.ogg": "vestir", + "drink.ogg": "beber", + "drive.ogg": "conducir", + "drum.ogg": "tambor", + "dry.ogg": "secar", + "duck.ogg": "pato", + "dune.ogg": "duna", + "dwarf.ogg": "enano", + "eagle.ogg": "águila", + "earth.ogg": "tierra", + "eat.ogg": "comer", + "egg.ogg": "huevo", + "eight.ogg": "ocho", + "elbow.ogg": "codo", + "electrician.ogg": "electricista", + "elephant.ogg": "elefante", + "eleven.ogg": "once", + "empty.ogg": "vacío", + "engine.ogg": "motor", + "engineer.ogg": "ingeniero", + "english.ogg": "Ingles", + "eraser.ogg": "borrador", + "eyebrow.ogg": "ceja", + "eyelash.ogg": "de pestañas", + "eyes.ogg": "ojos", + "face.ogg": "cara", + "fairy.ogg": "hada", + "fall.ogg": "caer", + "family.ogg": "familia", + "fan.ogg": "ventilador", + "far.ogg": "lejos", + "farm.ogg": "granja", + "farmer.ogg": "agricultor", + "fat.ogg": "grasa", + "feather.ogg": "pluma", + "february.ogg": "Febrero", + "feet.ogg": "pies", + "female.ogg": "femenino", + "fill.ogg": "llenar", + "fin.ogg": "aleta", + "find.ogg": "encontrar", + "finger.ogg": "dedo", + "fire.ogg": "fuego", + "fireman.ogg": "bombero", + "first.ogg": "primero", + "fisherman.ogg": "pescador", + "fist.ogg": "puño", + "five.ogg": "cinco", + "flag.ogg": "bandera", + "flame.ogg": "llama", + "flour.ogg": "harina", + "flower.ogg": "flor", + "flute.ogg": "flauta", + "fly.ogg": "volar", + "food.ogg": "alimento", + "foot.ogg": "pie", + "forest.ogg": "bosque", + "fork.ogg": "tenedor", + "four.ogg": "cuatro", + "fox.ogg": "zorro", + "frame.ogg": "marco", + "france.ogg": "Francia", + "friday.ogg": "Viernes", + "friend.ogg": "amigo", + "frog.ogg": "rana", + "front.ogg": "enfrente", + "front.ogg": "frente", + "fruit.ogg": "fruta", + "fun.ogg": "diversión", + "fur.ogg": "piel", + "game.ogg": "juego", + "gap.ogg": "brecha", + "garage.ogg": "garaje", + "garden.ogg": "jardín", + "garlic.ogg": "ajo", + "germany.ogg": "Alemania", + "get.ogg": "obtener", + "giant.ogg": "gigante", + "gift.ogg": "regalo", + "giraffe.ogg": "jirafa", + "girl.ogg": "chica", + "glasses.ogg": "gafas", + "glove.ogg": "guante", + "glue.ogg": "pegamento", + "goat.ogg": "cabra", + "gold.ogg": "oro", + "good.ogg": "bueno", + "grain.ogg": "grano", + "grandfather.ogg": "abuelo", + "grandmother.ogg": "abuela", + "grape.ogg": "uva", + "grapefruit.ogg": "pomelo", + "grass.ogg": "hierba", + "gray.ogg": "gris", + "great_britain.ogg": "Gran bretaña", + "green.ogg": "verde", + "grill.ogg": "grilla", + "grow.ogg": "crecer", + "hair.ogg": "cabello", + "hairdresser.ogg": "peluquero", + "half.ogg": "mitad", + "ham.ogg": "jamón", + "hamburger.ogg": "hamburguesa", + "hammer.ogg": "martillo", + "hamster.ogg": "hámster", + "hand.ogg": "mano", + "happy.ogg": "feliz", + "hard.ogg": "duro", + "hat.ogg": "sombrero", + "hatch.ogg": "escotilla", + "hay.ogg": "heno", + "head.ogg": "cabeza", + "hear.ogg": "escuchar", + "heart.ogg": "corazón", + "heat.ogg": "calor", + "helmet.ogg": "casco", + "help.ogg": "ayudar", + "hen.ogg": "gallina", + "high.ogg": "alto", + "hike.ogg": "caminata", + "hill.ogg": "colina", + "hippopotamus.ogg": "hipopótamo", + "hit.ogg": "golpear", + "hive.ogg": "colmena", + "hole.ogg": "agujero", + "home.ogg": "hogar", + "hop.ogg": "salto", + "horse.ogg": "caballo", + "hospital.ogg": "hospital", + "hot.ogg": "caliente", + "house.ogg": "casa", + "huge.ogg": "enorme", + "hunter.ogg": "cazador", + "hurt.ogg": "daño", + "husband.ogg": "marido", + "ice.ogg": "hielo", + "ill.ogg": "enfermo", + "ink.ogg": "tinta", + "island.ogg": "isla", + "italy.ogg": "Italia", + "jacket.ogg": "chaqueta", + "jam.ogg": "mermelada", + "january.ogg": "Enero", + "jelly.ogg": "jalea", + "jewel.ogg": "joya", + "judge.ogg": "juez", + "july.ogg": "Julio", + "jump.ogg": "saltar", + "june.ogg": "Junio", + "kangaroo.ogg": "canguro", + "king.ogg": "rey", + "kiss.ogg": "beso", + "kitchen.ogg": "cocina", + "kite.ogg": "cometa", + "kiwi.ogg": "kiwi", + "knee.ogg": "rodilla", + "knife.ogg": "cuchillo", + "knot.ogg": "nudo", + "know.ogg": "saber", + "koala.ogg": "coala", + "ladder.ogg": "escalera", + "ladybug.ogg": "mariquita", + "lake.ogg": "lago", + "lamb.ogg": "cordero", + "lamp.ogg": "lámpara", + "lane.ogg": "carril", + "laugh.ogg": "reír", + "lava.ogg": "lava", + "lawn.ogg": "cesped", + "lazy.ogg": "perezoso", + "leaf.ogg": "hoja", + "leek.ogg": "puerro", + "left.ogg": "izquierda", + "leg.ogg": "pierna", + "lemon.ogg": "limón", + "leopard.ogg": "leopardo", + "lettuce.ogg": "lechuga", + "librarian.ogg": "librera", + "librarian.ogg": "librero", + "lick.ogg": "lamer", + "lid.ogg": "tapa", + "life.ogg": "vida", + "light.ogg": "luz", + "lighthouse.ogg": "faro", + "line.ogg": "linea", + "link.ogg": "enlace", + "lion.ogg": "león", + "lip.ogg": "labio", + "liquid.ogg": "líquido", + "lizard.ogg": "lagartija", + "lobster.ogg": "langosta", + "love.ogg": "amor", + "luck.ogg": "suerte", + "lunch.ogg": "almuerzo", + "mail.ogg": "correo", + "male.ogg": "masculino", + "man.ogg": "hombre", + "map.ogg": "mapa", + "mask.ogg": "máscara", + "may.ogg": "Mayo", + "meal.ogg": "comida", + "meat.ogg": "carne", + "melon.ogg": "melón", + "milk.ogg": "leche", + "mill.ogg": "molino", + "mirror.ogg": "espejo", + "mole.ogg": "topo", + "monday.ogg": "Lunes", + "monkey.ogg": "mono", + "moon.ogg": "luna", + "mosquito.ogg": "mosquito", + "mother.ogg": "madre", + "motorcycle.ogg": "motocicleta", + "mountain.ogg": "montaña", + "mouse.ogg": "ratón", + "mouth.ogg": "boca", + "movie.ogg": "película", + "mud.ogg": "barro", + "mug.ogg": "jarra", + "muscle.ogg": "músculo", + "mushroom.ogg": "hongo", + "music.ogg": "música", + "musician.ogg": "músico", + "nail.ogg": "clavo", + "neck.ogg": "cuello", + "necklace.ogg": "collar", + "needle.ogg": "aguja", + "nest.ogg": "nido", + "newspaper.ogg": "periódico", + "night.ogg": "noche", + "nine.ogg": "nueve", + "noise.ogg": "ruido", + "north.ogg": "norte", + "nose.ogg": "nariz", + "nostril.ogg": "ventana de la nariz", + "note.ogg": "nota", + "notebook.ogg": "cuaderno", + "november.ogg": "Noviembre", + "now.ogg": "ahora", + "number.ogg": "número", + "nurse.ogg": "enfermera", + "nut.ogg": "nuez", + "oar.ogg": "remo", + "ocean.ogg": "océano", + "october.ogg": "Octubre", + "oil.ogg": "aceite", + "olive.ogg": "oliva", + "one.ogg": "uno", + "onion.ogg": "cebolla", + "open.ogg": "abrir", + "orange.ogg": "naranja", + "owl.ogg": "búho", + "page.ogg": "página", + "paint.ogg": "pintar", + "pair.ogg": "par", + "panda.ogg": "panda", + "panther.ogg": "pantera", + "pants.ogg": "pantalones", + "paper.ogg": "papel", + "park.ogg": "parque", + "parrot.ogg": "loro", + "patch.ogg": "parche", + "path.ogg": "camino", + "pay.ogg": "pagar", + "pea.ogg": "guisante", + "peach.ogg": "melocotón", + "pear.ogg": "pera", + "pearl.ogg": "perla", + "pen.ogg": "pluma", + "pencil.ogg": "lápiz", + "pepper.ogg": "pimienta", + "petal.ogg": "pétalo", + "phone.ogg": "teléfono", + "piano.ogg": "piano", + "picture.ogg": "imagen", + "pig.ogg": "cerdo", + "pigeon.ogg": "paloma", + "pill.ogg": "píldora", + "pillow.ogg": "almohada", + "pilot.ogg": "piloto", + "pine_tree.ogg": "árbol de pino", + "pineapple.ogg": "piña", + "pink.ogg": "rosa", + "pirate.ogg": "pirata", + "pizza.ogg": "pizza", + "planet.ogg": "planeta", + "play.ogg": "jugar", + "please.ogg": "complacer", + "plum.ogg": "ciruela", + "plumber.ogg": "fontanero", + "pocket.ogg": "bolsillo", + "police.ogg": "policía", + "pond.ogg": "estanque", + "pool.ogg": "piscina", + "pot.ogg": "olla", + "potato.ogg": "patata", + "pray.ogg": "orar", + "present.ogg": "presentar", + "pretty.ogg": "bonita", + "price.ogg": "precio", + "priest.ogg": "sacerdote", + "prince.ogg": "príncipe", + "princess.ogg": "princesa", + "print.ogg": "imprimir", + "prison.ogg": "prisión", + "pullover.ogg": "jersey", + "pumpkin.ogg": "calabaza", + "purple.ogg": "púrpura", + "pyramid.ogg": "pirámide", + "queen.ogg": "reina", + "question.ogg": "cuestión", + "quick.ogg": "rápido", + "quiet.ogg": "tranquilo", + "rabbit.ogg": "conejo", + "radio.ogg": "radio", + "rain.ogg": "lluvia", + "rake.ogg": "rastrillo", + "raspberry.ogg": "frambuesa", + "rat.ogg": "rata", + "read.ogg": "leer", + "red.ogg": "rojo", + "reptile.ogg": "reptil", + "rhinoceros.ogg": "rinoceronte", + "rice.ogg": "arroz", + "ring.ogg": "anillo", + "risk.ogg": "riesgo", + "river.ogg": "río", + "road.ogg": "carretera", + "robot.ogg": "robot", + "rocket.ogg": "cohete", + "roof.ogg": "techo", + "rooster.ogg": "gallo", + "root.ogg": "raíz", + "rope.ogg": "cuerda", + "sad.ogg": "triste", + "sail.ogg": "navegar", + "sailor.ogg": "marinero", + "salmon.ogg": "salmón", + "sand.ogg": "arena", + "sandals.ogg": "sandalias", + "saturday.ogg": "sábado", + "sauce.ogg": "salsa", + "sausage.ogg": "salchicha", + "scar.ogg": "cicatriz", + "school.ogg": "escuela", + "scissors.ogg": "tijeras", + "scorpion.ogg": "escorpión", + "scream.ogg": "gritar", + "screen.ogg": "pantalla", + "sea.ogg": "mar", + "see.ogg": "ver", + "seed.ogg": "semilla", + "sell.ogg": "vender", + "september.ogg": "Septiembre", + "seven.ogg": "siete", + "shadow.ogg": "sombra", + "shake.ogg": "sacudir", + "shark.ogg": "tiburón", + "sheep.ogg": "oveja", + "shell.ogg": "concha", + "shirt.ogg": "camisa", + "shoe.ogg": "zapato", + "short.ogg": "corto", + "shovel.ogg": "pala", + "shower.ogg": "ducha", + "shrimp.ogg": "camarón", + "silence.ogg": "silencio", + "silver.ogg": "plata", + "sing.ogg": "cantar", + "singer.ogg": "cantante", + "sister.ogg": "hermana", + "sit.ogg": "sentarse", + "six.ogg": "seis", + "sixteen.ogg": "dieciséis", + "ski.ogg": "esquiar", + "skirt.ogg": "falda", + "sky.ogg": "cielo", + "sleep.ogg": "dormir", + "sleeve.ogg": "manga", + "slow.ogg": "lento", + "small.ogg": "pequeño", + "smart.ogg": "inteligente", + "smell.ogg": "olor", + "smile.ogg": "sonreír", + "snack.ogg": "bocadillo", + "snail.ogg": "caracol", + "snake.ogg": "serpiente", + "snow.ogg": "nieve", + "soap.ogg": "jabón", + "sock.ogg": "calcetín", + "soft.ogg": "suave", + "soldier.ogg": "soldado", + "son.ogg": "hijo", + "sorry.ogg": "arrepentido", + "soup.ogg": "sopa", + "space.ogg": "espacio", + "speak.ogg": "hablar", + "spice.ogg": "especia", + "spider.ogg": "araña", + "spill.ogg": "derramar", + "spinach.ogg": "espinacas", + "split.ogg": "dividido", + "sponge.ogg": "esponja", + "spoon.ogg": "cuchara", + "sport.ogg": "deporte", + "spouse.ogg": "cónyuge", + "squirrel.ogg": "ardilla", + "stain.ogg": "mancha", + "stamp.ogg": "sello", + "star.ogg": "estrella", + "start.ogg": "iniciar", + "steak.ogg": "filete", + "stem.ogg": "vástago", + "stick.ogg": "palo", + "stone.ogg": "piedra", + "stop.ogg": "parar", + "store.ogg": "almacenar", + "straight.ogg": "recto", + "straw.ogg": "paja", + "strawberry.ogg": "fresa", + "street.ogg": "calle", + "strong.ogg": "fuerte", + "student.ogg": "estudiante", + "study.ogg": "estudiar", + "sugar.ogg": "azúcar", + "suitcase.ogg": "maleta", + "summer.ogg": "verano", + "summit.ogg": "cumbre", + "sun.ogg": "sol", + "sunday.ogg": "Domingo", + "super.ogg": "súper", + "sweat.ogg": "sudar", + "sweatshirt.ogg": "Sudadera", + "sweet.ogg": "dulce", + "swim.ogg": "nadar", + "swiss.ogg": "suizo", + "table.ogg": "mesa", + "tag.ogg": "etiqueta", + "tail.ogg": "cola", + "take.ogg": "tomar", + "task.ogg": "tarea", + "teach.ogg": "enseñar", + "teacher.ogg": "maestro", + "team.ogg": "equipo", + "television.ogg": "televisión", + "tell.ogg": "contar", + "temple.ogg": "templo", + "ten.ogg": "diez", + "tennis.ogg": "tenis", + "text.ogg": "texto", + "thank.ogg": "agradecer", + "thief.ogg": "ladrón", + "think.ogg": "pensar", + "three.ogg": "tres", + "thumb.ogg": "pulgar", + "thursday.ogg": "Jueves", + "ticket.ogg": "billete", + "tiger.ogg": "tigre", + "time.ogg": "tiempo", + "tired.ogg": "cansado", + "tissue.ogg": "tejido", + "today.ogg": "hoy", + "tomato.ogg": "tomate", + "tomorrow.ogg": "mañana", + "tongue.ogg": "lengua", + "tool.ogg": "herramienta", + "towel.ogg": "toalla", + "tower.ogg": "torre", + "toy.ogg": "juguete", + "train.ogg": "tren", + "train_station.ogg": "estación de tren", + "tree.ogg": "árbol", + "triangle.ogg": "triángulo", + "trip.ogg": "viaje", + "truck.ogg": "camión", + "tube.ogg": "tubo", + "tuesday.ogg": "Martes", + "tulip.ogg": "tulipán", + "tunnel.ogg": "túnel", + "turkey.ogg": "pavo", + "turtle.ogg": "tortuga marina", + "twelve.ogg": "doce", + "two.ogg": "dos", + "umbrella.ogg": "paraguas", + "uniform.ogg": "uniforme", + "valley.ogg": "valle", + "vase.ogg": "florero", + "vet.ogg": "veterinario", + "viper.ogg": "víbora", + "voice.ogg": "voz", + "vowel.ogg": "vocal", + "wait.ogg": "esperar", + "walk.ogg": "caminar", + "wall.ogg": "pared", + "want.ogg": "querer", + "wash.ogg": "lavar", + "wasp.ogg": "avispa", + "water.ogg": "agua", + "wave.ogg": "ola", + "wedding.ogg": "boda", + "wednesday.ogg": "miércoles", + "weight.ogg": "peso", + "well.ogg": "bien", + "wet.ogg": "humedo", + "wheat.ogg": "trigo", + "wheel.ogg": "rueda", + "white.ogg": "blanco", + "wide.ogg": "ancho", + "wife.ogg": "esposa", + "wig.ogg": "peluca", + "win.ogg": "ganar", + "wind.ogg": "viento", + "window.ogg": "ventana", + "winter.ogg": "invierno", + "wolf.ogg": "lobo", + "woman.ogg": "mujer", + "wood.ogg": "madera", + "word.ogg": "palabra", + "worker.ogg": "obrero", + "world.ogg": "mundo", + "write.ogg": "escribir", + "wrong.ogg": "erroneo", + "yard.ogg": "patio", + "yellow.ogg": "amarillo", + "yesterday.ogg": "ayer", + "yogurt.ogg": "yogur", + "zebra.ogg": "cebra", + "U0030.ogg": "cero", + "U0031.ogg": "uno", + "U0032.ogg": "dos", + "U0033.ogg": "tres", + "U0034.ogg": "cuatro", + "U0035.ogg": "cinco", + "U0036.ogg": "seis", + "U0037.ogg": "siete", + "U0038.ogg": "ocho", + "U0039.ogg": "nueve", + "10.ogg": "diez" +} diff --git a/src/activities/lang/resource/content-fr.json b/src/activities/lang/resource/content-fr.json new file mode 100644 index 000000000..e90cfb4f1 --- /dev/null +++ b/src/activities/lang/resource/content-fr.json @@ -0,0 +1,1082 @@ +{ + "accountant.ogg": "un comptable", + "ache.ogg": "la douleur", + "acorn.ogg": "un gland", + "actor.ogg": "un acteur", + "air_horn.ogg": "un klaxon", + "alarmclock.ogg": "un réveil", + "alligator.ogg": "un alligator", + "alphabet.ogg": "un alphabet", + "anchor.ogg": "une ancre", + "angel.ogg": "un ange", + "angry.ogg": "la colère", + "animal.ogg": "les animaux", + "ankle.ogg": "la cheville", + "ant.ogg": "une fourmi", + "anteater.ogg": "un fourmilier", + "antelope.ogg": "une antilope", + "apple.ogg": "une pomme", + "apple_tree.ogg": "un pommier", + "appliance.ogg": "un appareil", + "apricot.ogg": "un abricot", + "arm.ogg": "un bras", + "armchair.ogg": "un fauteuil", + "artichoke.ogg": "un artichaut", + "artist.ogg": "un artiste", + "asparagus.ogg": "une asperge", + "astronaut.ogg": "un astronaute", + "athlete.ogg": "un athlète", + "avocado.ogg": "un avocat", + "ax.ogg": "une hache", + "baby_bottle.ogg": "un biberon", + "back.ogg": "le dos", + "badge.ogg": "une décoration", + "bag.ogg": "un sac", + "bait.ogg": "un appât", + "bake.ogg": "cuisiner", + "balance.ogg": "une balance", + "bald.ogg": "chauve", + "ball.ogg": "une balle", + "ball_of_yarn.ogg": "une pelote", + "ball_soccer.ogg": "un ballon de foot", + "ballet.ogg": "un ballet", + "bank.ogg": "une banque", + "banker_female.ogg": "une employée de banque", + "bark.ogg": "aboyer", + "barn.ogg": "une grange", + "bat.ogg": "une chauve-souris", + "bath.ogg": "un bain", + "bathing_suit.ogg": "un maillot", + "bay.ogg": "une baie", + "beach.ogg": "une plage", + "bead.ogg": "une bulle", + "bean.ogg": "un haricot", + "bear.ogg": "un ours", + "beard.ogg": "une barbe", + "beat.ogg": "se battre", + "beaver.ogg": "un castor", + "bed.ogg": "un lit", + "bedroom.ogg": "une chambre", + "bee.ogg": "une abeille", + "beef.ogg": "du boeuf", + "beetle.ogg": "un scarabée", + "beg.ogg": "supplier", + "behind.ogg": "derrière", + "bell.ogg": "une cloche", + "belly.ogg": "le ventre", + "bench.ogg": "un banc", + "bib.ogg": "un bavoir", + "big.ogg": "grand", + "big_top.ogg": "un chapiteau", + "bike.ogg": "un vélo", + "bird.ogg": "un oiseau", + "bit.ogg": "un morceau", + "bite.ogg": "croquer", + "black.ogg": "noir", + "blackberry.ogg": "un mûre", + "blackbird.ogg": "un merle", + "blade.ogg": "une lame", + "blind.ogg": "un aveugle", + "blink.ogg": "cligner", + "block.ogg": "un bloc", + "blond.ogg": "blond", + "blue.ogg": "bleu", + "blueberry.ogg": "une myrtille", + "blush.ogg": "rougir", + "board.ogg": "une planche", + "boat.ogg": "une barque", + "boil.ogg": "bouillir", + "bolt.ogg": "un boulon", + "bomb.ogg": "une bombe", + "bone.ogg": "un os", + "book.ogg": "un livre", + "bookcase.ogg": "une bibliothèque", + "bottom.ogg": "le derrière", + "box.ogg": "une boîte", + "boxer.ogg": "boxer", + "boy.ogg": "un garçon", + "braid.ogg": "une tresse", + "brain.ogg": "un cerveau", + "branch.ogg": "une branche", + "bread.ogg": "du pain", + "break.ogg": "casser", + "breast.ogg": "la poitrine", + "brick.ogg": "une brique", + "bricklayer.ogg": "un maçon", + "bride.ogg": "la mariée", + "bridge.ogg": "un pont", + "bright.ogg": "brillant", + "broccoli.ogg": "un brocoli", + "brother.ogg": "un frère", + "brown.ogg": "brun", + "brush.ogg": "un pinceau", + "bubble.ogg": "une bulle", + "bucket.ogg": "un seau", + "bud.ogg": "un bourgeon", + "buffalo.ogg": "un buffle", + "bug.ogg": "un insecte", + "bulb.ogg": "une ampoule", + "bull.ogg": "un taureau", + "bump.ogg": "une bosse", + "bun.ogg": "une brioche", + "bus.ogg": "un bus", + "bush.ogg": "un buisson", + "butcher.ogg": "un boucher", + "butter.ogg": "du beurre", + "butterfly.ogg": "un papillon", + "button.ogg": "un bouton", + "cabbage.ogg": "un chou", + "cabin.ogg": "une cabane", + "cacao.ogg": "du cacao", + "cactus.ogg": "un cactus", + "cage.ogg": "une cage", + "cake.ogg": "un gâteau", + "call.ogg": "appeler", + "camel.ogg": "un chameau", + "camera.ogg": "un appareil photo", + "camp.ogg": "un camping", + "canary.ogg": "un canari", + "candle.ogg": "une bougie", + "candy.ogg": "un bonbon", + "cane.ogg": "une cane", + "canoe.ogg": "un canoë", + "canon.ogg": "un canon", + "canyon.ogg": "un canyon", + "cap.ogg": "une casquette", + "cape.ogg": "une cape", + "car.ogg": "une voiture", + "carafe.ogg": "une carafe", + "card.ogg": "une carte", + "carnival.ogg": "le carnaval", + "carpenter.ogg": "un charpentier", + "carpet.ogg": "un tapis", + "carrot.ogg": "une carotte", + "cart.ogg": "un cady", + "cash.ogg": "de l'argent", + "castle.ogg": "un château", + "cat.ogg": "un chat", + "cat_female.ogg": "une chatte", + "catch.ogg": "attraper", + "caterpillar.ogg": "une chenille", + "cauldron.ogg": "un chaudron", + "cauliflower.ogg": "un chou-fleur", + "cavern.ogg": "une caverne", + "celery.ogg": "un céleri", + "centipede.ogg": "un mille-pattes", + "cereal.ogg": "une céréale", + "chain.ogg": "une chaîne", + "chair.ogg": "une chaise", + "chalk.ogg": "une craie", + "chameleon.ogg": "un caméléon", + "chandelier.ogg": "un lustre", + "chat.ogg": "discuter", + "cheek.ogg": "la joue", + "cheer.ogg": "encourager", + "cheese.ogg": "du fromage", + "chef.ogg": "une cuisinière", + "cherry.ogg": "une cerise", + "chest.ogg": "un coffre", + "chick.ogg": "un poussin", + "chicken.ogg": "un poulet", + "chief.ogg": "un indien", + "child.ogg": "un enfant", + "chimney.ogg": "une cheminée", + "chimp.ogg": "un chimpanzé", + "chin.ogg": "le menton", + "chocolate.ogg": "du chocolat", + "chop.ogg": "découper", + "chores.ogg": "des tâches ménagères", + "christmas.ogg": "noël", + "cigar.ogg": "un cigare", + "circus.ogg": "un cirque", + "city.ogg": "une ville", + "clam.ogg": "une palourde", + "clap.ogg": "une tape", + "class.ogg": "une classe", + "claw.ogg": "une griffe", + "clay.ogg": "de l'argile", + "clean.ogg": "se laver", + "cleaning_lady.ogg": "une femme de ménage", + "cliff.ogg": "une falaise", + "climb.ogg": "escalader", + "clock.ogg": "un réveil", + "cloth.ogg": "du tissus", + "clothes_hanger.ogg": "un cintre", + "cloud.ogg": "un nuage", + "cloudy.ogg": "nuageux", + "clover.ogg": "un trèfle", + "cowboy.ogg": "un cow-boy", + "clown.ogg": "un clown", + "coach.ogg": "une entraîneuse", + "coast.ogg": "une côte", + "coat.ogg": "un manteau", + "cobra.ogg": "un cobra", + "coconut.ogg": "une noix de coco", + "cod.ogg": "une morue", + "coffee.ogg": "un café", + "coin.ogg": "une pièce", + "cold.ogg": "le froid", + "color.ogg": "la couleur", + "colt.ogg": "un poulain", + "comb.ogg": "un peigne", + "cone.ogg": "un cône", + "cookie.ogg": "un biscuit", + "cork.ogg": "un bouchon", + "corn.ogg": "du maïs", + "couch.ogg": "un canapé", + "cough.ogg": "tousser", + "couple.ogg": "un couple", + "cow.ogg": "une vache", + "crab.ogg": "un crabe", + "cradle.ogg": "un berceau", + "craft.ogg": "des travaux manuels", + "crawl.ogg": "ramper", + "crazy.ogg": "un fou", + "creek.ogg": "un ruisseau", + "crepe.ogg": "une crêpe", + "crib.ogg": "des berceaux", + "criminal.ogg": "un criminel", + "croak.ogg": "coasser", + "crocodile.ogg": "un crocodile", + "cross.ogg": "une croix", + "crow.ogg": "un corbeau", + "crown.ogg": "une couronne", + "crumb.ogg": "une miette", + "crust.ogg": "une croûte", + "cry.ogg": "pleurer", + "crystal.ogg": "un cristal", + "cube.ogg": "un cube", + "cucumber.ogg": "un concombre", + "curtain.ogg": "un rideau", + "cut.ogg": "couper", + "cute.ogg": "adorable", + "dad.ogg": "un papa", + "daffodil.ogg": "une jonquille", + "daisy.ogg": "une marguerite", + "dam.ogg": "un barrage", + "dance.ogg": "dancer", + "dandelion.ogg": "un pissenlit", + "danger.ogg": "un danger", + "dart_board.ogg": "une cible", + "date_fruit.ogg": "une datte", + "deer.ogg": "un cerf", + "den.ogg": "une tanière", + "desert.ogg": "un désert", + "desk.ogg": "un bureau", + "dessert.ogg": "un dessert", + "diamond.ogg": "un diamant", + "dig.ogg": "creuser", + "dirt.ogg": "le sol", + "dirty.ogg": "sale", + "dish.ogg": "un plat", + "dishcloth.ogg": "un torchon", + "dive.ogg": "plonger", + "doctor.ogg": "une docteure", + "doe.ogg": "une biche", + "dog.ogg": "un chien", + "doll.ogg": "une poupée", + "dolphin.ogg": "un dauphin", + "domino.ogg": "un domino", + "door.ogg": "une porte", + "doormat.ogg": "un paillasson", + "dot.ogg": "un point", + "doughnut.ogg": "un beignet", + "dove.ogg": "une colombe", + "dragon.ogg": "un dragon", + "dragonfly.ogg": "une libellule", + "draw.ogg": "un dessin", + "drawer.ogg": "un tiroir", + "dream.ogg": "un rêve", + "dress.ogg": "une robe", + "drink.ogg": "une boisson", + "drinking.ogg": "boire", + "drip.ogg": "une goutte", + "drive.ogg": "conduire", + "drool.ogg": "baver", + "drum.ogg": "un tambour", + "dry.ogg": "sécher", + "duck.ogg": "un canard", + "duck_mother.ogg": "une canne", + "dune.ogg": "une dune", + "dwarf.ogg": "un nain", + "eagle.ogg": "un aigle", + "ear.ogg": "une oreille", + "earth.ogg": "la Terre", + "eat.ogg": "manger", + "egg.ogg": "un oeuf", + "eggplant.ogg": "une aubergine", + "elbow.ogg": "le coude", + "electrician.ogg": "un électricien", + "eleven.ogg": "onze", + "elk.ogg": "un wapiti", + "empty.ogg": "vide", + "engine.ogg": "un moteur", + "engineer.ogg": "un ingénieur", + "eraser.ogg": "une gomme", + "explore.ogg": "des explorateurs", + "eyelash.ogg": "un cil", + "eyes.ogg": "les yeux", + "face.ogg": "un visage", + "fair.ogg": "un manège", + "fairy.ogg": "une fée", + "fall_down.ogg": "tomber", + "fall_season.ogg": "l'automne", + "family.ogg": "une famille", + "fan.ogg": "un ventilateur", + "farm.ogg": "une ferme", + "farmer.ogg": "un fermier", + "fat.ogg": "gras", + "faucet.ogg": "un robinet", + "fawn.ogg": "un faon", + "feast.ogg": "un poulet", + "feather.ogg": "une plume", + "feed.ogg": "nourrir", + "femur.ogg": "un fémur", + "fetch.ogg": "rapporter", + "fig.ogg": "une figue", + "fin.ogg": "une nageoire", + "find.ogg": "trouver", + "finger.ogg": "un doigt", + "fire.ogg": "un feu", + "fire_extinguisher.ogg": "un extincteur", + "fireman.ogg": "un pompier", + "fish.ogg": "un poisson", + "fisherman.ogg": "un pêcheur", + "fist.ogg": "un poing", + "flacon.ogg": "un flacon", + "flag.ogg": "un drapeau", + "flame.ogg": "une flamme", + "flamingo.ogg": "un flamant rose", + "flash.ogg": "une lampe torche", + "flat.ogg": "un appartement", + "flies.ogg": "une mouche", + "flight.ogg": "un vol", + "float.ogg": "flotter", + "flour.ogg": "la farine", + "flower.ogg": "une fleur", + "fluff.ogg": "une peluche", + "flute.ogg": "une flûte", + "fly.ogg": "voler", + "foam.ogg": "la mousse", + "food.ogg": "un hamburger", + "foot.ogg": "un pied", + "forest.ogg": "une forêt", + "fork.ogg": "une fourchette", + "fountain.ogg": "une fontaine", + "fox.ogg": "un renard", + "freeze.ogg": "geler", + "friend.ogg": "des amis", + "fries.ogg": "une frite", + "frog.ogg": "une grenouille", + "front.ogg": "devant", + "frown.ogg": "rechigner", + "fruit.ogg": "un fruit", + "fudge.ogg": "un caramel", + "full.ogg": "plein", + "fun.ogg": "un jeu", + "fur.ogg": "la fourrure", + "game.ogg": "un jeu", + "garage.ogg": "un garage", + "garden.ogg": "un jardin", + "garlic.ogg": "de l'ail", + "giant.ogg": "un géant", + "gift.ogg": "un cadeau", + "giraffe.ogg": "une girafe", + "girl.ogg": "une fille", + "glass.ogg": "un verre", + "glasses.ogg": "des lunettes", + "glove.ogg": "un gant", + "glue.ogg": "la colle", + "gnome.ogg": "un gnome", + "goat.ogg": "une chèvre", + "golden.ogg": "doré", + "golf.ogg": "le golf", + "goose.ogg": "une oie", + "gorilla.ogg": "un gorille", + "grain.ogg": "un épi", + "grandmother.ogg": "une grand-mère", + "grape.ogg": "une grappe de raisin", + "grapefruit.ogg": "un pamplemousse", + "grass.ogg": "une herbe", + "grave.ogg": "une tombe", + "gray.ogg": "gris", + "green.ogg": "vert", + "grill.ogg": "un barbecue", + "grin.ogg": "un sourire", + "ground.ogg": "la terre", + "growl.ogg": "grogner", + "guignol.ogg": "guignol", + "guinea_pig.ogg": "un cochon d'inde", + "gum.ogg": "du chewing-gum", + "hair.ogg": "les cheveux", + "hair_dryer.ogg": "un sèche-cheveux", + "half.ogg": "la moitié", + "ham.ogg": "un jambon", + "hammer.ogg": "un marteau", + "hand.ogg": "une main", + "handlebar.ogg": "un guidon", + "happy.ogg": "heureux", + "harp.ogg": "une harpe", + "hat.ogg": "un chapeau", + "hatch.ogg": "éclore", + "hay.ogg": "le foin", + "head.ogg": "la tête", + "hear.ogg": "entendre", + "heat.ogg": "la chaleur", + "hedge.ogg": "une bordure", + "hedgehog.ogg": "un hérisson", + "heel.ogg": "le talon", + "helmet.ogg": "un casque", + "hen.ogg": "une poule", + "herd.ogg": "un troupeau", + "high.ogg": "haut", + "hike.ogg": "une promenade", + "hill.ogg": "une colline", + "hip.ogg": "une hanche", + "hippopotamus.ogg": "un hippopotame", + "hit.ogg": "une bagarre", + "hive.ogg": "une ruche", + "hockey.ogg": "le hockey", + "hole.ogg": "un trou", + "hook.ogg": "un hameçon", + "hop.ogg": "rebondir", + "horse.ogg": "un cheval", + "hose.ogg": "un tuyau", + "hospital.ogg": "un hôpital", + "hot.ogg": "chaud", + "hot_dog.ogg": "un hot-dog", + "house.ogg": "une maison", + "howl.ogg": "un hurlement", + "huge.ogg": "énorme", + "hummingbird.ogg": "un colibri", + "hunchback.ogg": "un bossu", + "hunter.ogg": "un chasseur", + "husband.ogg": "un mari", + "hut.ogg": "une hutte", + "hyena.ogg": "une hyène", + "ice.ogg": "un glaçon", + "iceberg.ogg": "un iceberg", + "iguana.ogg": "un iguane", + "ill.ogg": "malade", + "ink.ogg": "une encre", + "island.ogg": "une île", + "jacket.ogg": "une veste", + "jaguar.ogg": "un jaguar", + "jam.ogg": "une confiture", + "jay.ogg": "un geai", + "jelly.ogg": "une gelée", + "jellyfish.ogg": "une méduse", + "jewel.ogg": "un bijou", + "job.ogg": "un travail", + "jockey.ogg": "un jockey", + "jog.ogg": "un joggeur", + "judge.ogg": "un juge", + "judo.ogg": "une judokate", + "juggler.ogg": "une jongleuse", + "juice.ogg": "un jus", + "jump.ogg": "sauter", + "kangaroo.ogg": "un kangourou", + "keel.ogg": "une quille", + "kernel.ogg": "un noyau", + "keyboard.ogg": "un clavier", + "kimono.ogg": "un kimono", + "king.ogg": "un roi", + "kiss.ogg": "un baiser", + "kitchen.ogg": "une cuisine", + "kite.ogg": "un cerf-volant", + "kitten.ogg": "un chaton", + "kiwi.ogg": "un kiwi", + "knee.ogg": "un genou", + "kneel.ogg": "s'agenouiller", + "knife.ogg": "un couteau", + "knight.ogg": "un chevalier", + "knit.ogg": "tricoter", + "knot.ogg": "un noeud", + "koala.ogg": "un koala", + "lady.ogg": "une dame", + "ladybug.ogg": "une coccinelle", + "lake.ogg": "un lac", + "lama.ogg": "un lama", + "lamb.ogg": "un agneau", + "lamp.ogg": "une lampe", + "land.ogg": "un terrain", + "lasso.ogg": "un lasso", + "laugh.ogg": "rire", + "lava.ogg": "la lave", + "lawn.ogg": "la pelouse", + "lawyer.ogg": "un avocat", + "leaf.ogg": "une feuille", + "ledge.ogg": "un rebord", + "leek.ogg": "un poireau", + "left.ogg": "la gauche", + "leg.ogg": "la jambe", + "leg_animal.ogg": "la patte", + "lemon.ogg": "un citron", + "lemonade.ogg": "une limonade", + "lemur.ogg": "un lémur", + "leopard.ogg": "un léopard", + "lettuce.ogg": "une laitue", + "librarian.ogg": "une bibliothécaire", + "lick.ogg": "lécher", + "lid.ogg": "un couvercle", + "lift.ogg": "soulever", + "light.ogg": "la lumière", + "lilac.ogg": "un lilas", + "lighthouse.ogg": "un phare", + "lightning.ogg": "la foudre", + "lilac.ogg": "un lilas", + "lime.ogg": "un citron vert", + "line.ogg": "un code-barres", + "link.ogg": "un chaînon", + "lion.ogg": "un lion", + "lion_cub.ogg": "un lionceau", + "lip.ogg": "une lèvre", + "liquid.ogg": "un liquide", + "lizard.ogg": "un lézard", + "lobster.ogg": "un homard", + "log.ogg": "une bûche", + "look.ogg": "regarder", + "lunch.ogg": "un casse-croûte", + "mad.ogg": "la colère", + "magic.ogg": "un magicien", + "magnet.ogg": "un aimant", + "magnifying_glass.ogg": "une loupe", + "magpie.ogg": "une pie", + "mail.ogg": "une enveloppe", + "man.ogg": "un homme", + "mane.ogg": "une crinière", + "mango.ogg": "une mangue", + "map.ogg": "une carte", + "maple.ogg": "un érable", + "marble.ogg": "une bille", + "mashed_potatoes.ogg": "une purée", + "mask.ogg": "un masque", + "mast.ogg": "un mât", + "mat.ogg": "une natte", + "match.ogg": "une allumette", + "mate_male.ogg": "un copain", + "mate_female.ogg": "une camarade", + "mattress.ogg": "un matelas", + "mauve.ogg": "violet", + "meal.ogg": "un repas", + "meat.ogg": "de la viande", + "mechanic.ogg": "un mécanicien", + "medal.ogg": "une médaille", + "meet.ogg": "rencontrer", + "melon.ogg": "un melon", + "men.ogg": "une foule", + "merry-go-round.ogg": "un tourniquet", + "microphone.ogg": "un micro", + "milk.ogg": "du lait", + "mill.ogg": "un moulin", + "mimosa.ogg": "un mimosa", + "mirror.ogg": "un miroir", + "mixer.ogg": "un mixer", + "mole.ogg": "une taupe", + "mom.ogg": "une maman", + "moon.ogg": "une lune", + "moose.ogg": "un élan", + "mop.ogg": "un balai", + "mosque.ogg": "une mosquée", + "mosquito.ogg": "un moustique", + "mother.ogg": "une mère", + "motorcycle.ogg": "une moto", + "mountain.ogg": "une montagne", + "mouse.ogg": "une souris", + "mouth.ogg": "une bouche", + "movie.ogg": "un film", + "mower.ogg": "une tondeuse", + "mud.ogg": "la boue", + "mug.ogg": "une tasse", + "mule.ogg": "une mule", + "muscle.ogg": "un muscle", + "mushroom.ogg": "un champignon", + "music.ogg": "la musique", + "musician.ogg": "un musicien", + "naked.ogg": "nu", + "nap.ogg": "une sieste", + "navel.ogg": "le nombril", + "neck.ogg": "le cou", + "necklace.ogg": "un collier", + "needle.ogg": "une aiguille", + "nest.ogg": "un nid", + "net.ogg": "un filet", + "newspaper.ogg": "un journal", + "night.ogg": "la nuit", + "nightgown.ogg": "une chemise de nuit", + "nose.ogg": "le nez", + "nostril.ogg": "la narine", + "notebook.ogg": "un cahier", + "number.ogg": "un nombre", + "nun.ogg": "une religieuse", + "nurse.ogg": "une infirmière", + "nurse_male.ogg": "un infirmier", + "nut.ogg": "une cacahuète", + "oar.ogg": "une rame", + "ocean.ogg": "un océan", + "office.ogg": "un bureau", + "olive.ogg": "une olive", + "on.ogg": "sur", + "onion.ogg": "un oignon", + "open.ogg": "ouvert", + "opossum.ogg": "un opossum", + "orange-color.ogg": "orange", + "orange.ogg": "une orange", + "orchid.ogg": "une orchidée", + "ostrich.ogg": "une autruche", + "otter.ogg": "une loutre", + "owl.ogg": "un hibou", + "ox.ogg": "un boeuf", + "oyster.ogg": "une huître", + "pacifier.ogg": "une tétine", + "page.ogg": "une page", + "pair.ogg": "une paire", + "pajamas.ogg": "un pyjama", + "palm_tree.ogg": "un palmier", + "pan.ogg": "une poêle", + "panda.ogg": "un panda", + "panther.ogg": "une panthère", + "panties.ogg": "une culotte", + "pants.ogg": "un pantalon", + "papaya.ogg": "une papaye", + "paper.ogg": "un papier", + "parachute.ogg": "un parachute", + "parakeet.ogg": "une perruche", + "parrot.ogg": "un perroquet", + "patch.ogg": "une pièce", + "path.ogg": "un chemin", + "paw.ogg": "une patte", + "pea.ogg": "un petit pois", + "peach.ogg": "une pêche", + "peacock.ogg": "un paon", + "peak.ogg": "un pic", + "pear.ogg": "une poire", + "pearl.ogg": "une perle", + "peck.ogg": "picorer", + "pedal.ogg": "une pédale", + "pelican.ogg": "un pélican", + "pen.ogg": "un stylo", + "pencil.ogg": "un crayon", + "peony.ogg": "une pivoine", + "people.ogg": "les gens", + "pepper.ogg": "le poivre", + "peppers.ogg": "un poivron", + "petal.ogg": "un pétale", + "petite.ogg": "la petite", + "phone.ogg": "un téléphone", + "piano.ogg": "un piano", + "picture.ogg": "une photo", + "pie.ogg": "une tarte", + "pig.ogg": "un cochon", + "pigeon.ogg": "un pigeon", + "pill.ogg": "une pilule", + "pillow.ogg": "un oreiller", + "pilot.ogg": "un pilote", + "pine.ogg": "un pin", + "pine_cone.ogg": "une pomme de pin", + "pink.ogg": "rose", + "pip.ogg": "un pépin", + "pipe.ogg": "une pipe", + "piranha.ogg": "un piranha", + "pirate.ogg": "un pirate", + "pizza.ogg": "une pizza", + "plane.ogg": "un avion", + "planet.ogg": "une planète", + "plant.ogg": "une plante", + "plate.ogg": "une assiette", + "play.ogg": "jouer", + "pliers.ogg": "une pince", + "plum.ogg": "une prune", + "plow.ogg": "labourer", + "plumber.ogg": "un plombier", + "pocket.ogg": "une poche", + "pod.ogg": "une cosse", + "pole.ogg": "un poteau", + "police.ogg": "un policier", + "pompon.ogg": "un pompon", + "pond.ogg": "un étang", + "pony.ogg": "un poney", + "pool.ogg": "une piscine", + "pop.ogg": "du pop-corn", + "pope.ogg": "le pape", + "porthole.ogg": "un hublot", + "post.ogg": "une boîte aux lettres", + "pot.ogg": "un pot", + "potato.ogg": "une pomme de terre", + "pounce.ogg": "bondir", + "president.ogg": "le président", + "pretty.ogg": "jolie", + "price.ogg": "le prix", + "priest.ogg": "un prêtre", + "prince.ogg": "un prince", + "princess.ogg": "une princesse", + "prison.ogg": "une prison", + "prisoner.ogg": "un prisonnier", + "prize.ogg": "un trophée", + "pug.ogg": "un bouledogue", + "pull.ogg": "tirer", + "pullover.ogg": "un pull-over", + "pumpkin.ogg": "une citrouille", + "puppy.ogg": "un chiot", + "pyramid.ogg": "une pyramide", + "quarrel.ogg": "se quereller", + "queen.ogg": "une reine", + "question.ogg": "une question", + "quilt.ogg": "une couette", + "quiz.ogg": "un quiz", + "rabbit.ogg": "un lapin", + "rabbit_baby.ogg": "un lapereau", + "race.ogg": "une course", + "radio.ogg": "une radio", + "radish.ogg": "un radis", + "raft.ogg": "un radeau", + "rag.ogg": "un chiffon", + "rage.ogg": "la rage", + "rain.ogg": "la pluie", + "raincoat.ogg": "un imperméable", + "rake.ogg": "un râteau", + "ramp.ogg": "une rampe", + "raspberry.ogg": "une framboise", + "rat.ogg": "un rat", + "razor.ogg": "un rasoir", + "read.ogg": "lire", + "red.ogg": "rouge", + "reptile.ogg": "un reptile", + "rhinoceros.ogg": "un rhinocéros", + "rice.ogg": "le riz", + "rifle.ogg": "un fusil", + "right.ogg": "la droite", + "rise.ogg": "augmenter", + "river.ogg": "une rivière", + "road.ogg": "une route", + "roast.ogg": "un rôti", + "robot.ogg": "un robot", + "rock.ogg": "un caillou", + "rocket.ogg": "une fusée", + "rolling_pin.ogg": "un rouleau", + "roof.ogg": "un toit", + "room.ogg": "une pièce", + "root.ogg": "une racine", + "rope.ogg": "une corde", + "rose.ogg": "une rose", + "round.ogg": "un rond", + "rowing.ogg": "un aviron", + "royal.ogg": "royal", + "rug.ogg": "un tapis", + "run.ogg": "courir", + "sad.ogg": "triste", + "saddle.ogg": "une selle", + "sail.ogg": "un voilier", + "sailor.ogg": "un marin", + "salamander.ogg": "une salamandre", + "salmon.ogg": "un saumon", + "sand.ogg": "le sable", + "sandals.ogg": "une sandale", + "sandwich.ogg": "un sandwich", + "sash.ogg": "une ceinture", + "sat.ogg": "s'asseoir", + "sauce.ogg": "une sauce", + "sausage.ogg": "une saucisse", + "scale.ogg": "une balance", + "scar.ogg": "une cicatrice", + "scared.ogg": "effrayé", + "scarf.ogg": "une écharpe", + "school.ogg": "une école", + "school_bag.ogg": "un sac", + "science.ogg": "la science", + "scissors.ogg": "un ciseau", + "scorpion.ogg": "un scorpion", + "scratch.ogg": "griffer", + "scream.ogg": "crier", + "screw.ogg": "une vis", + "screwdriver.ogg": "un tournevis", + "scribble.ogg": "gribouiller", + "sea.ogg": "la mer", + "seat.ogg": "un siège", + "see.ogg": "voir", + "seed.ogg": "une graine", + "shadow.ogg": "une ombre", + "shake.ogg": "secouer", + "shark.ogg": "un requin", + "shave.ogg": "se raser", + "shed.ogg": "un hangar", + "sheep.ogg": "un mouton", + "shelf.ogg": "une étagère", + "shell.ogg": "un coquillage", + "ship.ogg": "un bateau", + "shirt.ogg": "une chemise", + "shoe.ogg": "une chaussure", + "shoelace.ogg": "un lacet", + "shop.ogg": "un magasin", + "shore.ogg": "un rivage", + "short.ogg": "un short", + "shovel.ogg": "une pelle", + "shower.ogg": "une douche", + "shrimp.ogg": "une crevette", + "shrub.ogg": "un arbuste", + "shut.ogg": "fermé", + "shutter.ogg": "un volet", + "sick.ogg": "malade", + "sidewalk.ogg": "un trottoir", + "sign.ogg": "un panneau", + "sing.ogg": "chanter", + "sink.ogg": "un évier", + "sip.ogg": "siroter", + "sister.ogg": "une soeur", + "sit.ogg": "s'asseoir", + "sixteen.ogg": "seize", + "skate.ogg": "un skate", + "skeleton.ogg": "un squelette", + "ski.ogg": "le ski", + "skimmer.ogg": "une écumoire", + "skin.ogg": "la peau", + "skirt.ogg": "une jupe", + "skunk.ogg": "une mouffette", + "sky.ogg": "le ciel", + "slam.ogg": "smasher", + "sled.ogg": "une luge", + "sleep.ogg": "dormir", + "sleeve.ogg": "une manche", + "sleigh.ogg": "un traîneau", + "slide.ogg": "un toboggan", + "slim.ogg": "mince", + "slime.ogg": "la bave", + "slippers.ogg": "un chausson", + "slope.ogg": "une pente", + "sloppy.ogg": "trempé", + "slot.ogg": "une fente", + "sloth.ogg": "un paresseux", + "slug.ogg": "une limace", + "small.ogg": "le petit", + "smell.ogg": "sentir", + "smile.ogg": "un sourire", + "smock.ogg": "une blouse", + "smoke.ogg": "la fumée", + "smooch.ogg": "s'embrasser", + "snail.ogg": "un escargot", + "snake.ogg": "un serpent", + "sneaker.ogg": "une basket", + "sniff.ogg": "renifler", + "snow.ogg": "la neige", + "soap.ogg": "le savon", + "sob.ogg": "sangloter", + "sock.ogg": "une chaussette", + "soldier.ogg": "un soldat", + "sole.ogg": "une sole", + "sole_shoe.ogg": "une semelle", + "son.ogg": "un fils", + "soup.ogg": "une soupe", + "spade.ogg": "une bêche", + "spaghetti.ogg": "un spaghetti", + "spark.ogg": "une étincelle", + "sparrow.ogg": "un moineau", + "spatula.ogg": "une spatule", + "speak.ogg": "parler", + "spear.ogg": "une lance", + "spice.ogg": "un épice", + "spider.ogg": "une araignée", + "spider_web.ogg": "une toile d'araignée", + "spike.ogg": "un hérisson", + "spill.ogg": "répandre", + "spinach.ogg": "un épinard", + "spine.ogg": "une colonne vertébrale", + "spinning_top.ogg": "une toupie", + "splash.ogg": "un jet", + "splatter.ogg": "une éclaboussure", + "sponge.ogg": "une éponge", + "spool.ogg": "une bobine", + "spoon.ogg": "une cuillère", + "sport.ogg": "le sport", + "spot.ogg": "une tâche", + "spray.ogg": "pulvériser", + "spread.ogg": "étaler", + "spring.ogg": "bondir", + "spring_season.ogg": "le printemps", + "square.ogg": "un carré", + "squash.ogg": "une courge", + "squat.ogg": "s'accroupir", + "squid.ogg": "un calmar", + "squirrel.ogg": "un écureuil", + "stack.ogg": "une pile", + "stage.ogg": "une scène", + "staircase.ogg": "un escalier", + "stamp.ogg": "un timbre", + "stand.ogg": "debout", + "star.ogg": "une étoile", + "stare.ogg": "un regard", + "starfish.ogg": "une étoile de mer", + "steak.ogg": "un steak", + "steam.ogg": "la vapeur", + "steep.ogg": "raide", + "steeple.ogg": "un clocher", + "stem.ogg": "une tige", + "step.ogg": "une marche", + "stew.ogg": "un ragoût", + "stick.ogg": "une branche", + "sting.ogg": "piquer", + "stinky.ogg": "puant", + "stitch.ogg": "coudre", + "stomach.ogg": "un estomac", + "stone.ogg": "une pierre", + "stop.ogg": "arrêter", + "store.ogg": "un magasin", + "stove.ogg": "une cuisinière", + "straight.ogg": "droit", + "strainer.ogg": "une passoire", + "straw.ogg": "une paille", + "strawberry.ogg": "une fraise", + "stream.ogg": "une rivière", + "street.ogg": "une rue", + "stretch.ogg": "s'étirer", + "string.ogg": "une ficelle", + "stripe.ogg": "une bande", + "strong.ogg": "fort", + "student.ogg": "un étudiant", + "study.ogg": "étudier", + "stump.ogg": "une souche", + "sugar.ogg": "un sucre", + "suit.ogg": "un costume", + "suitcase.ogg": "une valise", + "summer.ogg": "un été", + "summit.ogg": "un sommet", + "sun.ogg": "le soleil", + "swan.ogg": "un cygne", + "sweat.ogg": "transpirer", + "sweatshirt.ogg": "un sweat-shirt", + "swim.ogg": "nager", + "table.ogg": "une table", + "tablecloth.ogg": "une nappe", + "tadpole.ogg": "un têtard", + "tag.ogg": "une étiquette", + "tail.ogg": "une queue", + "tall.ogg": "grand", + "tape_measure.ogg": "un mètre", + "taxi.ogg": "un taxi", + "teach.ogg": "enseigner", + "teacher.ogg": "un professeur", + "tear.ogg": "déchirer", + "teddy.ogg": "une peluche", + "teeth.ogg": "les dents", + "television.ogg": "une télévision", + "temple.ogg": "un temple", + "tennis.ogg": "le tennis", + "tent.ogg": "une tente", + "text.ogg": "un texte", + "thick.ogg": "épais", + "thief.ogg": "un voleur", + "thigh.ogg": "une cuisse", + "think.ogg": "penser", + "thread.ogg": "une bobine", + "throat.ogg": "la gorge", + "throw.ogg": "envoyer", + "thumb.ogg": "un pouce", + "ticket.ogg": "un billet", + "tiger.ogg": "un tigre", + "time.ogg": "le temps", + "tin.ogg": "une conserve", + "tire.ogg": "un pneu", + "tired.ogg": "fatigué", + "tissue.ogg": "un mouchoir", + "toad.ogg": "un crapaud", + "toaster.ogg": "un grille-pain", + "toe.ogg": "un orteil", + "toilet.ogg": "les toilettes", + "tomatoe.ogg": "une tomate", + "tongs.ogg": "une pince", + "tongue.ogg": "une langue", + "tool.ogg": "un outil", + "top.ogg": "dessus", + "torch.ogg": "une torche", + "touch.ogg": "toucher", + "towel.ogg": "une serviette", + "toy.ogg": "un jouet", + "trail.ogg": "une piste", + "train.ogg": "un train", + "train_station.ogg": "une gare", + "trap.ogg": "un piège", + "trash.ogg": "la saleté", + "tray.ogg": "un plateau", + "treat.ogg": "un bonbon", + "tree.ogg": "un arbre", + "triangle.ogg": "un triangle", + "tribe.ogg": "une tribu", + "trip.ogg": "un voyage", + "truck.ogg": "un camion", + "tube.ogg": "un rouge à lèvres", + "tulip.ogg": "une tulipe", + "tune.ogg": "un air de musique", + "turkey.ogg": "une dinde", + "turnip.ogg": "un navet", + "turtle.ogg": "une tortue", + "tusk.ogg": "une défense", + "twelve.ogg": "douze", + "twin_boys.ogg": "un jumeau", + "twin_girls.ogg": "une jumelle", + "umbrella.ogg": "un parapluie", + "under.ogg": "sous", + "uniform.ogg": "un uniforme", + "van.ogg": "un fourgon", + "vase.ogg": "un vase", + "vegetable.ogg": "un légume", + "vein.ogg": "une veine", + "verdure.ogg": "la verdure", + "vest.ogg": "un gilet", + "vet.ogg": "un vétérinaire", + "viper.ogg": "une vipère", + "vowel.ogg": "une voyelle", + "vulture.ogg": "un vautour", + "wag.ogg": "remuer la queue", + "walk.ogg": "marcher", + "wall.ogg": "un mur", + "walnut.ogg": "une noix", + "wart.ogg": "une verrue", + "wasp.ogg": "une guêpe", + "watch.ogg": "une montre", + "water.ogg": "de l'eau", + "wave.ogg": "une vague", + "wedding.ogg": "un mariage", + "wedge.ogg": "une cale", + "weight.ogg": "un poids", + "wet.ogg": "humide", + "whale.ogg": "une baleine", + "wheat.ogg": "le blé", + "wheel.ogg": "une roue", + "whisk.ogg": "un fouet", + "whisper.ogg": "chuchoter", + "white.ogg": "blanc", + "wide.ogg": "large", + "wig.ogg": "une perruque", + "win.ogg": "gagner", + "wind.ogg": "le vent", + "window.ogg": "une fenêtre", + "window_glass.ogg": "une vitre", + "wing.ogg": "une aile", + "winter.ogg": "un hiver", + "wolf.ogg": "un loup", + "woman.ogg": "une femme", + "wood.ogg": "le bois", + "word.ogg": "un mot", + "worker.ogg": "un travailleur", + "world.ogg": "le monde", + "wreath.ogg": "une couronne", + "wrench.ogg": "une clé", + "wrist.ogg": "un poignet", + "write.ogg": "écrire", + "yellow.ogg": "jaune", + "yogurt.ogg": "un yaourt", + "yum.ogg": "miam-miam", + "zebra.ogg": "un zèbre", + "zipper.ogg": "une fermeture éclair", + "zoo.ogg": "un zoo", + "U0030.ogg": "zéro", + "U0031.ogg": "un", + "U0032.ogg": "deux", + "U0033.ogg": "trois", + "U0034.ogg": "quatre", + "U0035.ogg": "cinq", + "U0036.ogg": "six", + "U0037.ogg": "sept", + "U0038.ogg": "huit", + "U0039.ogg": "neuf", + "10.ogg": "dix" +} diff --git a/src/activities/lang/resource/content-gd.json b/src/activities/lang/resource/content-gd.json new file mode 100644 index 000000000..e88954f44 --- /dev/null +++ b/src/activities/lang/resource/content-gd.json @@ -0,0 +1,576 @@ +{ + "bee.ogg": "seillean beag", + "alligator.ogg": "ailigeutair mòr", + "anchor.ogg": "acair mhòr", + "angel.ogg": "aingeal bheag", + "animal.ogg": "beathaichean fiadhaich", + "ate.ogg": "dh'ith i a leòr", + "athlete.ogg": "ruithear math", + "back.ogg": "druim goirt", + "badge.ogg": "bonn-cuimhne mòr", + "badge.ogg": "saighdear mòr", + "bag.ogg": "baga mòr", + "bait.ogg": "baoit bheò", + "bake.ogg": "fuineadh", + "balance.ogg": "meidh bheag", + "ball.ogg": "bàla mòr", + "ballet.ogg": "dannsair math", + "bank.ogg": "banca mòr", + "banker.ogg": "bancair mòr", + "bark.ogg": "a' tabhann", + "barn.ogg": "sabhal mòr", + "bat.ogg": "ialtag bheag", + "bath.ogg": "amar teth", + "bay.ogg": "bàgh beag", + "beach.ogg": "tràigh mhòr", + "bead.ogg": "builgean mòr", + "bed.ogg": "leabaidh bheag", + "beetle.ogg": "daolag mhòr", + "beg.ogg": "a' guidhe", + "bench.ogg": "being bheag", + "bib.ogg": "uchdan gorm", + "big.ogg": "mòr", + "bike.ogg": "baidhsagal beag", + "bird.ogg": "eun donn", + "bit.ogg": "balgam beag", + "bite.ogg": "a' toirt greim às", + "black.ogg": "dath dubh", + "blind.ogg": "fear dall", + "blink.ogg": "priobadh na sùla", + "block.ogg": "bloca gorm", + "blond.ogg": "falt bàn", + "blue.ogg": "dath gorm", + "board.ogg": "bòrd beag", + "boat.ogg": "ràmhach beag", + "boil.ogg": "a' goil", + "bomb.ogg": "boma mòr", + "bone.ogg": "cnàimh mòr", + "book.ogg": "leabhar mòr", + "box.ogg": "bogsa beag", + "boy.ogg": "fireannach beag", + "braid.ogg": "dual fada", + "brain.ogg": "eanchainn mhòr", + "branch.ogg": "geug bheag", + "bread.ogg": "aran math", + "break.ogg": "cridhe briste", + "brick.ogg": "breigean mòra", + "bride.ogg": "bean bainnse", + "bridge.ogg": "drochaid bheag", + "bright.ogg": "rionnag shoilleir", + "brother.ogg": "bràthair beag", + "brown.ogg": "dath donn", + "brush.ogg": "bruis mhòr", + "bud.ogg": "gucag bheag", + "bug.ogg": "biastag bheag", + "bump.ogg": "cnap mòr", + "bun.ogg": "rola beag", + "bush.ogg": "preas mòr", + "cabin.ogg": "bothan beag", + "cage.ogg": "cèidse mhòr", + "cake.ogg": "cèic mhòr", + "call.ogg": "a' cur fòn", + "camel.ogg": "càmhal mòr", + "camp.ogg": "a' campadh", + "can.ogg": "canaichean beaga", + "candle.ogg": "coinneal bheag", + "candy.ogg": "siùcar beag ", + "cane.ogg": "bata mòr", + "canoe.ogg": "curach bheag", + "cap.ogg": "bonaid bheag", + "cape.ogg": "guailleachan beag", + "car.ogg": "càr beag", + "card.ogg": "cairt mhòr", + "carrot.ogg": "curran mòr", + "cart.ogg": "troilidh", + "cash.ogg": "airgead mòr", + "castle.ogg": "caisteal mòr", + "cat.ogg": "cat beag", + "catch.ogg": "ag iasgach", + "cave.ogg": "uamh mhòr", + "centipede.ogg": "ceud-chasach fada", + "chair.ogg": "sèithear beag", + "chalk.ogg": "cailc gheal", + "chat.ogg": "a' cabadaich", + "cheer.ogg": "a' toirt misneachd", + "cheese.ogg": "càise mhath", + "cherry.ogg": "siris mhath", + "chest.ogg": "ciste mhòr", + "chick.ogg": "isean beag", + "chicken.ogg": "cearc bheag", + "chief.ogg": "ceannard mòr", + "child.ogg": "duine-cloinne beag", + "chimp.ogg": "muncaidh beag", + "chin.ogg": "smiogaid mòr", + "chocolate.ogg": "seòclaid mhath", + "chop.ogg": "a' gearradh", + "clam.ogg": "creachann mòr", + "clap.ogg": "a' bualadh basan", + "class.ogg": "clas math", + "claw.ogg": "cròg mòr", + "clay.ogg": "criadh dhonn", + "clean.ogg": "a' nighe d' fhalt", + "cliff.ogg": "bearradh mòr", + "climb.ogg": "a' streap", + "clock.ogg": "cleoc mòr", + "cloth.ogg": "aodach buidhe", + "cloud.ogg": "neul beag", + "clown.ogg": "amadan mòr", + "coach.ogg": "còidse mhath", + "coat.ogg": "còta mòr", + "coin.ogg": "bonn beag", + "cold.ogg": "fuar", + "color.ogg": "dathan", + "comb.ogg": "cìr mhòr", + "cone.ogg": "còn mòr", + "cook.ogg": "còcaire math", + "cookie.ogg": "briosgaid mhòr", + "corn.ogg": "dias mhòr", + "couch.ogg": "langasaid mhòr", + "cow.ogg": "bò bheag", + "cowboy.ogg": "gille-cruidh beag", + "crab.ogg": "crùbag mhòr", + "crawl.ogg": "falbh air mhàgaran", + "crazy.ogg": "duine craicte", + "crib.ogg": "cot mhòr", + "croak.ogg": "a' gnàgail", + "crocodile.ogg": "crogall mòr", + "crow.ogg": "feannag bheag", + "crown.ogg": "crùn mòr", + "crumb.ogg": "criomag bheag", + "crust.ogg": "cùlan donn", + "cry.ogg": "a' gal", + "cube.ogg": "ciùb beag", + "cucumber.ogg": "cularan beag", + "cut.ogg": "siosar beag", + "cute.ogg": "snog", + "cyclist.ogg": "rothaiche mòr", + "dad.ogg": "dadaidh mòr", + "dance.ogg": "a' dannsadh", + "danger.ogg": "cunnart mòr", + "den.ogg": "saobhaidh mòr", + "desk.ogg": "deasg beag", + "dig.ogg": "a' cladhach", + "dirt.ogg": "ùir dhorch", + "dirty.ogg": "balach salach", + "dish.ogg": "soitheach beag", + "dive.ogg": "a' daoibhigeadh", + "dog.ogg": "cù beag", + "door.ogg": "doras mòr", + "dot.ogg": "dotag bheag", + "dragon.ogg": "dràgon mòr", + "drank.ogg": "ag òl", + "draw.ogg": "a' dèanamh dealbh", + "dream.ogg": "aisling mhath", + "dress.ogg": "dreasa bheag", + "drink.ogg": "deoch bhlàth", + "drive.ogg": "a' draibheadh", + "drool.ogg": "a' sileadh sglongaid", + "drum.ogg": "druma mhòr", + "dry.ogg": "aodach tioram", + "duck.ogg": "tunnag bheag", + "dune.ogg": "dùn-gainmhich mòr", + "ear.ogg": "cluas bheag", + "earth.ogg": "an talamh", + "eat.ogg": "ag ithe", + "empty.ogg": "cana falamh", + "explore.ogg": "a' rannsachadh", + "face.ogg": "aodann cruinn", + "fair.ogg": "faidhir bheag", + "fan.ogg": "gaotharan beag", + "farm.ogg": "tuathanas beag", + "fat.ogg": "gille reamhar", + "feast.ogg": "biadh math", + "feet.ogg": "cas bheag", + "fell.ogg": "thuit e", + "fetch.ogg": "faigh am pàipear", + "fin.ogg": "ite mhòr", + "find.ogg": "a' lorg", + "fire.ogg": "teine mòr", + "fish.ogg": "iasg beag", + "fisher.ogg": "iasgair math", + "fist.ogg": "dòrn mòr", + "five.ogg": "a còig", + "flag.ogg": "bratach bheag", + "flame.ogg": "lasair mhòr", + "flash.ogg": "leus mòr", + "flat.ogg": "flataichean beaga", + "flies.ogg": "cuileag bheag", + "float.ogg": "air fleòd", + "flour.ogg": "flùr geal", + "flower.ogg": "flùr beag", + "flute.ogg": "fìdeag bheag", + "fly.ogg": "ag itealaich", + "food.ogg": "biadh luath", + "foot.ogg": "cas mhòr", + "fork.ogg": "forca bheag", + "fountain.ogg": "fuaran beag", + "fox.ogg": "madadh-ruadh beag", + "freeze.ogg": "reòthadh mòr", + "friend.ogg": "caraid math", + "frog.ogg": "losgann beag", + "front.ogg": "air a bheulaibh", + "frown.ogg": "tha drèin oirre", + "fruit.ogg": "measan milis", + "fudge.ogg": "tofaidh math", + "full.ogg": "gloine làn", + "fun.ogg": "tha plòigh a' dol", + "fur.ogg": "bian blàth", + "game.ogg": "geama beag", + "garden.ogg": "gàrradh beag", + "gem.ogg": "seud mòr", + "giant.ogg": "famhair mòr", + "gift.ogg": "prèasant beag", + "giraffe.ogg": "sioraf mòr", + "girl.ogg": "caileag bheag", + "glass.ogg": "gloine mhòr", + "glove.ogg": "miotagan blàtha", + "glue.ogg": "glaodh math", + "gnome.ogg": "luchraban beag", + "goat.ogg": "gobhar bàn", + "grass.ogg": "feur fada", + "grave.ogg": "uaigh bheag", + "gray.ogg": "dath liath", + "green.ogg": "dath uaine", + "grin.ogg": "fiamh-ghàire mòr", + "ground.ogg": "geadag bheag", + "growl.ogg": "a' toirt gnòdhan", + "gum.ogg": "bìth milis", + "hair.ogg": "falt ruadh", + "hand.ogg": "làmh mhòr", + "happy.ogg": "toilichte", + "hat.ogg": "ad mhòr", + "hatch.ogg": "isean 'ga ghur", + "hay.ogg": "feur tioram", + "head.ogg": "ceann beag", + "hear.ogg": "a' cluinntinn", + "heat.ogg": "blàth", + "hedge.ogg": "callaid bheag", + "hen.ogg": "cearc mhòr", + "herd.ogg": "treud de chaoraich", + "high.ogg": "àrd", + "hike.ogg": "a' coiseachd", + "hip.ogg": "cruachann mhòr", + "hit.ogg": "a' bualadh a chèile", + "hole.ogg": "toll beag", + "home.ogg": "dachaigh bheag", + "hook.ogg": "dubhan mòr", + "hop.ogg": "a' bocadaich", + "hose.ogg": "pìob-uisge mhòr", + "hot.ogg": "teth", + "hound.ogg": "cù-seilg beag", + "howl.ogg": "ag ulfhairt", + "hug.ogg": "a' glacadh a chèile gu teann", + "huge.ogg": "anabarrach mòr", + "hunter.ogg": "sealgair mòr", + "hut.ogg": "bothan mòr", + "ice.ogg": "deigh fhuar", + "ink.ogg": "inc phurpaidh", + "jewel.ogg": "seud beag", + "jog.ogg": "a' jogadh", + "judge.ogg": "britheamh mòr", + "juice.ogg": "sùgh fuar", + "jump.ogg": "a' leumadh", + "kite.ogg": "itealag bheag", + "knee.ogg": "glùn bheag", + "kneel.ogg": "tha e a' cromadh air a ghlùinean", + "knife.ogg": "sgian bheag", + "knight.ogg": "ridir mòr", + "knit.ogg": "a' fighe", + "knot.ogg": "snaidhm mòr", + "lad.ogg": "balach beag", + "lake.ogg": "loch beag", + "lamb.ogg": "uan beag", + "lamp.ogg": "lampa mòr", + "land.ogg": "talamh fliuch", + "lane.ogg": "rathad beag", + "lap.ogg": "ann an uchd na seanmhar", + "lawn.ogg": "faiche bheag", + "ledge.ogg": "stalla beag", + "left.ogg": "clì", + "lick.ogg": "ag imlich", + "lid.ogg": "failcean mòr", + "lift.ogg": "a' togail", + "light.ogg": "solas math", + "lime.ogg": "liomaideag shearbh", + "line.ogg": "loidhne ghorm", + "link.ogg": "dul beag", + "lip.ogg": "bilean pinc", + "liquid.ogg": "boinne beag", + "log.ogg": "connadh tioram", + "look.ogg": "a' coimhead", + "lunch.ogg": "lòn math", + "mad.ogg": "air a' chaothach", + "magic.ogg": "draoidheachd mhath", + "mane.ogg": "muing mhòr", + "map.ogg": "mapa beag", + "mask.ogg": "aodannan beag", + "mat.ogg": "plàta beag", + "match.ogg": "lasadan beag", + "mate.ogg": "companach math", + "meet.ogg": "a' coinneachadh ri chèile", + "men.ogg": "daoine", + "mice.ogg": "dà luchag bheag", + "mole.ogg": "famh dhubh", + "mop.ogg": "mapaid mhòr", + "mosquito.ogg": "meanbh-chuileag mhòr", + "mouth.ogg": "beul mòr", + "mud.ogg": "poll salach", + "mug.ogg": "muga mòr", + "mule.ogg": "leth-asal beag", + "mushroom.ogg": "agairg nan cuileagan", + "nap.ogg": "norrag bheag", + "neck.ogg": "amhaich thana", + "nest.ogg": "nead beag", + "net.ogg": "lìon beag", + "night.ogg": "oidhche dhorch", + "nose.ogg": "sròn mhòr", + "nut.ogg": "cnò mhòr", + "oar.ogg": "dà ràmh mòr", + "ocean.ogg": "cuan mòr", + "on.ogg": "air", + "one.ogg": "a h-aon", + "orange.ogg": "dath orains", + "orange-color.ogg": "orainsear mòr", + "owl.ogg": "cailleach-oidhche bheag", + "ox.ogg": "tarbh mòr", + "page.ogg": "duilleag bheag", + "pair.ogg": "paidhir bhrògan", + "pal.ogg": "clann bheaga", + "pan.ogg": "aghann bheag", + "patch.ogg": "tuthag bheag", + "path.ogg": "slighe bheag", + "paw.ogg": "spòg mhòr", + "peach.ogg": "peitseag mhòr", + "peck.ogg": "a' sgobadh", + "pen.ogg": "peann beag", + "pencil.ogg": "peansail mòr", + "pet.ogg": "peata beag", + "picture.ogg": "dealbh beag", + "pig.ogg": "muc bheag", + "pine.ogg": "giuthas mòr", + "pink.ogg": "dath pinc", + "plane.ogg": "plèana beag", + "plant.ogg": "lus beag", + "plate.ogg": "truinnsear mòr", + "play.ogg": "a' cluich", + "plow.ogg": "a' treabhadh", + "plum.ogg": "plumas milis", + "pole.ogg": "pòla beag", + "pool.ogg": "amar-snàimh beag", + "pop.ogg": "popcorn", + "pope.ogg": "am pàpa", + "pot.ogg": "poit bheag", + "pounce.ogg": "a' teumadh", + "pretty.ogg": "bòidheach", + "price.ogg": "prìs mhòr", + "prince.ogg": "prionnsa beag", + "princess.ogg": "bana-phrionnsa bheag", + "prize.ogg": "duais mhòr", + "pug.ogg": "cù-smutach", + "puppy.ogg": "cuilean beag", + "quarrel.ogg": "ag argamaid", + "queen.ogg": "bànrigh mhòr", + "question.ogg": "ceist mhòr", + "quilt.ogg": "cuibhrig mhòr", + "quiz.ogg": "co-fharpais cheist", + "rag.ogg": "luideag bheag", + "rage.ogg": "tha fearg air", + "rake.ogg": "ràcan mòr", + "ramp.ogg": "rampa beag", + "ran.ogg": "a' ruith", + "rat.ogg": "radan mòr", + "read.ogg": "a' leughadh", + "red.ogg": "dath dearg", + "rice.ogg": "rìs geal", + "ride.ogg": "a' falbh air baidhsagal", + "right.ogg": "deas", + "rip.ogg": "a' sracadh", + "rock.ogg": "clach bheag", + "roof.ogg": "mullach mòr", + "rope.ogg": "ròpa fada", + "rose.ogg": "ròs mòr", + "round.ogg": "cruinn", + "royal.ogg": "rìgh mòr", + "rug.ogg": "ruga beag", + "run.ogg": "a' rèiseadh", + "sad.ogg": "brònach", + "sail.ogg": "seòl beag", + "sand.ogg": "gainmheach bog", + "sandwich.ogg": "ceapaire mòr", + "sat.ogg": "casruisgte", + "sauce.ogg": "sabhs dearg", + "scale.ogg": "sgèile beag", + "scar.ogg": "eàrra mhòr", + "scared.ogg": "tha an t-eagal air", + "scarf.ogg": "sgarfa mhòr", + "school.ogg": "sgoil mhòr", + "science.ogg": "saidheans mòr", + "scratch.ogg": "a' sgrìobadh", + "scream.ogg": "a' leigeil èigh", + "screw.ogg": "sgriubha mhòr", + "scribble.ogg": "a' sgrochladh", + "seat.ogg": "suidheachan mòr", + "see.ogg": "a' faicinn", + "seed.ogg": "sìol beag", + "shake.ogg": "a' crathadh", + "shark.ogg": "cearban mòr", + "shed.ogg": "seada beag", + "shelf.ogg": "sgeilp bheag", + "shell.ogg": "slige mhòr", + "ship.ogg": "bàta beag", + "shirt.ogg": "lèine bheag", + "shoe.ogg": "bròg mhòr", + "shop.ogg": "bùth beag nan dèideagan", + "shore.ogg": "tràigh bheag", + "short.ogg": "goirid", + "shower.ogg": "frasair mòr", + "shrimp.ogg": "muasgan-caol", + "shrub.ogg": "tuba bheag", + "shut.ogg": "dùinte", + "sick.ogg": "tinn", + "sign.ogg": "sanas mòr", + "sing.ogg": "a' seinn", + "sink.ogg": "dòirteal beag", + "sip.ogg": "a' gabhail drùthag", + "sit.ogg": "na shuidhe", + "skate.ogg": "a' falbh air spèileabord ", + "ski.ogg": "a' sgìtheadh", + "skin.ogg": "craiceann bog", + "skirt.ogg": "sgiort bheag", + "skunk.ogg": "tùdair beag", + "sky.ogg": "turadh beag", + "sled.ogg": "càrn beag", + "sleep.ogg": "na chadal", + "sleeve.ogg": "muilcheann goirid", + "sleigh.ogg": "slaodan mòr", + "slide.ogg": "sleamhnag bheag", + "slime.ogg": "snàmhas", + "slope.ogg": "leathad mòr", + "small.ogg": "beag", + "smell.ogg": "fàileadh math", + "smile.ogg": "gàire mhòr", + "smock.ogg": "na luideagan", + "smoke.ogg": "ceò beag", + "smooch.ogg": "a' pògadh", + "snack.ogg": "biadh beag", + "snail.ogg": "seilcheag bheag", + "snake.ogg": "nathair mhòr", + "sneaker.ogg": "bròg-spòrs", + "sniff.ogg": "a' snòtadh", + "snow.ogg": "sneachd mòr", + "sock.ogg": "stocainn gheal", + "spaghetti.ogg": "spaghetti", + "spear.ogg": "sleagh mhòr", + "spider.ogg": "damhan-allaidh mòr", + "spike.ogg": "gràineag bheag", + "spill.ogg": "a' dòrtadh", + "splash.ogg": "a' plubadaich", + "splatter.ogg": "steall beag", + "sponge.ogg": "spong mòr", + "spoon.ogg": "spàin mhòr", + "sport.ogg": "spòrs", + "spot.ogg": "aodach breac", + "spray.ogg": "a' stealladh", + "spread.ogg": "a' liacradh", + "spring.ogg": "sprionga mòr", + "sprinkle.ogg": "craiteachan beag", + "square.ogg": "ceàrnagach", + "squash.ogg": "peapag chrom", + "squat.ogg": "a' dèanamh gurraban", + "squid.ogg": "gibearnach beag", + "squirrel.ogg": "feòrag bheag", + "squirt.ogg": "botal-steallaidh", + "stack.ogg": "cruach mhòr", + "stage.ogg": "àrd-ùrlar beag", + "stamp.ogg": "stampa beag", + "stand.ogg": "na sheasamh", + "star.ogg": "rionnag bheag", + "stare.ogg": "a' dùr-choimhead", + "starfish.ogg": "crosgag bheag", + "stem.ogg": "gas bheag", + "stew.ogg": "stiubha math", + "stick.ogg": "maide beag", + "sting.ogg": "gath beag", + "stone.ogg": "dòirneag bheag", + "stop.ogg": "stad ort", + "store.ogg": "bùth beag", + "stove.ogg": "stòbha beag", + "straight.ogg": "dìreach", + "straw.ogg": "stràbh beag", + "strawberry.ogg": "sùbh-làir milis", + "stream.ogg": "allt beag", + "street.ogg": "sràid mhòr", + "stretch.ogg": "a' sìneadh", + "string.ogg": "sreang fhada", + "stripe.ogg": "stiall ghorm", + "strong.ogg": "làidir", + "study.ogg": "ag ionnsachadh", + "stump.ogg": "stoc mòr", + "suit.ogg": "deise ghorm", + "summer.ogg": "samhradh math", + "sun.ogg": "grian bhlàth", + "swan.ogg": "eala bhàn", + "sweat.ogg": "a' cur fallas", + "swim.ogg": "a' snàmh", + "tag.ogg": "taga beag", + "tall.ogg": "àrd", + "teach.ogg": "a' teagasg", + "teacher.ogg": "tidsear math", + "tear.ogg": "a' reubadh", + "teeth.ogg": "fiaclan geala", + "ten.ogg": "a deich", + "thick.ogg": "tiugh", + "thigh.ogg": "leis thana", + "think.ogg": "a' smaoineachadh", + "thread.ogg": "snàithlean pinc", + "three.ogg": "a trì", + "throat.ogg": "sgòrnan goirt", + "throw.ogg": "a' tilgeil", + "tick.ogg": "feursad beag", + "time.ogg": "an t-àm", + "tired.ogg": "sgìth", + "toilet.ogg": "an taigh-beag", + "tool.ogg": "acainnean", + "top.ogg": "am mullach", + "torch.ogg": "leus gorm", + "touch.ogg": "a' beantainn", + "towel.ogg": "searbhadair buidhe", + "toy.ogg": "dèideag bheag", + "trail.ogg": "slighe thana", + "train.ogg": "trèan beag", + "trap.ogg": "ribe beag", + "trash.ogg": "sgudal salach", + "tray.ogg": "treidhe bheag", + "treat.ogg": "siùcaran", + "tree.ogg": "craobh mhòr", + "truck.ogg": "làraidh dhearg", + "tube.ogg": "beul-dath dearg", + "tune.ogg": "fonn math", + "two.ogg": "a dhà", + "under.ogg": "foidhe", + "van.ogg": "bhana beag", + "vet.ogg": "dotair math", + "wag.ogg": "a' crathadh earball", + "walk.ogg": "a' seasamh air leth-chas", + "wash.ogg": "a' gabhail amar", + "watch.ogg": "uaireadair beag", + "water.ogg": "uisge fuar", + "wedge.ogg": "gèinn mòr", + "wet.ogg": "fliuch", + "wheat.ogg": "cruithneachd mhath", + "wheel.ogg": "cuibhle chruinn", + "whisk.ogg": "sguabag bheag", + "whisper.ogg": "a' cagair", + "white.ogg": "dath geal", + "wig.ogg": "falt fuadain", + "win.ogg": "a' buannachadh", + "wind.ogg": "gaoth mhòr", + "wing.ogg": "sgiath bheag", + "wood.ogg": "dèile fhada", + "wrench.ogg": "toinnear beag", + "wrist.ogg": "caol an dùirn", + "write.ogg": "a' sgrìobhadh", + "yarn.ogg": "iarna bheag", + "yum.ogg": "blasta", + "zoo.ogg": "sutha beag" +} diff --git a/src/activities/lang/resource/content-pt_BR.json b/src/activities/lang/resource/content-pt_BR.json new file mode 100644 index 000000000..20355d920 --- /dev/null +++ b/src/activities/lang/resource/content-pt_BR.json @@ -0,0 +1,572 @@ +{ + "ate.ogg": "comer", + "bake.ogg": "cozinhar", + "bark.ogg": "latir", + "beg.ogg": "implorar", + "bite.ogg": "morder", + "blink.ogg": "piscar", + "boil.ogg": "ferver", + "break.ogg": "partir", + "call.ogg": "ligar", + "catch.ogg": "pegar", + "centipede.ogg": "centopeia", + "chat.ogg": "conversar", + "chop.ogg": "cortar", + "clap.ogg": "palma", + "clean.ogg": "limpar", + "crawl.ogg": "engatinhar", + "croak.ogg": "coaxar", + "cry.ogg": "chorar", + "cut.ogg": "cortar", + "dig.ogg": "escavar", + "drank.ogg": "beber", + "draw.ogg": "desenhar", + "dream.ogg": "sonhar", + "drive.ogg": "dirigir", + "drool.ogg": "babar", + "dry.ogg": "secar", + "eat.ogg": "comer", + "fell.ogg": "cair", + "fetch.ogg": "buscar", + "find.ogg": "encontrar", + "float.ogg": "boiar", + "fly.ogg": "voar", + "freeze.ogg": "congelar", + "growl.ogg": "rosnar", + "hatch.ogg": "chocar", + "hear.ogg": "escutar", + "howl.ogg": "uivar", + "hug.ogg": "abraçar", + "jump.ogg": "pular", + "kneel.ogg": "ajoelhar", + "knit.ogg": "tricotar", + "lick.ogg": "lamber", + "look.ogg": "olhar", + "meet.ogg": "encontrar", + "nap.ogg": "cochilar", + "peck.ogg": "bicar", + "play.ogg": "brincar", + "plow.ogg": "arar", + "pounce.ogg": "atacar", + "quarrel.ogg": "discutir", + "read.ogg": "ler", + "rip.ogg": "arrancar", + "run.ogg": "correr", + "sat.ogg": "sentar", + "scared.ogg": "assustar", + "scratch.ogg": "arranhar", + "scream.ogg": "gritar", + "scribble.ogg": "rabiscar", + "see.ogg": "observar", + "shake.ogg": "sacudir", + "sing.ogg": "cantar", + "sip.ogg": "sorver", + "sit.ogg": "sentar", + "sleep.ogg": "dormir", + "smell.ogg": "cheirar", + "smooch.ogg": "beijar", + "sniff.ogg": "farejar", + "spill.ogg": "derramar", + "splash.ogg": "respingar", + "spray.ogg": "borrifar", + "spread.ogg": "espalhar", + "spring.ogg": "pular", + "squat.ogg": "agachar", + "sting.ogg": "ferroar", + "stop.ogg": "parar", + "stretch.ogg": "alongar", + "study.ogg": "estudar", + "teach.ogg": "ensinar", + "tear.ogg": "rasgar", + "think.ogg": "pensar", + "touch.ogg": "tocar", + "wag.ogg": "abanar", + "walk.ogg": "andar", + "wash.ogg": "lavar", + "whisper.ogg": "cochichar", + "win.ogg": "ganhar", + "back.ogg": "costas", + "braid.ogg": "trança", + "brain.ogg": "cérebro", + "bump.ogg": "batida", + "chin.ogg": "queixo", + "ear.ogg": "orelha", + "face.ogg": "face", + "feet.ogg": "pés", + "fist.ogg": "punho", + "foot.ogg": "pé", + "grin.ogg": "sorriso", + "hair.ogg": "cabelo", + "hand.ogg": "mão", + "head.ogg": "cabeça", + "hip.ogg": "quadril", + "knee.ogg": "joelho", + "lap.ogg": "colo", + "lip.ogg": "lábio", + "mouth.ogg": "boca", + "neck.ogg": "pescoço", + "nose.ogg": "nariz", + "scar.ogg": "cicatriz", + "skin.ogg": "pele", + "stare.ogg": "olhar", + "sweat.ogg": "suor", + "teeth.ogg": "dentes", + "thigh.ogg": "coxa", + "throat.ogg": "garganta", + "wrist.ogg": "pulso", + "bib.ogg": "babador", + "cap.ogg": "boné", + "cape.ogg": "capa", + "coat.ogg": "casaco", + "dress.ogg": "vestido", + "glove.ogg": "luva", + "hat.ogg": "chapéu", + "patch.ogg": "remendo", + "scarf.ogg": "cachecol", + "shirt.ogg": "camisa", + "shoe.ogg": "sapato", + "short.ogg": "short", + "skirt.ogg": "saia", + "sleeve.ogg": "manga", + "smock.ogg": "jaleco", + "sneaker.ogg": "tênis", + "sock.ogg": "meia", + "suit.ogg": "terno", + "zoo.ogg": "zoológico", + "danger.ogg": "perigo", + "frown.ogg": "franzida", + "fun.ogg": "diversão", + "mad.ogg": "furioso", + "rage.ogg": "raiva", + "sad.ogg": "tristeza", + "smile.ogg": "sorriso", + "whisk.ogg": "batedor", + "chief.ogg": "cacique", + "clown.ogg": "palhaço", + "coach.ogg": "treinador", + "cowboy.ogg": "vaqueiro", + "hunter.ogg": "caçador", + "judge.ogg": "juiz", + "knight.ogg": "cavaleiro", + "lad.ogg": "rapaz", + "pope.ogg": "papa", + "prince.ogg": "príncipe", + "princess.ogg": "princesa", + "queen.ogg": "rainha", + "teacher.ogg": "professor", + "vet.ogg": "veterinário", + "boy.ogg": "menino", + "bride.ogg": "noiva", + "brother.ogg": "irmão", + "child.ogg": "criança", + "dad.ogg": "pai", + "friend.ogg": "amigo", + "girl.ogg": "menina", + "gnome.ogg": "gnomo", + "mate.ogg": "colega", + "men.ogg": "homens", + "pal.ogg": "camarada", + "athlete.ogg": "atleta", + "ballet.ogg": "balé", + "camp.ogg": "acampamento", + "cheer.ogg": "torcer", + "climb.ogg": "escalar", + "dance.ogg": "dança", + "dive.ogg": "mergulho", + "explore.ogg": "explorar", + "hike.ogg": "caminhar", + "hit.ogg": "golpear", + "hop.ogg": "saltar", + "jog.ogg": "correr", + "lift.ogg": "levantar", + "ran.ogg": "chegada", + "ride.ogg": "pedalar", + "skate.ogg": "patinar", + "ski.ogg": "esquiar", + "sport.ogg": "esporte", + "swim.ogg": "nadar", + "write.ogg": "escrever", + "alligator.ogg": "jacaré", + "animal.ogg": "animais", + "bait.ogg": "isca", + "bat.ogg": "morcego", + "bee.ogg": "abelha", + "beetle.ogg": "besouro", + "bird.ogg": "pássaro", + "bug.ogg": "inseto", + "camel.ogg": "camelo", + "cat.ogg": "gato", + "chick.ogg": "pintinho", + "chicken.ogg": "frango", + "chimp.ogg": "chimpanzé", + "clam.ogg": "molusco", + "claw.ogg": "garra", + "cow.ogg": "vaca", + "crab.ogg": "caranguejo", + "crocodile.ogg": "crocodilo", + "crow.ogg": "corvo", + "den.ogg": "toca", + "dog.ogg": "cachorro", + "dragon.ogg": "dragão", + "duck.ogg": "pato", + "fin.ogg": "barbatana", + "fish.ogg": "peixe", + "flies.ogg": "mosca", + "fox.ogg": "raposa", + "frog.ogg": "sapo", + "fur.ogg": "pêlo", + "giraffe.ogg": "girafa", + "goat.ogg": "cabra", + "hen.ogg": "galinha", + "herd.ogg": "rebanho", + "hound.ogg": "cão de caça", + "lamb.ogg": "cordeiro", + "mane.ogg": "juba", + "mice.ogg": "ratas", + "mole.ogg": "toupeira", + "mosquito.ogg": "mosquito", + "mule.ogg": "mula", + "owl.ogg": "coruja", + "ox.ogg": "boi", + "paw.ogg": "pegada", + "pet.ogg": "animal de estimação", + "pig.ogg": "porco", + "pug.ogg": "pug", + "puppy.ogg": "cachorro", + "rat.ogg": "rato", + "shark.ogg": "tubarão", + "shell.ogg": "concha", + "shrimp.ogg": "camarão", + "skunk.ogg": "gambá", + "slime.ogg": "muco", + "snail.ogg": "caracol", + "snake.ogg": "cobra", + "spider.ogg": "aranha", + "spike.ogg": "porco-espinho", + "squid.ogg": "lula", + "squirrel.ogg": "esquilo", + "starfish.ogg": "estrela do mar", + "swan.ogg": "cisne", + "tick.ogg": "carrapato", + "wing.ogg": "asa", + "yum.ogg": "delícia", + "bone.ogg": "osso", + "bread.ogg": "pão", + "bun.ogg": "brioche", + "cake.ogg": "bolo", + "candy.ogg": "doce", + "cheese.ogg": "queijo", + "chocolate.ogg": "chocolate", + "cookie.ogg": "biscoito", + "crumb.ogg": "migalha", + "crust.ogg": "casca", + "drink.ogg": "bebida", + "feast.ogg": "banquete", + "flour.ogg": "farinha", + "food.ogg": "comida", + "fudge.ogg": "doce de chocolate", + "gum.ogg": "chiclete", + "ice.ogg": "gelo", + "juice.ogg": "suco", + "lunch.ogg": "lanche", + "pop.ogg": "pipoca", + "rice.ogg": "arroz", + "sandwich.ogg": "sanduíche", + "sauce.ogg": "molho", + "snack.ogg": "aperitivo", + "spaghetti.ogg": "espaguete", + "sprinkle.ogg": "granulado", + "stew.ogg": "ensopado", + "treat.ogg": "doces", + "cherry.ogg": "cereja", + "fruit.ogg": "fruta", + "lime.ogg": "limão", + "orange.ogg": "laranja", + "peach.ogg": "pêssego", + "plum.ogg": "ameixa", + "bay.ogg": "baía", + "beach.ogg": "praia", + "cave.ogg": "caverna", + "cliff.ogg": "penhasco", + "cloud.ogg": "nuvem", + "cold.ogg": "frio", + "dirt.ogg": "terra", + "dune.ogg": "duna", + "earth.ogg": "mundo", + "fire.ogg": "fogo", + "flame.ogg": "flama", + "garden.ogg": "jardim", + "gem.ogg": "joia", + "ground.ogg": "solo", + "heat.ogg": "calor", + "hole.ogg": "buraco", + "lake.ogg": "lago", + "land.ogg": "terreno", + "ledge.ogg": "borda", + "mud.ogg": "lama", + "night.ogg": "noite", + "ocean.ogg": "oceano", + "path.ogg": "caminho", + "rock.ogg": "rocha", + "sand.ogg": "areia", + "shore.ogg": "costa", + "sky.ogg": "céu", + "slope.ogg": "declive", + "smoke.ogg": "fumaça", + "snow.ogg": "neve", + "star.ogg": "estrela", + "stone.ogg": "pedra", + "stream.ogg": "córrego", + "summer.ogg": "verão", + "sun.ogg": "sol", + "time.ogg": "hora", + "top.ogg": "topo", + "trail.ogg": "trilha", + "water.ogg": "água", + "wind.ogg": "vento", + "yarn.ogg": "fio", + "angel.ogg": "anjo", + "bit.ogg": "mordida", + "class.ogg": "aula", + "price.ogg": "preço", + "question.ogg": "pergunta", + "quiz.ogg": "enigma", + "science.ogg": "ciência", + "splatter.ogg": "mancha", + "tune.ogg": "melodia", + "branch.ogg": "ramo", + "bud.ogg": "broto", + "bush.ogg": "arbusto", + "flower.ogg": "flor", + "grass.ogg": "grama", + "hay.ogg": "feno", + "hedge.ogg": "cerca viva", + "lawn.ogg": "gramado", + "pine.ogg": "pinheiro", + "plant.ogg": "planta", + "rose.ogg": "rosa", + "seed.ogg": "semente", + "shrub.ogg": "arbusto", + "stem.ogg": "caule", + "stick.ogg": "galho", + "stump.ogg": "tronco", + "tree.ogg": "árvore", + "carrot.ogg": "cenoura", + "corn.ogg": "milho", + "cucumber.ogg": "pepino", + "mushroom.ogg": "cogumelo", + "nut.ogg": "noz", + "squash.ogg": "abóbora", + "bank.ogg": "banco", + "barn.ogg": "celeiro", + "bridge.ogg": "ponte", + "cabin.ogg": "cabana", + "cage.ogg": "gaiola", + "castle.ogg": "castelo", + "door.ogg": "porta", + "fair.ogg": "parque ambulante", + "fountain.ogg": "fonte", + "grave.ogg": "lápide", + "home.ogg": "lar", + "hut.ogg": "oca", + "lane.ogg": "pista", + "pool.ogg": "piscina", + "ramp.ogg": "rampa", + "roof.ogg": "telhado", + "school.ogg": "escola", + "shed.ogg": "celeiro", + "shop.ogg": "loja", + "stage.ogg": "palco", + "store.ogg": "mercearia", + "street.ogg": "rua", + "strawberry.ogg": "morango", + "bath.ogg": "banheira", + "bed.ogg": "cama", + "bench.ogg": "banco", + "chair.ogg": "cadeira", + "chest.ogg": "baú", + "couch.ogg": "sofá", + "crib.ogg": "berço", + "desk.ogg": "escrivaninha", + "fan.ogg": "ventilador", + "lamp.ogg": "abajur", + "light.ogg": "luz", + "mat.ogg": "capacho", + "quilt.ogg": "colcha", + "rug.ogg": "tapete", + "seat.ogg": "assento", + "shelf.ogg": "prateleira", + "shower.ogg": "chuveiro", + "sink.ogg": "pia", + "stove.ogg": "fogão", + "toilet.ogg": "banheiro", + "balance.ogg": "balança", + "can.ogg": "lata", + "clock.ogg": "relógio", + "dish.ogg": "prato", + "fork.ogg": "garfo", + "glass.ogg": "copo", + "knife.ogg": "faca", + "lid.ogg": "tampa", + "mop.ogg": "esfregão", + "mug.ogg": "caneca", + "pan.ogg": "frigideira", + "plate.ogg": "prato", + "pot.ogg": "pote", + "scale.ogg": "balança de cozinha", + "sponge.ogg": "esponja", + "spoon.ogg": "colher", + "trash.ogg": "pá de lixo", + "tray.ogg": "bandeja", + "farm.ogg": "fazenda", + "anchor.ogg": "âncora", + "badge.ogg": "insígnia", + "bag.ogg": "mochila", + "ball.ogg": "bola", + "bead.ogg": "bolha", + "block.ogg": "bloco", + "board.ogg": "placa", + "bomb.ogg": "bomba", + "book.ogg": "livro", + "box.ogg": "caixa", + "candle.ogg": "vela", + "cane.ogg": "bengala", + "card.ogg": "cartão", + "cart.ogg": "carrinho", + "cash.ogg": "dinheiro", + "chalk.ogg": "giz", + "clay.ogg": "argila", + "cloth.ogg": "tecido", + "coin.ogg": "moeda", + "comb.ogg": "pente", + "cone.ogg": "cone", + "crown.ogg": "coroa", + "cube.ogg": "cubo", + "drum.ogg": "tambor", + "flag.ogg": "bandeira", + "flute.ogg": "flauta", + "game.ogg": "jogo", + "gift.ogg": "presente", + "glue.ogg": "cola", + "hook.ogg": "gancho", + "hose.ogg": "mangueira", + "ink.ogg": "tinta", + "jewel.ogg": "jóia", + "kite.ogg": "pipa", + "knot.ogg": "nó", + "log.ogg": "tora", + "map.ogg": "mapa", + "mask.ogg": "máscara", + "match.ogg": "fósforo", + "nest.ogg": "ninho", + "net.ogg": "rede", + "oar.ogg": "remo", + "page.ogg": "página", + "pair.ogg": "par", + "pen.ogg": "caneta", + "pencil.ogg": "lápis", + "picture.ogg": "foto", + "pole.ogg": "pau", + "prize.ogg": "prêmio", + "rag.ogg": "flanela", + "rope.ogg": "corda", + "sign.ogg": "placa", + "sleigh.ogg": "trenó", + "slide.ogg": "escorregador", + "squirt.ogg": "borrifador", + "stack.ogg": "pilha de pratos", + "stamp.ogg": "selo", + "straw.ogg": "canudo", + "string.ogg": "fio", + "tag.ogg": "etiqueta", + "thread.ogg": "linha", + "torch.ogg": "tocha", + "towel.ogg": "toalha", + "toy.ogg": "brinquedo", + "trap.ogg": "ratoeira", + "tube.ogg": "batom", + "watch.ogg": "relógio", + "wheel.ogg": "roda", + "wig.ogg": "peruca", + "wood.ogg": "madeira", + "link.ogg": "argola", + "dirty.ogg": "sujo", + "throw.ogg": "arremessar", + "brick.ogg": "tijolo", + "brush.ogg": "pincel", + "flash.ogg": "lanterna", + "rake.ogg": "ciscador", + "screw.ogg": "parafuso", + "spear.ogg": "lança", + "tool.ogg": "ferramenta", + "wedge.ogg": "cunha", + "wrench.ogg": "chave inglesa", + "bike.ogg": "bicicleta", + "boat.ogg": "barco", + "canoe.ogg": "canoa", + "car.ogg": "carro", + "plane.ogg": "avião", + "sail.ogg": "veleiro", + "ship.ogg": "barco", + "sled.ogg": "trenó", + "train.ogg": "trem", + "truck.ogg": "caminhão", + "black.ogg": "preta", + "blue.ogg": "azul", + "brown.ogg": "marrom", + "color.ogg": "cor", + "gray.ogg": "cinza", + "green.ogg": "verde", + "orange-color.ogg": "laranja", + "pink.ogg": "rosa", + "red.ogg": "vermelha", + "white.ogg": "branca", + "five.ogg": "cinco", + "one.ogg": "um", + "ten.ogg": "dez", + "three.ogg": "três", + "two.ogg": "dois", + "van.ogg": "van", + "big.ogg": "grande", + "blind.ogg": "cego", + "blond.ogg": "loira", + "bright.ogg": "brilhante", + "crazy.ogg": "doido", + "cute.ogg": "fofa", + "dark.ogg": "negra", + "dot.ogg": "ponto", + "empty.ogg": "vazia", + "fat.ogg": "gordo", + "flat.ogg": "achatado", + "front.ogg": "frente", + "full.ogg": "cheio", + "giant.ogg": "gigante", + "happy.ogg": "feliz", + "high.ogg": "alto", + "hot.ogg": "quente", + "huge.ogg": "enorme", + "left.ogg": "esquerdo", + "line.ogg": "listrado", + "liquid.ogg": "líquido", + "magic.ogg": "mágica", + "on.ogg": "sobre", + "pretty.ogg": "bonita", + "right.ogg": "direita", + "round.ogg": "redondo", + "royal.ogg": "real", + "shut.ogg": "fechado", + "sick.ogg": "doente", + "small.ogg": "pequeno", + "spot.ogg": "manchado", + "square.ogg": "quadrado", + "stand.ogg": "de pé", + "straight.ogg": "reto", + "stripe.ogg": "listrado", + "strong.ogg": "forte", + "tall.ogg": "alto", + "thick.ogg": "grosso", + "tired.ogg": "cansado", + "under.ogg": "embaixo", + "wet.ogg": "encharcado", + "wheat.ogg": "trigo" +} diff --git a/src/activities/lang/resource/datasetToPo.py b/src/activities/lang/resource/datasetToPo.py new file mode 100755 index 000000000..8d7799b69 --- /dev/null +++ b/src/activities/lang/resource/datasetToPo.py @@ -0,0 +1,83 @@ +#!/usr/bin/python +# +# GCompris - datasetToPo.py +# +# Copyright (C) 2015 Bruno Coudoin +# +# 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 sys +import json +import os +import datetime + +if(len(sys.argv) < 2): + print "Usage: dataSetToPo.py dataset.json [content-fr.json]" + print " The optional argument is used to backport manually created json" + sys.exit(1) + +def loadManualFile(manual): + json_data = open(manual) + manualData = json.load(json_data) + json_data.close() + return manualData + +def getManualTranslation(manualData, key): + if not manualData: + return "" + key = key.split("/")[-1] + try: + return manualData[key] + except: + return "" + +manualData = None +if(len(sys.argv) == 3): + manualData = loadManualFile(sys.argv[2]) + + +dataset = sys.argv[1] +json_data = open(dataset) +data = json.load(json_data) +json_data.close() + +# Get last modification time of data set +modtime = os.path.getmtime(dataset) +modtime_utc = datetime.datetime.utcfromtimestamp(modtime) +modtime_utc_string = modtime_utc.strftime('%Y-%m-%d %H:%M') + '+0000' + +# Header +print 'msgid ""' +print 'msgstr ""' +print '"Project-Id-Version: gcompris_qt\\n"' +print '"POT-Creation-Date: ' + modtime_utc_string + '\\n"' +print '"MIME-Version: 1.0\\n"' +print '"Content-Type: text/plain; charset=UTF-8\\n"' +print '"Content-Transfer-Encoding: 8bit\\n"' +print '' + +for chapter in data: + for lesson in chapter['content']: + for word in lesson['content']: + print "#. " + chapter['name'] + \ + " / " + lesson['name'] + \ + " / " + word['description'] + \ + ": http://gcompris.net/incoming/lang/words.html#" + \ + word['image'].split('/')[-1].split(".")[0] + print "#: " + "http://gcompris.net/incoming/lang/words.html#" + \ + word['image'].split('/')[-1].split(".")[0] + print 'msgctxt "LangWords|"' + print 'msgid "' + word['description'] + '"' + print 'msgstr "' + getManualTranslation(manualData, word['voice']).encode('utf-8') + '"' + print "" diff --git a/src/activities/lang/resource/imageid-bg.svg b/src/activities/lang/resource/imageid-bg.svg new file mode 100644 index 000000000..c12e1f67a --- /dev/null +++ b/src/activities/lang/resource/imageid-bg.svg @@ -0,0 +1,148 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/src/activities/lang/resource/imageid_frame.svg b/src/activities/lang/resource/imageid_frame.svg new file mode 100644 index 000000000..d14531051 --- /dev/null +++ b/src/activities/lang/resource/imageid_frame.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/src/activities/lang/resource/words.json b/src/activities/lang/resource/words.json new file mode 100644 index 000000000..1925a13c9 --- /dev/null +++ b/src/activities/lang/resource/words.json @@ -0,0 +1,5700 @@ +[ + { + "type": "chapter", + "name": "other", + "content": [ + { + "type": "lesson", + "name": "other", + "content": [ + { + "description": "alphabet", + "image": "words/alphabet.png", + "voice": "voices-$CA/$LOCALE/words/alphabet.$CA" + }, + { + "description": "bit", + "image": "words/bit.png", + "voice": "voices-$CA/$LOCALE/words/bit.$CA" + }, + { + "description": "bubble", + "image": "words/bubble.png", + "voice": "voices-$CA/$LOCALE/words/bubble.$CA" + }, + { + "description": "carnival", + "image": "words/carnival.png", + "voice": "voices-$CA/$LOCALE/words/carnival.$CA" + }, + { + "description": "craft", + "image": "words/craft.png", + "voice": "voices-$CA/$LOCALE/words/craft.$CA" + }, + { + "description": "link", + "image": "words/link.png", + "voice": "voices-$CA/$LOCALE/words/link.$CA" + }, + { + "description": "number", + "image": "words/number.png", + "voice": "voices-$CA/$LOCALE/words/number.$CA" + }, + { + "description": "question", + "image": "words/question.png", + "voice": "voices-$CA/$LOCALE/words/question.$CA" + }, + { + "description": "quiz", + "image": "words/quiz.png", + "voice": "voices-$CA/$LOCALE/words/quiz.$CA" + }, + { + "description": "science", + "image": "words/science.png", + "voice": "voices-$CA/$LOCALE/words/science.$CA" + }, + { + "description": "splatter", + "image": "words/splatter.png", + "voice": "voices-$CA/$LOCALE/words/splatter.$CA" + }, + { + "description": "text", + "image": "words/text.png", + "voice": "voices-$CA/$LOCALE/words/text.$CA" + }, + { + "description": "tune", + "image": "words/tune.png", + "voice": "voices-$CA/$LOCALE/words/tune.$CA" + }, + { + "description": "vowel", + "image": "words/vowel.png", + "voice": "voices-$CA/$LOCALE/words/vowel.$CA" + }, + { + "description": "weight", + "image": "words/weight.png", + "voice": "voices-$CA/$LOCALE/words/weight.$CA" + }, + { + "description": "word", + "image": "words/word.png", + "voice": "voices-$CA/$LOCALE/words/word.$CA" + } + ] + }, + { + "type": "lesson", + "name": "action", + "content": [ + { + "description": "ate", + "image": "words/ate.png", + "voice": "voices-$CA/$LOCALE/words/ate.$CA" + }, + { + "description": "bake", + "image": "words/bake.png", + "voice": "voices-$CA/$LOCALE/words/bake.$CA" + }, + { + "description": "bark", + "image": "words/bark.png", + "voice": "voices-$CA/$LOCALE/words/bark.$CA" + }, + { + "description": "beat", + "image": "words/beat.png", + "voice": "voices-$CA/$LOCALE/words/beat.$CA" + }, + { + "description": "beg", + "image": "words/beg.png", + "voice": "voices-$CA/$LOCALE/words/beg.$CA" + }, + { + "description": "bite", + "image": "words/bite.png", + "voice": "voices-$CA/$LOCALE/words/bite.$CA" + }, + { + "description": "blink", + "image": "words/blink.png", + "voice": "voices-$CA/$LOCALE/words/blink.$CA" + }, + { + "description": "boil", + "image": "words/boil.png", + "voice": "voices-$CA/$LOCALE/words/boil.$CA" + }, + { + "description": "break", + "image": "words/break.png", + "voice": "voices-$CA/$LOCALE/words/break.$CA" + }, + { + "description": "call", + "image": "words/call.png", + "voice": "voices-$CA/$LOCALE/words/call.$CA" + }, + { + "description": "catch", + "image": "words/catch.png", + "voice": "voices-$CA/$LOCALE/words/catch.$CA" + }, + { + "description": "chat", + "image": "words/chat.png", + "voice": "voices-$CA/$LOCALE/words/chat.$CA" + }, + { + "description": "chop", + "image": "words/chop.png", + "voice": "voices-$CA/$LOCALE/words/chop.$CA" + }, + { + "description": "chores", + "image": "words/chores.png", + "voice": "voices-$CA/$LOCALE/words/chores.$CA" + }, + { + "description": "clap", + "image": "words/clap.png", + "voice": "voices-$CA/$LOCALE/words/clap.$CA" + }, + { + "description": "clean", + "image": "words/clean.png", + "voice": "voices-$CA/$LOCALE/words/clean.$CA" + }, + { + "description": "cough", + "image": "words/cough.png", + "voice": "voices-$CA/$LOCALE/words/cough.$CA" + }, + { + "description": "crawl", + "image": "words/crawl.png", + "voice": "voices-$CA/$LOCALE/words/crawl.$CA" + }, + { + "description": "croak", + "image": "words/croak.png", + "voice": "voices-$CA/$LOCALE/words/croak.$CA" + }, + { + "description": "cry", + "image": "words/cry.png", + "voice": "voices-$CA/$LOCALE/words/cry.$CA" + }, + { + "description": "cut", + "image": "words/cut.png", + "voice": "voices-$CA/$LOCALE/words/cut.$CA" + }, + { + "description": "dig", + "image": "words/dig.png", + "voice": "voices-$CA/$LOCALE/words/dig.$CA" + }, + { + "description": "drank", + "image": "words/drank.png", + "voice": "voices-$CA/$LOCALE/words/drank.$CA" + }, + { + "description": "draw", + "image": "words/draw.png", + "voice": "voices-$CA/$LOCALE/words/draw.$CA" + }, + { + "description": "dream", + "image": "words/dream.png", + "voice": "voices-$CA/$LOCALE/words/dream.$CA" + }, + { + "description": "drinking", + "image": "words/drinking.png", + "voice": "voices-$CA/$LOCALE/words/drinking.$CA" + }, + { + "description": "drive", + "image": "words/drive.png", + "voice": "voices-$CA/$LOCALE/words/drive.$CA" + }, + { + "description": "drool", + "image": "words/drool.png", + "voice": "voices-$CA/$LOCALE/words/drool.$CA" + }, + { + "description": "dry", + "image": "words/dry.png", + "voice": "voices-$CA/$LOCALE/words/dry.$CA" + }, + { + "description": "eat", + "image": "words/eat.png", + "voice": "voices-$CA/$LOCALE/words/eat.$CA" + }, + { + "description": "fall down", + "image": "words/fall_down.png", + "voice": "voices-$CA/$LOCALE/words/fall_down.$CA" + }, + { + "description": "feed", + "image": "words/feed.png", + "voice": "voices-$CA/$LOCALE/words/feed.$CA" + }, + { + "description": "fell", + "image": "words/fell.png", + "voice": "voices-$CA/$LOCALE/words/fell.$CA" + }, + { + "description": "fetch", + "image": "words/fetch.png", + "voice": "voices-$CA/$LOCALE/words/fetch.$CA" + }, + { + "description": "find", + "image": "words/find.png", + "voice": "voices-$CA/$LOCALE/words/find.$CA" + }, + { + "description": "flight", + "image": "words/flight.png", + "voice": "voices-$CA/$LOCALE/words/flight.$CA" + }, + { + "description": "float", + "image": "words/float.png", + "voice": "voices-$CA/$LOCALE/words/float.$CA" + }, + { + "description": "fly", + "image": "words/fly.png", + "voice": "voices-$CA/$LOCALE/words/fly.$CA" + }, + { + "description": "freeze", + "image": "words/freeze.png", + "voice": "voices-$CA/$LOCALE/words/freeze.$CA" + }, + { + "description": "growl", + "image": "words/growl.png", + "voice": "voices-$CA/$LOCALE/words/growl.$CA" + }, + { + "description": "hatch", + "image": "words/hatch.png", + "voice": "voices-$CA/$LOCALE/words/hatch.$CA" + }, + { + "description": "hear", + "image": "words/hear.png", + "voice": "voices-$CA/$LOCALE/words/hear.$CA" + }, + { + "description": "howl", + "image": "words/howl.png", + "voice": "voices-$CA/$LOCALE/words/howl.$CA" + }, + { + "description": "hug", + "image": "words/hug.png", + "voice": "voices-$CA/$LOCALE/words/hug.$CA" + }, + { + "description": "jump", + "image": "words/jump.png", + "voice": "voices-$CA/$LOCALE/words/jump.$CA" + }, + { + "description": "kiss", + "image": "words/kiss.png", + "voice": "voices-$CA/$LOCALE/words/kiss.$CA" + }, + { + "description": "kneel", + "image": "words/kneel.png", + "voice": "voices-$CA/$LOCALE/words/kneel.$CA" + }, + { + "description": "knit", + "image": "words/knit.png", + "voice": "voices-$CA/$LOCALE/words/knit.$CA" + }, + { + "description": "lick", + "image": "words/lick.png", + "voice": "voices-$CA/$LOCALE/words/lick.$CA" + }, + { + "description": "look", + "image": "words/look.png", + "voice": "voices-$CA/$LOCALE/words/look.$CA" + }, + { + "description": "meet", + "image": "words/meet.png", + "voice": "voices-$CA/$LOCALE/words/meet.$CA" + }, + { + "description": "nap", + "image": "words/nap.png", + "voice": "voices-$CA/$LOCALE/words/nap.$CA" + }, + { + "description": "peck", + "image": "words/peck.png", + "voice": "voices-$CA/$LOCALE/words/peck.$CA" + }, + { + "description": "play", + "image": "words/play.png", + "voice": "voices-$CA/$LOCALE/words/play.$CA" + }, + { + "description": "plow", + "image": "words/plow.png", + "voice": "voices-$CA/$LOCALE/words/plow.$CA" + }, + { + "description": "pounce", + "image": "words/pounce.png", + "voice": "voices-$CA/$LOCALE/words/pounce.$CA" + }, + { + "description": "pull", + "image": "words/pull.png", + "voice": "voices-$CA/$LOCALE/words/pull.$CA" + }, + { + "description": "quarrel", + "image": "words/quarrel.png", + "voice": "voices-$CA/$LOCALE/words/quarrel.$CA" + }, + { + "description": "read", + "image": "words/read.png", + "voice": "voices-$CA/$LOCALE/words/read.$CA" + }, + { + "description": "rip", + "image": "words/rip.png", + "voice": "voices-$CA/$LOCALE/words/rip.$CA" + }, + { + "description": "rise", + "image": "words/rise.png", + "voice": "voices-$CA/$LOCALE/words/rise.$CA" + }, + { + "description": "run", + "image": "words/run.png", + "voice": "voices-$CA/$LOCALE/words/run.$CA" + }, + { + "description": "sat", + "image": "words/sat.png", + "voice": "voices-$CA/$LOCALE/words/sat.$CA" + }, + { + "description": "scared", + "image": "words/scared.png", + "voice": "voices-$CA/$LOCALE/words/scared.$CA" + }, + { + "description": "scratch", + "image": "words/scratch.png", + "voice": "voices-$CA/$LOCALE/words/scratch.$CA" + }, + { + "description": "scream", + "image": "words/scream.png", + "voice": "voices-$CA/$LOCALE/words/scream.$CA" + }, + { + "description": "scribble", + "image": "words/scribble.png", + "voice": "voices-$CA/$LOCALE/words/scribble.$CA" + }, + { + "description": "see", + "image": "words/see.png", + "voice": "voices-$CA/$LOCALE/words/see.$CA" + }, + { + "description": "shake", + "image": "words/shake.png", + "voice": "voices-$CA/$LOCALE/words/shake.$CA" + }, + { + "description": "shave", + "image": "words/shave.png", + "voice": "voices-$CA/$LOCALE/words/shave.$CA" + }, + { + "description": "sing", + "image": "words/sing.png", + "voice": "voices-$CA/$LOCALE/words/sing.$CA" + }, + { + "description": "sip", + "image": "words/sip.png", + "voice": "voices-$CA/$LOCALE/words/sip.$CA" + }, + { + "description": "sit", + "image": "words/sit.png", + "voice": "voices-$CA/$LOCALE/words/sit.$CA" + }, + { + "description": "slam", + "image": "words/slam.png", + "voice": "voices-$CA/$LOCALE/words/slam.$CA" + }, + { + "description": "sleep", + "image": "words/sleep.png", + "voice": "voices-$CA/$LOCALE/words/sleep.$CA" + }, + { + "description": "smell", + "image": "words/smell.png", + "voice": "voices-$CA/$LOCALE/words/smell.$CA" + }, + { + "description": "smooch", + "image": "words/smooch.png", + "voice": "voices-$CA/$LOCALE/words/smooch.$CA" + }, + { + "description": "sniff", + "image": "words/sniff.png", + "voice": "voices-$CA/$LOCALE/words/sniff.$CA" + }, + { + "description": "speak", + "image": "words/speak.png", + "voice": "voices-$CA/$LOCALE/words/speak.$CA" + }, + { + "description": "spill", + "image": "words/spill.png", + "voice": "voices-$CA/$LOCALE/words/spill.$CA" + }, + { + "description": "splash", + "image": "words/splash.png", + "voice": "voices-$CA/$LOCALE/words/splash.$CA" + }, + { + "description": "spray", + "image": "words/spray.png", + "voice": "voices-$CA/$LOCALE/words/spray.$CA" + }, + { + "description": "spread", + "image": "words/spread.png", + "voice": "voices-$CA/$LOCALE/words/spread.$CA" + }, + { + "description": "spring", + "image": "words/spring.png", + "voice": "voices-$CA/$LOCALE/words/spring.$CA" + }, + { + "description": "squat", + "image": "words/squat.png", + "voice": "voices-$CA/$LOCALE/words/squat.$CA" + }, + { + "description": "sting", + "image": "words/sting.png", + "voice": "voices-$CA/$LOCALE/words/sting.$CA" + }, + { + "description": "stitch", + "image": "words/stitch.png", + "voice": "voices-$CA/$LOCALE/words/stitch.$CA" + }, + { + "description": "stop", + "image": "words/stop.png", + "voice": "voices-$CA/$LOCALE/words/stop.$CA" + }, + { + "description": "stretch", + "image": "words/stretch.png", + "voice": "voices-$CA/$LOCALE/words/stretch.$CA" + }, + { + "description": "study", + "image": "words/study.png", + "voice": "voices-$CA/$LOCALE/words/study.$CA" + }, + { + "description": "teach", + "image": "words/teach.png", + "voice": "voices-$CA/$LOCALE/words/teach.$CA" + }, + { + "description": "tear", + "image": "words/tear.png", + "voice": "voices-$CA/$LOCALE/words/tear.$CA" + }, + { + "description": "think", + "image": "words/think.png", + "voice": "voices-$CA/$LOCALE/words/think.$CA" + }, + { + "description": "touch", + "image": "words/touch.png", + "voice": "voices-$CA/$LOCALE/words/touch.$CA" + }, + { + "description": "wag", + "image": "words/wag.png", + "voice": "voices-$CA/$LOCALE/words/wag.$CA" + }, + { + "description": "walk", + "image": "words/walk.png", + "voice": "voices-$CA/$LOCALE/words/walk.$CA" + }, + { + "description": "wash", + "image": "words/wash.png", + "voice": "voices-$CA/$LOCALE/words/wash.$CA" + }, + { + "description": "whisper", + "image": "words/whisper.png", + "voice": "voices-$CA/$LOCALE/words/whisper.$CA" + }, + { + "description": "win", + "image": "words/win.png", + "voice": "voices-$CA/$LOCALE/words/win.$CA" + }, + { + "description": "write", + "image": "words/write.png", + "voice": "voices-$CA/$LOCALE/words/write.$CA" + } + ] + }, + { + "type": "lesson", + "name": "adjective", + "content": [ + { + "description": "behind", + "image": "words/behind.png", + "voice": "voices-$CA/$LOCALE/words/behind.$CA" + }, + { + "description": "big", + "image": "words/big.png", + "voice": "voices-$CA/$LOCALE/words/big.$CA" + }, + { + "description": "blind", + "image": "words/blind.png", + "voice": "voices-$CA/$LOCALE/words/blind.$CA" + }, + { + "description": "blond", + "image": "words/blond.png", + "voice": "voices-$CA/$LOCALE/words/blond.$CA" + }, + { + "description": "bright", + "image": "words/bright.png", + "voice": "voices-$CA/$LOCALE/words/bright.$CA" + }, + { + "description": "crazy", + "image": "words/crazy.png", + "voice": "voices-$CA/$LOCALE/words/crazy.$CA" + }, + { + "description": "cute", + "image": "words/cute.png", + "voice": "voices-$CA/$LOCALE/words/cute.$CA" + }, + { + "description": "dirty", + "image": "words/dirty.png", + "voice": "voices-$CA/$LOCALE/words/dirty.$CA" + }, + { + "description": "empty", + "image": "words/empty.png", + "voice": "voices-$CA/$LOCALE/words/empty.$CA" + }, + { + "description": "fat", + "image": "words/fat.png", + "voice": "voices-$CA/$LOCALE/words/fat.$CA" + }, + { + "description": "flat", + "image": "words/flat.png", + "voice": "voices-$CA/$LOCALE/words/flat.$CA" + }, + { + "description": "front", + "image": "words/front.png", + "voice": "voices-$CA/$LOCALE/words/front.$CA" + }, + { + "description": "full", + "image": "words/full.png", + "voice": "voices-$CA/$LOCALE/words/full.$CA" + }, + { + "description": "giant", + "image": "words/giant.png", + "voice": "voices-$CA/$LOCALE/words/giant.$CA" + }, + { + "description": "golden", + "image": "words/golden.png", + "voice": "voices-$CA/$LOCALE/words/golden.$CA" + }, + { + "description": "half", + "image": "words/half.png", + "voice": "voices-$CA/$LOCALE/words/half.$CA" + }, + { + "description": "happy", + "image": "words/happy.png", + "voice": "voices-$CA/$LOCALE/words/happy.$CA" + }, + { + "description": "high", + "image": "words/high.png", + "voice": "voices-$CA/$LOCALE/words/high.$CA" + }, + { + "description": "hot", + "image": "words/hot.png", + "voice": "voices-$CA/$LOCALE/words/hot.$CA" + }, + { + "description": "huge", + "image": "words/huge.png", + "voice": "voices-$CA/$LOCALE/words/huge.$CA" + }, + { + "description": "hunchback", + "image": "words/hunchback.png", + "voice": "voices-$CA/$LOCALE/words/hunchback.$CA" + }, + { + "description": "ill", + "image": "words/ill.png", + "voice": "voices-$CA/$LOCALE/words/ill.$CA" + }, + { + "description": "left", + "image": "words/left.png", + "voice": "voices-$CA/$LOCALE/words/left.$CA" + }, + { + "description": "line", + "image": "words/line.png", + "voice": "voices-$CA/$LOCALE/words/line.$CA" + }, + { + "description": "liquid", + "image": "words/liquid.png", + "voice": "voices-$CA/$LOCALE/words/liquid.$CA" + }, + { + "description": "magic", + "image": "words/magic.png", + "voice": "voices-$CA/$LOCALE/words/magic.$CA" + }, + { + "description": "naked", + "image": "words/naked.png", + "voice": "voices-$CA/$LOCALE/words/naked.$CA" + }, + { + "description": "on", + "image": "words/on.png", + "voice": "voices-$CA/$LOCALE/words/on.$CA" + }, + { + "description": "open", + "image": "words/open.png", + "voice": "voices-$CA/$LOCALE/words/open.$CA" + }, + { + "description": "petite", + "image": "words/petite.png", + "voice": "voices-$CA/$LOCALE/words/petite.$CA" + }, + { + "description": "pretty", + "image": "words/pretty.png", + "voice": "voices-$CA/$LOCALE/words/pretty.$CA" + }, + { + "description": "right", + "image": "words/right.png", + "voice": "voices-$CA/$LOCALE/words/right.$CA" + }, + { + "description": "round", + "image": "words/round.png", + "voice": "voices-$CA/$LOCALE/words/round.$CA" + }, + { + "description": "royal", + "image": "words/royal.png", + "voice": "voices-$CA/$LOCALE/words/royal.$CA" + }, + { + "description": "shut", + "image": "words/shut.png", + "voice": "voices-$CA/$LOCALE/words/shut.$CA" + }, + { + "description": "sick", + "image": "words/sick.png", + "voice": "voices-$CA/$LOCALE/words/sick.$CA" + }, + { + "description": "slim", + "image": "words/slim.png", + "voice": "voices-$CA/$LOCALE/words/slim.$CA" + }, + { + "description": "sloppy", + "image": "words/sloppy.png", + "voice": "voices-$CA/$LOCALE/words/sloppy.$CA" + }, + { + "description": "small", + "image": "words/small.png", + "voice": "voices-$CA/$LOCALE/words/small.$CA" + }, + { + "description": "spot", + "image": "words/spot.png", + "voice": "voices-$CA/$LOCALE/words/spot.$CA" + }, + { + "description": "square", + "image": "words/square.png", + "voice": "voices-$CA/$LOCALE/words/square.$CA" + }, + { + "description": "stand", + "image": "words/stand.png", + "voice": "voices-$CA/$LOCALE/words/stand.$CA" + }, + { + "description": "steep", + "image": "words/steep.png", + "voice": "voices-$CA/$LOCALE/words/steep.$CA" + }, + { + "description": "stinky", + "image": "words/stinky.png", + "voice": "voices-$CA/$LOCALE/words/stinky.$CA" + }, + { + "description": "straight", + "image": "words/straight.png", + "voice": "voices-$CA/$LOCALE/words/straight.$CA" + }, + { + "description": "stripe", + "image": "words/stripe.png", + "voice": "voices-$CA/$LOCALE/words/stripe.$CA" + }, + { + "description": "strong", + "image": "words/strong.png", + "voice": "voices-$CA/$LOCALE/words/strong.$CA" + }, + { + "description": "tall", + "image": "words/tall.png", + "voice": "voices-$CA/$LOCALE/words/tall.$CA" + }, + { + "description": "thick", + "image": "words/thick.png", + "voice": "voices-$CA/$LOCALE/words/thick.$CA" + }, + { + "description": "tired", + "image": "words/tired.png", + "voice": "voices-$CA/$LOCALE/words/tired.$CA" + }, + { + "description": "triangle", + "image": "words/triangle.png", + "voice": "voices-$CA/$LOCALE/words/triangle.$CA" + }, + { + "description": "under", + "image": "words/under.png", + "voice": "voices-$CA/$LOCALE/words/under.$CA" + }, + { + "description": "wet", + "image": "words/wet.png", + "voice": "voices-$CA/$LOCALE/words/wet.$CA" + }, + { + "description": "wide", + "image": "words/wide.png", + "voice": "voices-$CA/$LOCALE/words/wide.$CA" + } + ] + }, + { + "type": "lesson", + "name": "color", + "content": [ + { + "description": "color", + "image": "words/color.png", + "voice": "voices-$CA/$LOCALE/words/color.$CA" + }, + { + "description": "blue", + "image": "words/blue.png", + "voice": "voices-$CA/$LOCALE/words/blue.$CA" + }, + { + "description": "brown", + "image": "words/brown.png", + "voice": "voices-$CA/$LOCALE/words/brown.$CA" + }, + { + "description": "black", + "image": "words/black.png", + "voice": "voices-$CA/$LOCALE/words/black.$CA" + }, + { + "description": "gray", + "image": "words/gray.png", + "voice": "voices-$CA/$LOCALE/words/gray.$CA" + }, + { + "description": "green", + "image": "words/green.png", + "voice": "voices-$CA/$LOCALE/words/green.$CA" + }, + { + "description": "mauve", + "image": "words/mauve.png", + "voice": "voices-$CA/$LOCALE/words/mauve.$CA" + }, + { + "description": "orange color", + "image": "words/orange-color.png", + "voice": "voices-$CA/$LOCALE/words/orange-color.$CA" + }, + { + "description": "pink", + "image": "words/pink.png", + "voice": "voices-$CA/$LOCALE/words/pink.$CA" + }, + { + "description": "red", + "image": "words/red.png", + "voice": "voices-$CA/$LOCALE/words/red.$CA" + }, + { + "description": "white", + "image": "words/white.png", + "voice": "voices-$CA/$LOCALE/words/white.$CA" + }, + { + "description": "yellow", + "image": "words/yellow.png", + "voice": "voices-$CA/$LOCALE/words/yellow.$CA" + } + ] + }, + { + "type": "lesson", + "name": "number", + "content": [ + { + "description": "zero", + "image": "words/zero.png", + "voice": "voices-$CA/$LOCALE/alphabet/U0030.$CA" + }, + { + "description": "one", + "image": "words/one.png", + "voice": "voices-$CA/$LOCALE/alphabet/U0031.$CA" + }, + { + "description": "two", + "image": "words/two.png", + "voice": "voices-$CA/$LOCALE/alphabet/U0032.$CA" + }, + { + "description": "three", + "image": "words/three.png", + "voice": "voices-$CA/$LOCALE/alphabet/U0033.$CA" + }, + { + "description": "four", + "image": "words/four.png", + "voice": "voices-$CA/$LOCALE/alphabet/U0034.$CA" + }, + { + "description": "five", + "image": "words/five.png", + "voice": "voices-$CA/$LOCALE/alphabet/U0035.$CA" + }, + { + "description": "six", + "image": "words/six.png", + "voice": "voices-$CA/$LOCALE/alphabet/U0036.$CA" + }, + { + "description": "seven", + "image": "words/seven.png", + "voice": "voices-$CA/$LOCALE/alphabet/U0037.$CA" + }, + { + "description": "eight", + "image": "words/eight.png", + "voice": "voices-$CA/$LOCALE/alphabet/U0038.$CA" + }, + { + "description": "nine", + "image": "words/nine.png", + "voice": "voices-$CA/$LOCALE/alphabet/U0039.$CA" + }, + { + "description": "ten", + "image": "words/ten.png", + "voice": "voices-$CA/$LOCALE/alphabet/10.$CA" + }, + { + "description": "eleven", + "image": "words/eleven.png", + "voice": "voices-$CA/$LOCALE/words/eleven.$CA" + }, + { + "description": "twelve", + "image": "words/twelve.png", + "voice": "voices-$CA/$LOCALE/words/twelve.$CA" + }, + { + "description": "sixteen", + "image": "words/sixteen.png", + "voice": "voices-$CA/$LOCALE/words/sixteen.$CA" + } + ] + } + ] + }, + { + "type": "chapter", + "name": "people", + "content": [ + { + "type": "lesson", + "name": "bodyparts", + "content": [ + { + "description": "ankle", + "image": "words/ankle.png", + "voice": "voices-$CA/$LOCALE/words/ankle.$CA" + }, + { + "description": "arm", + "image": "words/arm.png", + "voice": "voices-$CA/$LOCALE/words/arm.$CA" + }, + { + "description": "back", + "image": "words/back.png", + "voice": "voices-$CA/$LOCALE/words/back.$CA" + }, + { + "description": "bald", + "image": "words/bald.png", + "voice": "voices-$CA/$LOCALE/words/bald.$CA" + }, + { + "description": "beard", + "image": "words/beard.png", + "voice": "voices-$CA/$LOCALE/words/beard.$CA" + }, + { + "description": "belly", + "image": "words/belly.png", + "voice": "voices-$CA/$LOCALE/words/belly.$CA" + }, + { + "description": "bottom", + "image": "words/bottom.png", + "voice": "voices-$CA/$LOCALE/words/bottom.$CA" + }, + { + "description": "braid", + "image": "words/braid.png", + "voice": "voices-$CA/$LOCALE/words/braid.$CA" + }, + { + "description": "brain", + "image": "words/brain.png", + "voice": "voices-$CA/$LOCALE/words/brain.$CA" + }, + { + "description": "breast", + "image": "words/breast.png", + "voice": "voices-$CA/$LOCALE/words/breast.$CA" + }, + { + "description": "bump", + "image": "words/bump.png", + "voice": "voices-$CA/$LOCALE/words/bump.$CA" + }, + { + "description": "cheek", + "image": "words/cheek.png", + "voice": "voices-$CA/$LOCALE/words/cheek.$CA" + }, + { + "description": "chin", + "image": "words/chin.png", + "voice": "voices-$CA/$LOCALE/words/chin.$CA" + }, + { + "description": "ear", + "image": "words/ear.png", + "voice": "voices-$CA/$LOCALE/words/ear.$CA" + }, + { + "description": "elbow", + "image": "words/elbow.png", + "voice": "voices-$CA/$LOCALE/words/elbow.$CA" + }, + { + "description": "eyelash", + "image": "words/eyelash.png", + "voice": "voices-$CA/$LOCALE/words/eyelash.$CA" + }, + { + "description": "eyes", + "image": "words/eyes.png", + "voice": "voices-$CA/$LOCALE/words/eyes.$CA" + }, + { + "description": "face", + "image": "words/face.png", + "voice": "voices-$CA/$LOCALE/words/face.$CA" + }, + { + "description": "feet", + "image": "words/feet.png", + "voice": "voices-$CA/$LOCALE/words/feet.$CA" + }, + { + "description": "femur", + "image": "words/femur.png", + "voice": "voices-$CA/$LOCALE/words/femur.$CA" + }, + { + "description": "finger", + "image": "words/finger.png", + "voice": "voices-$CA/$LOCALE/words/finger.$CA" + }, + { + "description": "fist", + "image": "words/fist.png", + "voice": "voices-$CA/$LOCALE/words/fist.$CA" + }, + { + "description": "foot", + "image": "words/foot.png", + "voice": "voices-$CA/$LOCALE/words/foot.$CA" + }, + { + "description": "grin", + "image": "words/grin.png", + "voice": "voices-$CA/$LOCALE/words/grin.$CA" + }, + { + "description": "hair", + "image": "words/hair.png", + "voice": "voices-$CA/$LOCALE/words/hair.$CA" + }, + { + "description": "hand", + "image": "words/hand.png", + "voice": "voices-$CA/$LOCALE/words/hand.$CA" + }, + { + "description": "head", + "image": "words/head.png", + "voice": "voices-$CA/$LOCALE/words/head.$CA" + }, + { + "description": "hip", + "image": "words/hip.png", + "voice": "voices-$CA/$LOCALE/words/hip.$CA" + }, + { + "description": "knee", + "image": "words/knee.png", + "voice": "voices-$CA/$LOCALE/words/knee.$CA" + }, + { + "description": "lap", + "image": "words/lap.png", + "voice": "voices-$CA/$LOCALE/words/lap.$CA" + }, + { + "description": "leg", + "image": "words/leg.png", + "voice": "voices-$CA/$LOCALE/words/leg.$CA" + }, + { + "description": "lip", + "image": "words/lip.png", + "voice": "voices-$CA/$LOCALE/words/lip.$CA" + }, + { + "description": "mouth", + "image": "words/mouth.png", + "voice": "voices-$CA/$LOCALE/words/mouth.$CA" + }, + { + "description": "muscle", + "image": "words/muscle.png", + "voice": "voices-$CA/$LOCALE/words/muscle.$CA" + }, + { + "description": "navel", + "image": "words/navel.png", + "voice": "voices-$CA/$LOCALE/words/navel.$CA" + }, + { + "description": "neck", + "image": "words/neck.png", + "voice": "voices-$CA/$LOCALE/words/neck.$CA" + }, + { + "description": "nose", + "image": "words/nose.png", + "voice": "voices-$CA/$LOCALE/words/nose.$CA" + }, + { + "description": "nostril", + "image": "words/nostril.png", + "voice": "voices-$CA/$LOCALE/words/nostril.$CA" + }, + { + "description": "scar", + "image": "words/scar.png", + "voice": "voices-$CA/$LOCALE/words/scar.$CA" + }, + { + "description": "skeleton", + "image": "words/skeleton.png", + "voice": "voices-$CA/$LOCALE/words/skeleton.$CA" + }, + { + "description": "skin", + "image": "words/skin.png", + "voice": "voices-$CA/$LOCALE/words/skin.$CA" + }, + { + "description": "spine", + "image": "words/spine.png", + "voice": "voices-$CA/$LOCALE/words/spine.$CA" + }, + { + "description": "stare", + "image": "words/stare.png", + "voice": "voices-$CA/$LOCALE/words/stare.$CA" + }, + { + "description": "stomach", + "image": "words/stomach.png", + "voice": "voices-$CA/$LOCALE/words/stomach.$CA" + }, + { + "description": "sweat", + "image": "words/sweat.png", + "voice": "voices-$CA/$LOCALE/words/sweat.$CA" + }, + { + "description": "teeth", + "image": "words/teeth.png", + "voice": "voices-$CA/$LOCALE/words/teeth.$CA" + }, + { + "description": "thigh", + "image": "words/thigh.png", + "voice": "voices-$CA/$LOCALE/words/thigh.$CA" + }, + { + "description": "throat", + "image": "words/throat.png", + "voice": "voices-$CA/$LOCALE/words/throat.$CA" + }, + { + "description": "thumb", + "image": "words/thumb.png", + "voice": "voices-$CA/$LOCALE/words/thumb.$CA" + }, + { + "description": "toe", + "image": "words/toe.png", + "voice": "voices-$CA/$LOCALE/words/toe.$CA" + }, + { + "description": "tongue", + "image": "words/tongue.png", + "voice": "voices-$CA/$LOCALE/words/tongue.$CA" + }, + { + "description": "vein", + "image": "words/vein.png", + "voice": "voices-$CA/$LOCALE/words/vein.$CA" + }, + { + "description": "wart", + "image": "words/wart.png", + "voice": "voices-$CA/$LOCALE/words/wart.$CA" + }, + { + "description": "wrist", + "image": "words/wrist.png", + "voice": "voices-$CA/$LOCALE/words/wrist.$CA" + } + ] + }, + { + "type": "lesson", + "name": "clothes", + "content": [ + { + "description": "bathing suit", + "image": "words/bathing_suit.png", + "voice": "voices-$CA/$LOCALE/words/bathing_suit.$CA" + }, + { + "description": "bib", + "image": "words/bib.png", + "voice": "voices-$CA/$LOCALE/words/bib.$CA" + }, + { + "description": "button", + "image": "words/button.png", + "voice": "voices-$CA/$LOCALE/words/button.$CA" + }, + { + "description": "cap", + "image": "words/cap.png", + "voice": "voices-$CA/$LOCALE/words/cap.$CA" + }, + { + "description": "cape", + "image": "words/cape.png", + "voice": "voices-$CA/$LOCALE/words/cape.$CA" + }, + { + "description": "coat", + "image": "words/coat.png", + "voice": "voices-$CA/$LOCALE/words/coat.$CA" + }, + { + "description": "dress", + "image": "words/dress.png", + "voice": "voices-$CA/$LOCALE/words/dress.$CA" + }, + { + "description": "glove", + "image": "words/glove.png", + "voice": "voices-$CA/$LOCALE/words/glove.$CA" + }, + { + "description": "hat", + "image": "words/hat.png", + "voice": "voices-$CA/$LOCALE/words/hat.$CA" + }, + { + "description": "heel", + "image": "words/heel.png", + "voice": "voices-$CA/$LOCALE/words/heel.$CA" + }, + { + "description": "helmet", + "image": "words/helmet.png", + "voice": "voices-$CA/$LOCALE/words/helmet.$CA" + }, + { + "description": "jacket", + "image": "words/jacket.png", + "voice": "voices-$CA/$LOCALE/words/jacket.$CA" + }, + { + "description": "kimono", + "image": "words/kimono.png", + "voice": "voices-$CA/$LOCALE/words/kimono.$CA" + }, + { + "description": "nightgown", + "image": "words/nightgown.png", + "voice": "voices-$CA/$LOCALE/words/nightgown.$CA" + }, + { + "description": "pajamas", + "image": "words/pajamas.png", + "voice": "voices-$CA/$LOCALE/words/pajamas.$CA" + }, + { + "description": "panties", + "image": "words/panties.png", + "voice": "voices-$CA/$LOCALE/words/panties.$CA" + }, + { + "description": "pants", + "image": "words/pants.png", + "voice": "voices-$CA/$LOCALE/words/pants.$CA" + }, + { + "description": "patch", + "image": "words/patch.png", + "voice": "voices-$CA/$LOCALE/words/patch.$CA" + }, + { + "description": "pocket", + "image": "words/pocket.png", + "voice": "voices-$CA/$LOCALE/words/pocket.$CA" + }, + { + "description": "pompon", + "image": "words/pompon.png", + "voice": "voices-$CA/$LOCALE/words/pompon.$CA" + }, + { + "description": "pullover", + "image": "words/pullover.png", + "voice": "voices-$CA/$LOCALE/words/pullover.$CA" + }, + { + "description": "raincoat", + "image": "words/raincoat.png", + "voice": "voices-$CA/$LOCALE/words/raincoat.$CA" + }, + { + "description": "robe", + "image": "words/robe.png", + "voice": "voices-$CA/$LOCALE/words/robe.$CA" + }, + { + "description": "sandals", + "image": "words/sandals.png", + "voice": "voices-$CA/$LOCALE/words/sandals.$CA" + }, + { + "description": "sash", + "image": "words/sash.png", + "voice": "voices-$CA/$LOCALE/words/sash.$CA" + }, + { + "description": "scarf", + "image": "words/scarf.png", + "voice": "voices-$CA/$LOCALE/words/scarf.$CA" + }, + { + "description": "shirt", + "image": "words/shirt.png", + "voice": "voices-$CA/$LOCALE/words/shirt.$CA" + }, + { + "description": "shoe", + "image": "words/shoe.png", + "voice": "voices-$CA/$LOCALE/words/shoe.$CA" + }, + { + "description": "shoelace", + "image": "words/shoelace.png", + "voice": "voices-$CA/$LOCALE/words/shoelace.$CA" + }, + { + "description": "short", + "image": "words/short.png", + "voice": "voices-$CA/$LOCALE/words/short.$CA" + }, + { + "description": "skirt", + "image": "words/skirt.png", + "voice": "voices-$CA/$LOCALE/words/skirt.$CA" + }, + { + "description": "sleeve", + "image": "words/sleeve.png", + "voice": "voices-$CA/$LOCALE/words/sleeve.$CA" + }, + { + "description": "slippers", + "image": "words/slippers.png", + "voice": "voices-$CA/$LOCALE/words/slippers.$CA" + }, + { + "description": "smock", + "image": "words/smock.png", + "voice": "voices-$CA/$LOCALE/words/smock.$CA" + }, + { + "description": "sneaker", + "image": "words/sneaker.png", + "voice": "voices-$CA/$LOCALE/words/sneaker.$CA" + }, + { + "description": "sock", + "image": "words/sock.png", + "voice": "voices-$CA/$LOCALE/words/sock.$CA" + }, + { + "description": "sole shoe", + "image": "words/sole_shoe.png", + "voice": "voices-$CA/$LOCALE/words/sole_shoe.$CA" + }, + { + "description": "suit", + "image": "words/suit.png", + "voice": "voices-$CA/$LOCALE/words/suit.$CA" + }, + { + "description": "sweatshirt", + "image": "words/sweatshirt.png", + "voice": "voices-$CA/$LOCALE/words/sweatshirt.$CA" + }, + { + "description": "uniform", + "image": "words/uniform.png", + "voice": "voices-$CA/$LOCALE/words/uniform.$CA" + }, + { + "description": "vest", + "image": "words/vest.png", + "voice": "voices-$CA/$LOCALE/words/vest.$CA" + }, + { + "description": "zipper", + "image": "words/zipper.png", + "voice": "voices-$CA/$LOCALE/words/zipper.$CA" + } + ] + }, + { + "type": "lesson", + "name": "emotion", + "content": [ + { + "description": "ache", + "image": "words/ache.png", + "voice": "voices-$CA/$LOCALE/words/ache.$CA" + }, + { + "description": "angry", + "image": "words/angry.png", + "voice": "voices-$CA/$LOCALE/words/angry.$CA" + }, + { + "description": "blush", + "image": "words/blush.png", + "voice": "voices-$CA/$LOCALE/words/blush.$CA" + }, + { + "description": "danger", + "image": "words/danger.png", + "voice": "voices-$CA/$LOCALE/words/danger.$CA" + }, + { + "description": "frown", + "image": "words/frown.png", + "voice": "voices-$CA/$LOCALE/words/frown.$CA" + }, + { + "description": "fun", + "image": "words/fun.png", + "voice": "voices-$CA/$LOCALE/words/fun.$CA" + }, + { + "description": "laugh", + "image": "words/laugh.png", + "voice": "voices-$CA/$LOCALE/words/laugh.$CA" + }, + { + "description": "mad", + "image": "words/mad.png", + "voice": "voices-$CA/$LOCALE/words/mad.$CA" + }, + { + "description": "rage", + "image": "words/rage.png", + "voice": "voices-$CA/$LOCALE/words/rage.$CA" + }, + { + "description": "sad", + "image": "words/sad.png", + "voice": "voices-$CA/$LOCALE/words/sad.$CA" + }, + { + "description": "smile", + "image": "words/smile.png", + "voice": "voices-$CA/$LOCALE/words/smile.$CA" + }, + { + "description": "sob", + "image": "words/sob.png", + "voice": "voices-$CA/$LOCALE/words/sob.$CA" + }, + { + "description": "yum", + "image": "words/yum.png", + "voice": "voices-$CA/$LOCALE/words/yum.$CA" + } + ] + }, + { + "type": "lesson", + "name": "job", + "content": [ + { + "description": "accountant", + "image": "words/accountant.png", + "voice": "voices-$CA/$LOCALE/words/accountant.$CA" + }, + { + "description": "actor", + "image": "words/actor.png", + "voice": "voices-$CA/$LOCALE/words/actor.$CA" + }, + { + "description": "artist", + "image": "words/artist.png", + "voice": "voices-$CA/$LOCALE/words/artist.$CA" + }, + { + "description": "astronaut", + "image": "words/astronaut.png", + "voice": "voices-$CA/$LOCALE/words/astronaut.$CA" + }, + { + "description": "boxer", + "image": "words/boxer.png", + "voice": "voices-$CA/$LOCALE/words/boxer.$CA" + }, + { + "description": "banker female", + "image": "words/banker_female.png", + "voice": "voices-$CA/$LOCALE/words/banker_female.$CA" + }, + { + "description": "bricklayer", + "image": "words/bricklayer.png", + "voice": "voices-$CA/$LOCALE/words/bricklayer.$CA" + }, + { + "description": "butcher", + "image": "words/butcher.png", + "voice": "voices-$CA/$LOCALE/words/butcher.$CA" + }, + { + "description": "carpenter", + "image": "words/carpenter.png", + "voice": "voices-$CA/$LOCALE/words/carpenter.$CA" + }, + { + "description": "chef", + "image": "words/chef.png", + "voice": "voices-$CA/$LOCALE/words/chef.$CA" + }, + { + "description": "chief", + "image": "words/chief.png", + "voice": "voices-$CA/$LOCALE/words/chief.$CA" + }, + { + "description": "cleaning lady", + "image": "words/cleaning_lady.png", + "voice": "voices-$CA/$LOCALE/words/cleaning_lady.$CA" + }, + { + "description": "clown", + "image": "words/clown.png", + "voice": "voices-$CA/$LOCALE/words/clown.$CA" + }, + { + "description": "coach", + "image": "words/coach.png", + "voice": "voices-$CA/$LOCALE/words/coach.$CA" + }, + { + "description": "cowboy", + "image": "words/cowboy.png", + "voice": "voices-$CA/$LOCALE/words/cowboy.$CA" + }, + { + "description": "criminal", + "image": "words/criminal.png", + "voice": "voices-$CA/$LOCALE/words/criminal.$CA" + }, + { + "description": "doctor", + "image": "words/doctor.png", + "voice": "voices-$CA/$LOCALE/words/doctor.$CA" + }, + { + "description": "electrician", + "image": "words/electrician.png", + "voice": "voices-$CA/$LOCALE/words/electrician.$CA" + }, + { + "description": "engineer", + "image": "words/engineer.png", + "voice": "voices-$CA/$LOCALE/words/engineer.$CA" + }, + { + "description": "farmer", + "image": "words/farmer.png", + "voice": "voices-$CA/$LOCALE/words/farmer.$CA" + }, + { + "description": "fireman", + "image": "words/fireman.png", + "voice": "voices-$CA/$LOCALE/words/fireman.$CA" + }, + { + "description": "fisherman", + "image": "words/fisherman.png", + "voice": "voices-$CA/$LOCALE/words/fisherman.$CA" + }, + { + "description": "hunter", + "image": "words/hunter.png", + "voice": "voices-$CA/$LOCALE/words/hunter.$CA" + }, + { + "description": "job", + "image": "words/job.png", + "voice": "voices-$CA/$LOCALE/words/job.$CA" + }, + { + "description": "jockey", + "image": "words/jockey.png", + "voice": "voices-$CA/$LOCALE/words/jockey.$CA" + }, + { + "description": "judge", + "image": "words/judge.png", + "voice": "voices-$CA/$LOCALE/words/judge.$CA" + }, + { + "description": "juggler", + "image": "words/juggler.png", + "voice": "voices-$CA/$LOCALE/words/juggler.$CA" + }, + { + "description": "king", + "image": "words/king.png", + "voice": "voices-$CA/$LOCALE/words/king.$CA" + }, + { + "description": "knight", + "image": "words/knight.png", + "voice": "voices-$CA/$LOCALE/words/knight.$CA" + }, + { + "description": "lad", + "image": "words/lad.png", + "voice": "voices-$CA/$LOCALE/words/lad.$CA" + }, + { + "description": "lawyer", + "image": "words/lawyer.png", + "voice": "voices-$CA/$LOCALE/words/lawyer.$CA" + }, + { + "description": "librarian", + "image": "words/librarian.png", + "voice": "voices-$CA/$LOCALE/words/librarian.$CA" + }, + { + "description": "mechanic", + "image": "words/mechanic.png", + "voice": "voices-$CA/$LOCALE/words/mechanic.$CA" + }, + { + "description": "musician", + "image": "words/musician.png", + "voice": "voices-$CA/$LOCALE/words/musician.$CA" + }, + { + "description": "nun", + "image": "words/nun.png", + "voice": "voices-$CA/$LOCALE/words/nun.$CA" + }, + { + "description": "nurse", + "image": "words/nurse.png", + "voice": "voices-$CA/$LOCALE/words/nurse.$CA" + }, + { + "description": "nurse male", + "image": "words/nurse_male.png", + "voice": "voices-$CA/$LOCALE/words/nurse_male.$CA" + }, + { + "description": "pilot", + "image": "words/pilot.png", + "voice": "voices-$CA/$LOCALE/words/pilot.$CA" + }, + { + "description": "pirate", + "image": "words/pirate.png", + "voice": "voices-$CA/$LOCALE/words/pirate.$CA" + }, + { + "description": "plumber", + "image": "words/plumber.png", + "voice": "voices-$CA/$LOCALE/words/plumber.$CA" + }, + { + "description": "police", + "image": "words/police.png", + "voice": "voices-$CA/$LOCALE/words/police.$CA" + }, + { + "description": "pope", + "image": "words/pope.png", + "voice": "voices-$CA/$LOCALE/words/pope.$CA" + }, + { + "description": "president", + "image": "words/president.png", + "voice": "voices-$CA/$LOCALE/words/president.$CA" + }, + { + "description": "priest", + "image": "words/priest.png", + "voice": "voices-$CA/$LOCALE/words/priest.$CA" + }, + { + "description": "prince", + "image": "words/prince.png", + "voice": "voices-$CA/$LOCALE/words/prince.$CA" + }, + { + "description": "princess", + "image": "words/princess.png", + "voice": "voices-$CA/$LOCALE/words/princess.$CA" + }, + { + "description": "prisoner", + "image": "words/prisoner.png", + "voice": "voices-$CA/$LOCALE/words/prisoner.$CA" + }, + { + "description": "queen", + "image": "words/queen.png", + "voice": "voices-$CA/$LOCALE/words/queen.$CA" + }, + { + "description": "sailor", + "image": "words/sailor.png", + "voice": "voices-$CA/$LOCALE/words/sailor.$CA" + }, + { + "description": "soldier", + "image": "words/soldier.png", + "voice": "voices-$CA/$LOCALE/words/soldier.$CA" + }, + { + "description": "female soldier", + "image": "words/soldier_female.png", + "voice": "voices-$CA/$LOCALE/words/soldier_female.$CA" + }, + { + "description": "student", + "image": "words/student.png", + "voice": "voices-$CA/$LOCALE/words/student.$CA" + }, + { + "description": "teacher", + "image": "words/teacher.png", + "voice": "voices-$CA/$LOCALE/words/teacher.$CA" + }, + { + "description": "thief", + "image": "words/thief.png", + "voice": "voices-$CA/$LOCALE/words/thief.$CA" + }, + { + "description": "vet", + "image": "words/vet.png", + "voice": "voices-$CA/$LOCALE/words/vet.$CA" + }, + { + "description": "worker", + "image": "words/worker.png", + "voice": "voices-$CA/$LOCALE/words/worker.$CA" + } + ] + }, + { + "type": "lesson", + "name": "people", + "content": [ + { + "description": "angel", + "image": "words/angel.png", + "voice": "voices-$CA/$LOCALE/words/angel.$CA" + }, + { + "description": "fairy", + "image": "words/fairy.png", + "voice": "voices-$CA/$LOCALE/words/fairy.$CA" + }, + { + "description": "wedding", + "image": "words/wedding.png", + "voice": "voices-$CA/$LOCALE/words/wedding.$CA" + }, + { + "description": "boy", + "image": "words/boy.png", + "voice": "voices-$CA/$LOCALE/words/boy.$CA" + }, + { + "description": "bride", + "image": "words/bride.png", + "voice": "voices-$CA/$LOCALE/words/bride.$CA" + }, + { + "description": "brother", + "image": "words/brother.png", + "voice": "voices-$CA/$LOCALE/words/brother.$CA" + }, + { + "description": "child", + "image": "words/child.png", + "voice": "voices-$CA/$LOCALE/words/child.$CA" + }, + { + "description": "couple", + "image": "words/couple.png", + "voice": "voices-$CA/$LOCALE/words/couple.$CA" + }, + { + "description": "dad", + "image": "words/dad.png", + "voice": "voices-$CA/$LOCALE/words/dad.$CA" + }, + { + "description": "dwarf", + "image": "words/dwarf.png", + "voice": "voices-$CA/$LOCALE/words/dwarf.$CA" + }, + { + "description": "family", + "image": "words/family.png", + "voice": "voices-$CA/$LOCALE/words/family.$CA" + }, + { + "description": "friend", + "image": "words/friend.png", + "voice": "voices-$CA/$LOCALE/words/friend.$CA" + }, + { + "description": "girl", + "image": "words/girl.png", + "voice": "voices-$CA/$LOCALE/words/girl.$CA" + }, + { + "description": "gnome", + "image": "words/gnome.png", + "voice": "voices-$CA/$LOCALE/words/gnome.$CA" + }, + { + "description": "grandmother", + "image": "words/grandmother.png", + "voice": "voices-$CA/$LOCALE/words/grandmother.$CA" + }, + { + "description": "husband", + "image": "words/husband.png", + "voice": "voices-$CA/$LOCALE/words/husband.$CA" + }, + { + "description": "lady", + "image": "words/lady.png", + "voice": "voices-$CA/$LOCALE/words/lady.$CA" + }, + { + "description": "man", + "image": "words/man.png", + "voice": "voices-$CA/$LOCALE/words/man.$CA" + }, + { + "description": "mate", + "image": "words/mate.png", + "voice": "voices-$CA/$LOCALE/words/mate.$CA" + }, + { + "description": "mate female", + "image": "words/mate_female.png", + "voice": "voices-$CA/$LOCALE/words/mate_female.$CA" + }, + { + "description": "mate male", + "image": "words/mate_male.png", + "voice": "voices-$CA/$LOCALE/words/mate_male.$CA" + }, + { + "description": "men", + "image": "words/men.png", + "voice": "voices-$CA/$LOCALE/words/men.$CA" + }, + { + "description": "mom", + "image": "words/mom.png", + "voice": "voices-$CA/$LOCALE/words/mom.$CA" + }, + { + "description": "mother", + "image": "words/mother.png", + "voice": "voices-$CA/$LOCALE/words/mother.$CA" + }, + { + "description": "pal", + "image": "words/pal.png", + "voice": "voices-$CA/$LOCALE/words/pal.$CA" + }, + { + "description": "people", + "image": "words/people.png", + "voice": "voices-$CA/$LOCALE/words/people.$CA" + }, + { + "description": "sister", + "image": "words/sister.png", + "voice": "voices-$CA/$LOCALE/words/sister.$CA" + }, + { + "description": "son", + "image": "words/son.png", + "voice": "voices-$CA/$LOCALE/words/son.$CA" + }, + { + "description": "tribe", + "image": "words/tribe.png", + "voice": "voices-$CA/$LOCALE/words/tribe.$CA" + }, + { + "description": "twin boys", + "image": "words/twin_boys.png", + "voice": "voices-$CA/$LOCALE/words/twin_boys.$CA" + }, + { + "description": "twin girls", + "image": "words/twin_girls.png", + "voice": "voices-$CA/$LOCALE/words/twin_girls.$CA" + }, + { + "description": "wife", + "image": "words/wife.png", + "voice": "voices-$CA/$LOCALE/words/wife.$CA" + }, + { + "description": "woman", + "image": "words/woman.png", + "voice": "voices-$CA/$LOCALE/words/woman.$CA" + } + ] + }, + { + "type": "lesson", + "name": "sport", + "content": [ + { + "description": "athlete", + "image": "words/athlete.png", + "voice": "voices-$CA/$LOCALE/words/athlete.$CA" + }, + { + "description": "ballet", + "image": "words/ballet.png", + "voice": "voices-$CA/$LOCALE/words/ballet.$CA" + }, + { + "description": "camp", + "image": "words/camp.png", + "voice": "voices-$CA/$LOCALE/words/camp.$CA" + }, + { + "description": "cheer", + "image": "words/cheer.png", + "voice": "voices-$CA/$LOCALE/words/cheer.$CA" + }, + { + "description": "climb", + "image": "words/climb.png", + "voice": "voices-$CA/$LOCALE/words/climb.$CA" + }, + { + "description": "dance", + "image": "words/dance.png", + "voice": "voices-$CA/$LOCALE/words/dance.$CA" + }, + { + "description": "dive", + "image": "words/dive.png", + "voice": "voices-$CA/$LOCALE/words/dive.$CA" + }, + { + "description": "explore", + "image": "words/explore.png", + "voice": "voices-$CA/$LOCALE/words/explore.$CA" + }, + { + "description": "golf", + "image": "words/golf.png", + "voice": "voices-$CA/$LOCALE/words/golf.$CA" + }, + { + "description": "hike", + "image": "words/hike.png", + "voice": "voices-$CA/$LOCALE/words/hike.$CA" + }, + { + "description": "hit", + "image": "words/hit.png", + "voice": "voices-$CA/$LOCALE/words/hit.$CA" + }, + { + "description": "hockey", + "image": "words/hockey.png", + "voice": "voices-$CA/$LOCALE/words/hockey.$CA" + }, + { + "description": "hop", + "image": "words/hop.png", + "voice": "voices-$CA/$LOCALE/words/hop.$CA" + }, + { + "description": "jog", + "image": "words/jog.png", + "voice": "voices-$CA/$LOCALE/words/jog.$CA" + }, + { + "description": "judo", + "image": "words/judo.png", + "voice": "voices-$CA/$LOCALE/words/judo.$CA" + }, + { + "description": "lift", + "image": "words/lift.png", + "voice": "voices-$CA/$LOCALE/words/lift.$CA" + }, + { + "description": "race", + "image": "words/race.png", + "voice": "voices-$CA/$LOCALE/words/race.$CA" + }, + { + "description": "ran", + "image": "words/ran.png", + "voice": "voices-$CA/$LOCALE/words/ran.$CA" + }, + { + "description": "ride", + "image": "words/ride.png", + "voice": "voices-$CA/$LOCALE/words/ride.$CA" + }, + { + "description": "rowing", + "image": "words/rowing.png", + "voice": "voices-$CA/$LOCALE/words/rowing.$CA" + }, + { + "description": "skate", + "image": "words/skate.png", + "voice": "voices-$CA/$LOCALE/words/skate.$CA" + }, + { + "description": "ski", + "image": "words/ski.png", + "voice": "voices-$CA/$LOCALE/words/ski.$CA" + }, + { + "description": "sport", + "image": "words/sport.png", + "voice": "voices-$CA/$LOCALE/words/sport.$CA" + }, + { + "description": "swim", + "image": "words/swim.png", + "voice": "voices-$CA/$LOCALE/words/swim.$CA" + }, + { + "description": "tennis", + "image": "words/tennis.png", + "voice": "voices-$CA/$LOCALE/words/tennis.$CA" + }, + { + "description": "throw", + "image": "words/throw.png", + "voice": "voices-$CA/$LOCALE/words/throw.$CA" + } + ] + }, + { + "type": "lesson", + "name": "food", + "content": [ + { + "description": "beef", + "image": "words/beef.png", + "voice": "voices-$CA/$LOCALE/words/beef.$CA" + }, + { + "description": "bone", + "image": "words/bone.png", + "voice": "voices-$CA/$LOCALE/words/bone.$CA" + }, + { + "description": "bread", + "image": "words/bread.png", + "voice": "voices-$CA/$LOCALE/words/bread.$CA" + }, + { + "description": "bun", + "image": "words/bun.png", + "voice": "voices-$CA/$LOCALE/words/bun.$CA" + }, + { + "description": "butter", + "image": "words/butter.png", + "voice": "voices-$CA/$LOCALE/words/butter.$CA" + }, + { + "description": "cake", + "image": "words/cake.png", + "voice": "voices-$CA/$LOCALE/words/cake.$CA" + }, + { + "description": "candy", + "image": "words/candy.png", + "voice": "voices-$CA/$LOCALE/words/candy.$CA" + }, + { + "description": "cereal", + "image": "words/cereal.png", + "voice": "voices-$CA/$LOCALE/words/cereal.$CA" + }, + { + "description": "cheese", + "image": "words/cheese.png", + "voice": "voices-$CA/$LOCALE/words/cheese.$CA" + }, + { + "description": "chocolate", + "image": "words/chocolate.png", + "voice": "voices-$CA/$LOCALE/words/chocolate.$CA" + }, + { + "description": "coffee", + "image": "words/coffee.png", + "voice": "voices-$CA/$LOCALE/words/coffee.$CA" + }, + { + "description": "cookie", + "image": "words/cookie.png", + "voice": "voices-$CA/$LOCALE/words/cookie.$CA" + }, + { + "description": "crepe", + "image": "words/crepe.png", + "voice": "voices-$CA/$LOCALE/words/crepe.$CA" + }, + { + "description": "crumb", + "image": "words/crumb.png", + "voice": "voices-$CA/$LOCALE/words/crumb.$CA" + }, + { + "description": "crust", + "image": "words/crust.png", + "voice": "voices-$CA/$LOCALE/words/crust.$CA" + }, + { + "description": "dessert", + "image": "words/dessert.png", + "voice": "voices-$CA/$LOCALE/words/dessert.$CA" + }, + { + "description": "doughnut", + "image": "words/doughnut.png", + "voice": "voices-$CA/$LOCALE/words/doughnut.$CA" + }, + { + "description": "drink", + "image": "words/drink.png", + "voice": "voices-$CA/$LOCALE/words/drink.$CA" + }, + { + "description": "egg", + "image": "words/egg.png", + "voice": "voices-$CA/$LOCALE/words/egg.$CA" + }, + { + "description": "feast", + "image": "words/feast.png", + "voice": "voices-$CA/$LOCALE/words/feast.$CA" + }, + { + "description": "flour", + "image": "words/flour.png", + "voice": "voices-$CA/$LOCALE/words/flour.$CA" + }, + { + "description": "food", + "image": "words/food.png", + "voice": "voices-$CA/$LOCALE/words/food.$CA" + }, + { + "description": "fries", + "image": "words/fries.png", + "voice": "voices-$CA/$LOCALE/words/fries.$CA" + }, + { + "description": "fudge", + "image": "words/fudge.png", + "voice": "voices-$CA/$LOCALE/words/fudge.$CA" + }, + { + "description": "gum", + "image": "words/gum.png", + "voice": "voices-$CA/$LOCALE/words/gum.$CA" + }, + { + "description": "ham", + "image": "words/ham.png", + "voice": "voices-$CA/$LOCALE/words/ham.$CA" + }, + { + "description": "hot dog", + "image": "words/hot_dog.png", + "voice": "voices-$CA/$LOCALE/words/hot_dog.$CA" + }, + { + "description": "ice", + "image": "words/ice.png", + "voice": "voices-$CA/$LOCALE/words/ice.$CA" + }, + { + "description": "jam", + "image": "words/jam.png", + "voice": "voices-$CA/$LOCALE/words/jam.$CA" + }, + { + "description": "jelly", + "image": "words/jelly.png", + "voice": "voices-$CA/$LOCALE/words/jelly.$CA" + }, + { + "description": "juice", + "image": "words/juice.png", + "voice": "voices-$CA/$LOCALE/words/juice.$CA" + }, + { + "description": "lemonade", + "image": "words/lemonade.png", + "voice": "voices-$CA/$LOCALE/words/lemonade.$CA" + }, + { + "description": "lunch", + "image": "words/lunch.png", + "voice": "voices-$CA/$LOCALE/words/lunch.$CA" + }, + { + "description": "mashed potatoes", + "image": "words/mashed_potatoes.png", + "voice": "voices-$CA/$LOCALE/words/mashed_potatoes.$CA" + }, + { + "description": "meal", + "image": "words/meal.png", + "voice": "voices-$CA/$LOCALE/words/meal.$CA" + }, + { + "description": "meat", + "image": "words/meat.png", + "voice": "voices-$CA/$LOCALE/words/meat.$CA" + }, + { + "description": "milk", + "image": "words/milk.png", + "voice": "voices-$CA/$LOCALE/words/milk.$CA" + }, + { + "description": "pepper", + "image": "words/pepper.png", + "voice": "voices-$CA/$LOCALE/words/pepper.$CA" + }, + { + "description": "pie", + "image": "words/pie.png", + "voice": "voices-$CA/$LOCALE/words/pie.$CA" + }, + { + "description": "pizza", + "image": "words/pizza.png", + "voice": "voices-$CA/$LOCALE/words/pizza.$CA" + }, + { + "description": "pop", + "image": "words/pop.png", + "voice": "voices-$CA/$LOCALE/words/pop.$CA" + }, + { + "description": "rice", + "image": "words/rice.png", + "voice": "voices-$CA/$LOCALE/words/rice.$CA" + }, + { + "description": "roast", + "image": "words/roast.png", + "voice": "voices-$CA/$LOCALE/words/roast.$CA" + }, + { + "description": "sandwich", + "image": "words/sandwich.png", + "voice": "voices-$CA/$LOCALE/words/sandwich.$CA" + }, + { + "description": "sauce", + "image": "words/sauce.png", + "voice": "voices-$CA/$LOCALE/words/sauce.$CA" + }, + { + "description": "sausage", + "image": "words/sausage.png", + "voice": "voices-$CA/$LOCALE/words/sausage.$CA" + }, + { + "description": "snack", + "image": "words/snack.png", + "voice": "voices-$CA/$LOCALE/words/snack.$CA" + }, + { + "description": "soup", + "image": "words/soup.png", + "voice": "voices-$CA/$LOCALE/words/soup.$CA" + }, + { + "description": "spaghetti", + "image": "words/spaghetti.png", + "voice": "voices-$CA/$LOCALE/words/spaghetti.$CA" + }, + { + "description": "spice", + "image": "words/spice.png", + "voice": "voices-$CA/$LOCALE/words/spice.$CA" + }, + { + "description": "sprinkle", + "image": "words/sprinkle.png", + "voice": "voices-$CA/$LOCALE/words/sprinkle.$CA" + }, + { + "description": "steak", + "image": "words/steak.png", + "voice": "voices-$CA/$LOCALE/words/steak.$CA" + }, + { + "description": "stew", + "image": "words/stew.png", + "voice": "voices-$CA/$LOCALE/words/stew.$CA" + }, + { + "description": "sugar", + "image": "words/sugar.png", + "voice": "voices-$CA/$LOCALE/words/sugar.$CA" + }, + { + "description": "treat", + "image": "words/treat.png", + "voice": "voices-$CA/$LOCALE/words/treat.$CA" + }, + { + "description": "yogurt", + "image": "words/yogurt.png", + "voice": "voices-$CA/$LOCALE/words/yogurt.$CA" + } + ] + } + ] + }, + { + "type": "chapter", + "name": "nature", + "content": [ + { + "type": "lesson", + "name": "animal", + "content": [ + { + "description": "alligator", + "image": "words/alligator.png", + "voice": "voices-$CA/$LOCALE/words/alligator.$CA" + }, + { + "description": "animal", + "image": "words/animal.png", + "voice": "voices-$CA/$LOCALE/words/animal.$CA" + }, + { + "description": "ant", + "image": "words/ant.png", + "voice": "voices-$CA/$LOCALE/words/ant.$CA" + }, + { + "description": "anteater", + "image": "words/anteater.png", + "voice": "voices-$CA/$LOCALE/words/anteater.$CA" + }, + { + "description": "antelope", + "image": "words/antelope.png", + "voice": "voices-$CA/$LOCALE/words/antelope.$CA" + }, + { + "description": "bait", + "image": "words/bait.png", + "voice": "voices-$CA/$LOCALE/words/bait.$CA" + }, + { + "description": "bat", + "image": "words/bat.png", + "voice": "voices-$CA/$LOCALE/words/bat.$CA" + }, + { + "description": "bear", + "image": "words/bear.png", + "voice": "voices-$CA/$LOCALE/words/bear.$CA" + }, + { + "description": "beaver", + "image": "words/beaver.png", + "voice": "voices-$CA/$LOCALE/words/beaver.$CA" + }, + { + "description": "bee", + "image": "words/bee.png", + "voice": "voices-$CA/$LOCALE/words/bee.$CA" + }, + { + "description": "beetle", + "image": "words/beetle.png", + "voice": "voices-$CA/$LOCALE/words/beetle.$CA" + }, + { + "description": "bird", + "image": "words/bird.png", + "voice": "voices-$CA/$LOCALE/words/bird.$CA" + }, + { + "description": "blackbird", + "image": "words/blackbird.png", + "voice": "voices-$CA/$LOCALE/words/blackbird.$CA" + }, + { + "description": "buffalo", + "image": "words/buffalo.png", + "voice": "voices-$CA/$LOCALE/words/buffalo.$CA" + }, + { + "description": "bug", + "image": "words/bug.png", + "voice": "voices-$CA/$LOCALE/words/bug.$CA" + }, + { + "description": "bull", + "image": "words/bull.png", + "voice": "voices-$CA/$LOCALE/words/bull.$CA" + }, + { + "description": "butterfly", + "image": "words/butterfly.png", + "voice": "voices-$CA/$LOCALE/words/butterfly.$CA" + }, + { + "description": "camel", + "image": "words/camel.png", + "voice": "voices-$CA/$LOCALE/words/camel.$CA" + }, + { + "description": "canary", + "image": "words/canary.png", + "voice": "voices-$CA/$LOCALE/words/canary.$CA" + }, + { + "description": "cat", + "image": "words/cat.png", + "voice": "voices-$CA/$LOCALE/words/cat.$CA" + }, + { + "description": "caterpillar", + "image": "words/caterpillar.png", + "voice": "voices-$CA/$LOCALE/words/caterpillar.$CA" + }, + { + "description": "female cat", + "image": "words/cat_female.png", + "voice": "voices-$CA/$LOCALE/words/cat_female.$CA" + }, + { + "description": "centipede", + "image": "words/centipede.png", + "voice": "voices-$CA/$LOCALE/words/centipede.$CA" + }, + { + "description": "chameleon", + "image": "words/chameleon.png", + "voice": "voices-$CA/$LOCALE/words/chameleon.$CA" + }, + { + "description": "chick", + "image": "words/chick.png", + "voice": "voices-$CA/$LOCALE/words/chick.$CA" + }, + { + "description": "chicken", + "image": "words/chicken.png", + "voice": "voices-$CA/$LOCALE/words/chicken.$CA" + }, + { + "description": "chimp", + "image": "words/chimp.png", + "voice": "voices-$CA/$LOCALE/words/chimp.$CA" + }, + { + "description": "clam", + "image": "words/clam.png", + "voice": "voices-$CA/$LOCALE/words/clam.$CA" + }, + { + "description": "claw", + "image": "words/claw.png", + "voice": "voices-$CA/$LOCALE/words/claw.$CA" + }, + { + "description": "cobra", + "image": "words/cobra.png", + "voice": "voices-$CA/$LOCALE/words/cobra.$CA" + }, + { + "description": "cod", + "image": "words/cod.png", + "voice": "voices-$CA/$LOCALE/words/cod.$CA" + }, + { + "description": "colt", + "image": "words/colt.png", + "voice": "voices-$CA/$LOCALE/words/colt.$CA" + }, + { + "description": "cow", + "image": "words/cow.png", + "voice": "voices-$CA/$LOCALE/words/cow.$CA" + }, + { + "description": "crab", + "image": "words/crab.png", + "voice": "voices-$CA/$LOCALE/words/crab.$CA" + }, + { + "description": "crocodile", + "image": "words/crocodile.png", + "voice": "voices-$CA/$LOCALE/words/crocodile.$CA" + }, + { + "description": "crow", + "image": "words/crow.png", + "voice": "voices-$CA/$LOCALE/words/crow.$CA" + }, + { + "description": "deer", + "image": "words/deer.png", + "voice": "voices-$CA/$LOCALE/words/deer.$CA" + }, + { + "description": "den", + "image": "words/den.png", + "voice": "voices-$CA/$LOCALE/words/den.$CA" + }, + { + "description": "doe", + "image": "words/doe.png", + "voice": "voices-$CA/$LOCALE/words/doe.$CA" + }, + { + "description": "dog", + "image": "words/dog.png", + "voice": "voices-$CA/$LOCALE/words/dog.$CA" + }, + { + "description": "dolphin", + "image": "words/dolphin.png", + "voice": "voices-$CA/$LOCALE/words/dolphin.$CA" + }, + { + "description": "dove", + "image": "words/dove.png", + "voice": "voices-$CA/$LOCALE/words/dove.$CA" + }, + { + "description": "dragon", + "image": "words/dragon.png", + "voice": "voices-$CA/$LOCALE/words/dragon.$CA" + }, + { + "description": "dragonfly", + "image": "words/dragonfly.png", + "voice": "voices-$CA/$LOCALE/words/dragonfly.$CA" + }, + { + "description": "duck", + "image": "words/duck.png", + "voice": "voices-$CA/$LOCALE/words/duck.$CA" + }, + { + "description": "duck mother", + "image": "words/duck_mother.png", + "voice": "voices-$CA/$LOCALE/words/duck_mother.$CA" + }, + { + "description": "eagle", + "image": "words/eagle.png", + "voice": "voices-$CA/$LOCALE/words/eagle.$CA" + }, + { + "description": "elk", + "image": "words/elk.png", + "voice": "voices-$CA/$LOCALE/words/elk.$CA" + }, + { + "description": "fawn", + "image": "words/fawn.png", + "voice": "voices-$CA/$LOCALE/words/fawn.$CA" + }, + { + "description": "feather", + "image": "words/feather.png", + "voice": "voices-$CA/$LOCALE/words/feather.$CA" + }, + { + "description": "fin", + "image": "words/fin.png", + "voice": "voices-$CA/$LOCALE/words/fin.$CA" + }, + { + "description": "fish", + "image": "words/fish.png", + "voice": "voices-$CA/$LOCALE/words/fish.$CA" + }, + { + "description": "flamingo", + "image": "words/flamingo.png", + "voice": "voices-$CA/$LOCALE/words/flamingo.$CA" + }, + { + "description": "flies", + "image": "words/flies.png", + "voice": "voices-$CA/$LOCALE/words/flies.$CA" + }, + { + "description": "fox", + "image": "words/fox.png", + "voice": "voices-$CA/$LOCALE/words/fox.$CA" + }, + { + "description": "frog", + "image": "words/frog.png", + "voice": "voices-$CA/$LOCALE/words/frog.$CA" + }, + { + "description": "fur", + "image": "words/fur.png", + "voice": "voices-$CA/$LOCALE/words/fur.$CA" + }, + { + "description": "giraffe", + "image": "words/giraffe.png", + "voice": "voices-$CA/$LOCALE/words/giraffe.$CA" + }, + { + "description": "goat", + "image": "words/goat.png", + "voice": "voices-$CA/$LOCALE/words/goat.$CA" + }, + { + "description": "goose", + "image": "words/goose.png", + "voice": "voices-$CA/$LOCALE/words/goose.$CA" + }, + { + "description": "gorilla", + "image": "words/gorilla.png", + "voice": "voices-$CA/$LOCALE/words/gorilla.$CA" + }, + { + "description": "guinea pig", + "image": "words/guinea_pig.png", + "voice": "voices-$CA/$LOCALE/words/guinea_pig.$CA" + }, + { + "description": "hedgehog", + "image": "words/hedgehog.png", + "voice": "voices-$CA/$LOCALE/words/hedgehog.$CA" + }, + { + "description": "hen", + "image": "words/hen.png", + "voice": "voices-$CA/$LOCALE/words/hen.$CA" + }, + { + "description": "herd", + "image": "words/herd.png", + "voice": "voices-$CA/$LOCALE/words/herd.$CA" + }, + { + "description": "hippopotamus", + "image": "words/hippopotamus.png", + "voice": "voices-$CA/$LOCALE/words/hippopotamus.$CA" + }, + { + "description": "hive", + "image": "words/hive.png", + "voice": "voices-$CA/$LOCALE/words/hive.$CA" + }, + { + "description": "horse", + "image": "words/horse.png", + "voice": "voices-$CA/$LOCALE/words/horse.$CA" + }, + { + "description": "hound", + "image": "words/hound.png", + "voice": "voices-$CA/$LOCALE/words/hound.$CA" + }, + { + "description": "hummingbird", + "image": "words/hummingbird.png", + "voice": "voices-$CA/$LOCALE/words/hummingbird.$CA" + }, + { + "description": "hyena", + "image": "words/hyena.png", + "voice": "voices-$CA/$LOCALE/words/hyena.$CA" + }, + { + "description": "iguana", + "image": "words/iguana.png", + "voice": "voices-$CA/$LOCALE/words/iguana.$CA" + }, + { + "description": "jaguar", + "image": "words/jaguar.png", + "voice": "voices-$CA/$LOCALE/words/jaguar.$CA" + }, + { + "description": "jay", + "image": "words/jay.png", + "voice": "voices-$CA/$LOCALE/words/jay.$CA" + }, + { + "description": "jellyfish", + "image": "words/jellyfish.png", + "voice": "voices-$CA/$LOCALE/words/jellyfish.$CA" + }, + { + "description": "kangaroo", + "image": "words/kangaroo.png", + "voice": "voices-$CA/$LOCALE/words/kangaroo.$CA" + }, + { + "description": "kitten", + "image": "words/kitten.png", + "voice": "voices-$CA/$LOCALE/words/kitten.$CA" + }, + { + "description": "koala", + "image": "words/koala.png", + "voice": "voices-$CA/$LOCALE/words/koala.$CA" + }, + { + "description": "ladybug", + "image": "words/ladybug.png", + "voice": "voices-$CA/$LOCALE/words/ladybug.$CA" + }, + { + "description": "lama", + "image": "words/lama.png", + "voice": "voices-$CA/$LOCALE/words/lama.$CA" + }, + { + "description": "lamb", + "image": "words/lamb.png", + "voice": "voices-$CA/$LOCALE/words/lamb.$CA" + }, + { + "description": "leg animal", + "image": "words/leg_animal.png", + "voice": "voices-$CA/$LOCALE/words/leg_animal.$CA" + }, + { + "description": "lemur", + "image": "words/lemur.png", + "voice": "voices-$CA/$LOCALE/words/lemur.$CA" + }, + { + "description": "leopard", + "image": "words/leopard.png", + "voice": "voices-$CA/$LOCALE/words/leopard.$CA" + }, + { + "description": "lion", + "image": "words/lion.png", + "voice": "voices-$CA/$LOCALE/words/lion.$CA" + }, + { + "description": "lion cub", + "image": "words/lion_cub.png", + "voice": "voices-$CA/$LOCALE/words/lion_cub.$CA" + }, + { + "description": "lizard", + "image": "words/lizard.png", + "voice": "voices-$CA/$LOCALE/words/lizard.$CA" + }, + { + "description": "lobster", + "image": "words/lobster.png", + "voice": "voices-$CA/$LOCALE/words/lobster.$CA" + }, + { + "description": "magpie", + "image": "words/magpie.png", + "voice": "voices-$CA/$LOCALE/words/magpie.$CA" + }, + { + "description": "mane", + "image": "words/mane.png", + "voice": "voices-$CA/$LOCALE/words/mane.$CA" + }, + { + "description": "mice", + "image": "words/mice.png", + "voice": "voices-$CA/$LOCALE/words/mice.$CA" + }, + { + "description": "mole", + "image": "words/mole.png", + "voice": "voices-$CA/$LOCALE/words/mole.$CA" + }, + { + "description": "moose", + "image": "words/moose.png", + "voice": "voices-$CA/$LOCALE/words/moose.$CA" + }, + { + "description": "mosquito", + "image": "words/mosquito.png", + "voice": "voices-$CA/$LOCALE/words/mosquito.$CA" + }, + { + "description": "mouse", + "image": "words/mouse.png", + "voice": "voices-$CA/$LOCALE/words/mouse.$CA" + }, + { + "description": "mule", + "image": "words/mule.png", + "voice": "voices-$CA/$LOCALE/words/mule.$CA" + }, + { + "description": "opossum", + "image": "words/opossum.png", + "voice": "voices-$CA/$LOCALE/words/opossum.$CA" + }, + { + "description": "ostrich", + "image": "words/ostrich.png", + "voice": "voices-$CA/$LOCALE/words/ostrich.$CA" + }, + { + "description": "otter", + "image": "words/otter.png", + "voice": "voices-$CA/$LOCALE/words/otter.$CA" + }, + { + "description": "owl", + "image": "words/owl.png", + "voice": "voices-$CA/$LOCALE/words/owl.$CA" + }, + { + "description": "ox", + "image": "words/ox.png", + "voice": "voices-$CA/$LOCALE/words/ox.$CA" + }, + { + "description": "oyster", + "image": "words/oyster.png", + "voice": "voices-$CA/$LOCALE/words/oyster.$CA" + }, + { + "description": "panda", + "image": "words/panda.png", + "voice": "voices-$CA/$LOCALE/words/panda.$CA" + }, + { + "description": "panther", + "image": "words/panther.png", + "voice": "voices-$CA/$LOCALE/words/panther.$CA" + }, + { + "description": "parakeet", + "image": "words/parakeet.png", + "voice": "voices-$CA/$LOCALE/words/parakeet.$CA" + }, + { + "description": "parrot", + "image": "words/parrot.png", + "voice": "voices-$CA/$LOCALE/words/parrot.$CA" + }, + { + "description": "paw", + "image": "words/paw.png", + "voice": "voices-$CA/$LOCALE/words/paw.$CA" + }, + { + "description": "peacock", + "image": "words/peacock.png", + "voice": "voices-$CA/$LOCALE/words/peacock.$CA" + }, + { + "description": "pelican", + "image": "words/pelican.png", + "voice": "voices-$CA/$LOCALE/words/pelican.$CA" + }, + { + "description": "pet", + "image": "words/pet.png", + "voice": "voices-$CA/$LOCALE/words/pet.$CA" + }, + { + "description": "pig", + "image": "words/pig.png", + "voice": "voices-$CA/$LOCALE/words/pig.$CA" + }, + { + "description": "pigeon", + "image": "words/pigeon.png", + "voice": "voices-$CA/$LOCALE/words/pigeon.$CA" + }, + { + "description": "piranha", + "image": "words/piranha.png", + "voice": "voices-$CA/$LOCALE/words/piranha.$CA" + }, + { + "description": "pony", + "image": "words/pony.png", + "voice": "voices-$CA/$LOCALE/words/pony.$CA" + }, + { + "description": "pug", + "image": "words/pug.png", + "voice": "voices-$CA/$LOCALE/words/pug.$CA" + }, + { + "description": "puppy", + "image": "words/puppy.png", + "voice": "voices-$CA/$LOCALE/words/puppy.$CA" + }, + { + "description": "rabbit", + "image": "words/rabbit.png", + "voice": "voices-$CA/$LOCALE/words/rabbit.$CA" + }, + { + "description": "baby rabbit", + "image": "words/rabbit_baby.png", + "voice": "voices-$CA/$LOCALE/words/rabbit_baby.$CA" + }, + { + "description": "rat", + "image": "words/rat.png", + "voice": "voices-$CA/$LOCALE/words/rat.$CA" + }, + { + "description": "reptile", + "image": "words/reptile.png", + "voice": "voices-$CA/$LOCALE/words/reptile.$CA" + }, + { + "description": "rhinoceros", + "image": "words/rhinoceros.png", + "voice": "voices-$CA/$LOCALE/words/rhinoceros.$CA" + }, + { + "description": "salamander", + "image": "words/salamander.png", + "voice": "voices-$CA/$LOCALE/words/salamander.$CA" + }, + { + "description": "salmon", + "image": "words/salmon.png", + "voice": "voices-$CA/$LOCALE/words/salmon.$CA" + }, + { + "description": "scorpion", + "image": "words/scorpion.png", + "voice": "voices-$CA/$LOCALE/words/scorpion.$CA" + }, + { + "description": "shark", + "image": "words/shark.png", + "voice": "voices-$CA/$LOCALE/words/shark.$CA" + }, + { + "description": "sheep", + "image": "words/sheep.png", + "voice": "voices-$CA/$LOCALE/words/sheep.$CA" + }, + { + "description": "shell", + "image": "words/shell.png", + "voice": "voices-$CA/$LOCALE/words/shell.$CA" + }, + { + "description": "shrimp", + "image": "words/shrimp.png", + "voice": "voices-$CA/$LOCALE/words/shrimp.$CA" + }, + { + "description": "skunk", + "image": "words/skunk.png", + "voice": "voices-$CA/$LOCALE/words/skunk.$CA" + }, + { + "description": "slime", + "image": "words/slime.png", + "voice": "voices-$CA/$LOCALE/words/slime.$CA" + }, + { + "description": "sloth", + "image": "words/sloth.png", + "voice": "voices-$CA/$LOCALE/words/sloth.$CA" + }, + { + "description": "slug", + "image": "words/slug.png", + "voice": "voices-$CA/$LOCALE/words/slug.$CA" + }, + { + "description": "snail", + "image": "words/snail.png", + "voice": "voices-$CA/$LOCALE/words/snail.$CA" + }, + { + "description": "snake", + "image": "words/snake.png", + "voice": "voices-$CA/$LOCALE/words/snake.$CA" + }, + { + "description": "sole", + "image": "words/sole.png", + "voice": "voices-$CA/$LOCALE/words/sole.$CA" + }, + { + "description": "sparrow", + "image": "words/sparrow.png", + "voice": "voices-$CA/$LOCALE/words/sparrow.$CA" + }, + { + "description": "spider", + "image": "words/spider.png", + "voice": "voices-$CA/$LOCALE/words/spider.$CA" + }, + { + "description": "spike", + "image": "words/spike.png", + "voice": "voices-$CA/$LOCALE/words/spike.$CA" + }, + { + "description": "squid", + "image": "words/squid.png", + "voice": "voices-$CA/$LOCALE/words/squid.$CA" + }, + { + "description": "squirrel", + "image": "words/squirrel.png", + "voice": "voices-$CA/$LOCALE/words/squirrel.$CA" + }, + { + "description": "starfish", + "image": "words/starfish.png", + "voice": "voices-$CA/$LOCALE/words/starfish.$CA" + }, + { + "description": "swan", + "image": "words/swan.png", + "voice": "voices-$CA/$LOCALE/words/swan.$CA" + }, + { + "description": "tadpole", + "image": "words/tadpole.png", + "voice": "voices-$CA/$LOCALE/words/tadpole.$CA" + }, + { + "description": "tail", + "image": "words/tail.png", + "voice": "voices-$CA/$LOCALE/words/tail.$CA" + }, + { + "description": "tick", + "image": "words/tick.png", + "voice": "voices-$CA/$LOCALE/words/tick.$CA" + }, + { + "description": "tiger", + "image": "words/tiger.png", + "voice": "voices-$CA/$LOCALE/words/tiger.$CA" + }, + { + "description": "toad", + "image": "words/toad.png", + "voice": "voices-$CA/$LOCALE/words/toad.$CA" + }, + { + "description": "turkey", + "image": "words/turkey.png", + "voice": "voices-$CA/$LOCALE/words/turkey.$CA" + }, + { + "description": "turtle", + "image": "words/turtle.png", + "voice": "voices-$CA/$LOCALE/words/turtle.$CA" + }, + { + "description": "tusk", + "image": "words/tusk.png", + "voice": "voices-$CA/$LOCALE/words/tusk.$CA" + }, + { + "description": "viper", + "image": "words/viper.png", + "voice": "voices-$CA/$LOCALE/words/viper.$CA" + }, + { + "description": "vulture", + "image": "words/vulture.png", + "voice": "voices-$CA/$LOCALE/words/vulture.$CA" + }, + { + "description": "wasp", + "image": "words/wasp.png", + "voice": "voices-$CA/$LOCALE/words/wasp.$CA" + }, + { + "description": "whale", + "image": "words/whale.png", + "voice": "voices-$CA/$LOCALE/words/whale.$CA" + }, + { + "description": "wing", + "image": "words/wing.png", + "voice": "voices-$CA/$LOCALE/words/wing.$CA" + }, + { + "description": "wolf", + "image": "words/wolf.png", + "voice": "voices-$CA/$LOCALE/words/wolf.$CA" + }, + { + "description": "zebra", + "image": "words/zebra.png", + "voice": "voices-$CA/$LOCALE/words/zebra.$CA" + } + ] + }, + { + "type": "lesson", + "name": "fruit", + "content": [ + { + "description": "apple", + "image": "words/apple.png", + "voice": "voices-$CA/$LOCALE/words/apple.$CA" + }, + { + "description": "apricot", + "image": "words/apricot.png", + "voice": "voices-$CA/$LOCALE/words/apricot.$CA" + }, + { + "description": "blackberry", + "image": "words/blackberry.png", + "voice": "voices-$CA/$LOCALE/words/blackberry.$CA" + }, + { + "description": "blueberry", + "image": "words/blueberry.png", + "voice": "voices-$CA/$LOCALE/words/blueberry.$CA" + }, + { + "description": "cacao", + "image": "words/cacao.png", + "voice": "voices-$CA/$LOCALE/words/cacao.$CA" + }, + { + "description": "cherry", + "image": "words/cherry.png", + "voice": "voices-$CA/$LOCALE/words/cherry.$CA" + }, + { + "description": "coconut", + "image": "words/coconut.png", + "voice": "voices-$CA/$LOCALE/words/coconut.$CA" + }, + { + "description": "date fruit", + "image": "words/date_fruit.png", + "voice": "voices-$CA/$LOCALE/words/date_fruit.$CA" + }, + { + "description": "fig", + "image": "words/fig.png", + "voice": "voices-$CA/$LOCALE/words/fig.$CA" + }, + { + "description": "fruit", + "image": "words/fruit.png", + "voice": "voices-$CA/$LOCALE/words/fruit.$CA" + }, + { + "description": "grape", + "image": "words/grape.png", + "voice": "voices-$CA/$LOCALE/words/grape.$CA" + }, + { + "description": "grapefruit", + "image": "words/grapefruit.png", + "voice": "voices-$CA/$LOCALE/words/grapefruit.$CA" + }, + { + "description": "kernel", + "image": "words/kernel.png", + "voice": "voices-$CA/$LOCALE/words/kernel.$CA" + }, + { + "description": "kiwi", + "image": "words/kiwi.png", + "voice": "voices-$CA/$LOCALE/words/kiwi.$CA" + }, + { + "description": "lemon", + "image": "words/lemon.png", + "voice": "voices-$CA/$LOCALE/words/lemon.$CA" + }, + { + "description": "lime", + "image": "words/lime.png", + "voice": "voices-$CA/$LOCALE/words/lime.$CA" + }, + { + "description": "mango", + "image": "words/mango.png", + "voice": "voices-$CA/$LOCALE/words/mango.$CA" + }, + { + "description": "melon", + "image": "words/melon.png", + "voice": "voices-$CA/$LOCALE/words/melon.$CA" + }, + { + "description": "orange", + "image": "words/orange.png", + "voice": "voices-$CA/$LOCALE/words/orange.$CA" + }, + { + "description": "papaya", + "image": "words/papaya.png", + "voice": "voices-$CA/$LOCALE/words/papaya.$CA" + }, + { + "description": "peach", + "image": "words/peach.png", + "voice": "voices-$CA/$LOCALE/words/peach.$CA" + }, + { + "description": "pear", + "image": "words/pear.png", + "voice": "voices-$CA/$LOCALE/words/pear.$CA" + }, + { + "description": "plum", + "image": "words/plum.png", + "voice": "voices-$CA/$LOCALE/words/plum.$CA" + }, + { + "description": "raspberry", + "image": "words/raspberry.png", + "voice": "voices-$CA/$LOCALE/words/raspberry.$CA" + }, + { + "description": "strawberry", + "image": "words/strawberry.png", + "voice": "voices-$CA/$LOCALE/words/strawberry.$CA" + } + ] + }, + { + "type": "lesson", + "name": "nature", + "content": [ + { + "description": "bay", + "image": "words/bay.png", + "voice": "voices-$CA/$LOCALE/words/bay.$CA" + }, + { + "description": "beach", + "image": "words/beach.png", + "voice": "voices-$CA/$LOCALE/words/beach.$CA" + }, + { + "description": "canyon", + "image": "words/canyon.png", + "voice": "voices-$CA/$LOCALE/words/canyon.$CA" + }, + { + "description": "cave", + "image": "words/cave.png", + "voice": "voices-$CA/$LOCALE/words/cave.$CA" + }, + { + "description": "cavern", + "image": "words/cavern.png", + "voice": "voices-$CA/$LOCALE/words/cavern.$CA" + }, + { + "description": "cliff", + "image": "words/cliff.png", + "voice": "voices-$CA/$LOCALE/words/cliff.$CA" + }, + { + "description": "cloud", + "image": "words/cloud.png", + "voice": "voices-$CA/$LOCALE/words/cloud.$CA" + }, + { + "description": "cloudy", + "image": "words/cloudy.png", + "voice": "voices-$CA/$LOCALE/words/cloudy.$CA" + }, + { + "description": "coast", + "image": "words/coast.png", + "voice": "voices-$CA/$LOCALE/words/coast.$CA" + }, + { + "description": "cold", + "image": "words/cold.png", + "voice": "voices-$CA/$LOCALE/words/cold.$CA" + }, + { + "description": "creek", + "image": "words/creek.png", + "voice": "voices-$CA/$LOCALE/words/creek.$CA" + }, + { + "description": "crystal", + "image": "words/crystal.png", + "voice": "voices-$CA/$LOCALE/words/crystal.$CA" + }, + { + "description": "desert", + "image": "words/desert.png", + "voice": "voices-$CA/$LOCALE/words/desert.$CA" + }, + { + "description": "diamond", + "image": "words/diamond.png", + "voice": "voices-$CA/$LOCALE/words/diamond.$CA" + }, + { + "description": "dirt", + "image": "words/dirt.png", + "voice": "voices-$CA/$LOCALE/words/dirt.$CA" + }, + { + "description": "drip", + "image": "words/drip.png", + "voice": "voices-$CA/$LOCALE/words/drip.$CA" + }, + { + "description": "dune", + "image": "words/dune.png", + "voice": "voices-$CA/$LOCALE/words/dune.$CA" + }, + { + "description": "earth", + "image": "words/earth.png", + "voice": "voices-$CA/$LOCALE/words/earth.$CA" + }, + { + "description": "fall season", + "image": "words/fall_season.png", + "voice": "voices-$CA/$LOCALE/words/fall_season.$CA" + }, + { + "description": "fire", + "image": "words/fire.png", + "voice": "voices-$CA/$LOCALE/words/fire.$CA" + }, + { + "description": "flame", + "image": "words/flame.png", + "voice": "voices-$CA/$LOCALE/words/flame.$CA" + }, + { + "description": "forest", + "image": "words/forest.png", + "voice": "voices-$CA/$LOCALE/words/forest.$CA" + }, + { + "description": "garden", + "image": "words/garden.png", + "voice": "voices-$CA/$LOCALE/words/garden.$CA" + }, + { + "description": "gem", + "image": "words/gem.png", + "voice": "voices-$CA/$LOCALE/words/gem.$CA" + }, + { + "description": "ground", + "image": "words/ground.png", + "voice": "voices-$CA/$LOCALE/words/ground.$CA" + }, + { + "description": "heat", + "image": "words/heat.png", + "voice": "voices-$CA/$LOCALE/words/heat.$CA" + }, + { + "description": "hill", + "image": "words/hill.png", + "voice": "voices-$CA/$LOCALE/words/hill.$CA" + }, + { + "description": "hole", + "image": "words/hole.png", + "voice": "voices-$CA/$LOCALE/words/hole.$CA" + }, + { + "description": "iceberg", + "image": "words/iceberg.png", + "voice": "voices-$CA/$LOCALE/words/iceberg.$CA" + }, + { + "description": "island", + "image": "words/island.png", + "voice": "voices-$CA/$LOCALE/words/island.$CA" + }, + { + "description": "lake", + "image": "words/lake.png", + "voice": "voices-$CA/$LOCALE/words/lake.$CA" + }, + { + "description": "land", + "image": "words/land.png", + "voice": "voices-$CA/$LOCALE/words/land.$CA" + }, + { + "description": "lava", + "image": "words/lava.png", + "voice": "voices-$CA/$LOCALE/words/lava.$CA" + }, + { + "description": "ledge", + "image": "words/ledge.png", + "voice": "voices-$CA/$LOCALE/words/ledge.$CA" + }, + { + "description": "lightning", + "image": "words/lightning.png", + "voice": "voices-$CA/$LOCALE/words/lightning.$CA" + }, + { + "description": "moon", + "image": "words/moon.png", + "voice": "voices-$CA/$LOCALE/words/moon.$CA" + }, + { + "description": "mountain", + "image": "words/mountain.png", + "voice": "voices-$CA/$LOCALE/words/mountain.$CA" + }, + { + "description": "mud", + "image": "words/mud.png", + "voice": "voices-$CA/$LOCALE/words/mud.$CA" + }, + { + "description": "night", + "image": "words/night.png", + "voice": "voices-$CA/$LOCALE/words/night.$CA" + }, + { + "description": "ocean", + "image": "words/ocean.png", + "voice": "voices-$CA/$LOCALE/words/ocean.$CA" + }, + { + "description": "path", + "image": "words/path.png", + "voice": "voices-$CA/$LOCALE/words/path.$CA" + }, + { + "description": "peak", + "image": "words/peak.png", + "voice": "voices-$CA/$LOCALE/words/peak.$CA" + }, + { + "description": "planet", + "image": "words/planet.png", + "voice": "voices-$CA/$LOCALE/words/planet.$CA" + }, + { + "description": "pond", + "image": "words/pond.png", + "voice": "voices-$CA/$LOCALE/words/pond.$CA" + }, + { + "description": "rain", + "image": "words/rain.png", + "voice": "voices-$CA/$LOCALE/words/rain.$CA" + }, + { + "description": "river", + "image": "words/river.png", + "voice": "voices-$CA/$LOCALE/words/river.$CA" + }, + { + "description": "rock", + "image": "words/rock.png", + "voice": "voices-$CA/$LOCALE/words/rock.$CA" + }, + { + "description": "sand", + "image": "words/sand.png", + "voice": "voices-$CA/$LOCALE/words/sand.$CA" + }, + { + "description": "sea", + "image": "words/sea.png", + "voice": "voices-$CA/$LOCALE/words/sea.$CA" + }, + { + "description": "shadow", + "image": "words/shadow.png", + "voice": "voices-$CA/$LOCALE/words/shadow.$CA" + }, + { + "description": "shore", + "image": "words/shore.png", + "voice": "voices-$CA/$LOCALE/words/shore.$CA" + }, + { + "description": "sky", + "image": "words/sky.png", + "voice": "voices-$CA/$LOCALE/words/sky.$CA" + }, + { + "description": "slope", + "image": "words/slope.png", + "voice": "voices-$CA/$LOCALE/words/slope.$CA" + }, + { + "description": "smoke", + "image": "words/smoke.png", + "voice": "voices-$CA/$LOCALE/words/smoke.$CA" + }, + { + "description": "snow", + "image": "words/snow.png", + "voice": "voices-$CA/$LOCALE/words/snow.$CA" + }, + { + "description": "spider web", + "image": "words/spider_web.png", + "voice": "voices-$CA/$LOCALE/words/spider_web.$CA" + }, + { + "description": "spring season", + "image": "words/spring_season.png", + "voice": "voices-$CA/$LOCALE/words/spring_season.$CA" + }, + { + "description": "star", + "image": "words/star.png", + "voice": "voices-$CA/$LOCALE/words/star.$CA" + }, + { + "description": "steam", + "image": "words/steam.png", + "voice": "voices-$CA/$LOCALE/words/steam.$CA" + }, + { + "description": "stone", + "image": "words/stone.png", + "voice": "voices-$CA/$LOCALE/words/stone.$CA" + }, + { + "description": "stream", + "image": "words/stream.png", + "voice": "voices-$CA/$LOCALE/words/stream.$CA" + }, + { + "description": "summer", + "image": "words/summer.png", + "voice": "voices-$CA/$LOCALE/words/summer.$CA" + }, + { + "description": "summit", + "image": "words/summit.png", + "voice": "voices-$CA/$LOCALE/words/summit.$CA" + }, + { + "description": "sun", + "image": "words/sun.png", + "voice": "voices-$CA/$LOCALE/words/sun.$CA" + }, + { + "description": "time", + "image": "words/time.png", + "voice": "voices-$CA/$LOCALE/words/time.$CA" + }, + { + "description": "top", + "image": "words/top.png", + "voice": "voices-$CA/$LOCALE/words/top.$CA" + }, + { + "description": "trail", + "image": "words/trail.png", + "voice": "voices-$CA/$LOCALE/words/trail.$CA" + }, + { + "description": "water", + "image": "words/water.png", + "voice": "voices-$CA/$LOCALE/words/water.$CA" + }, + { + "description": "wave", + "image": "words/wave.png", + "voice": "voices-$CA/$LOCALE/words/wave.$CA" + }, + { + "description": "wind", + "image": "words/wind.png", + "voice": "voices-$CA/$LOCALE/words/wind.$CA" + }, + { + "description": "winter", + "image": "words/winter.png", + "voice": "voices-$CA/$LOCALE/words/winter.$CA" + }, + { + "description": "world", + "image": "words/world.png", + "voice": "voices-$CA/$LOCALE/words/world.$CA" + }, + { + "description": "vapor", + "image": "words/vapor.png", + "voice": "voices-$CA/$LOCALE/words/vapor.$CA" + } + ] + }, + { + "type": "lesson", + "name": "plant", + "content": [ + { + "description": "acorn", + "image": "words/acorn.png", + "voice": "voices-$CA/$LOCALE/words/acorn.$CA" + }, + { + "description": "apple tree", + "image": "words/apple_tree.png", + "voice": "voices-$CA/$LOCALE/words/apple_tree.$CA" + }, + { + "description": "branch", + "image": "words/branch.png", + "voice": "voices-$CA/$LOCALE/words/branch.$CA" + }, + { + "description": "bud", + "image": "words/bud.png", + "voice": "voices-$CA/$LOCALE/words/bud.$CA" + }, + { + "description": "bush", + "image": "words/bush.png", + "voice": "voices-$CA/$LOCALE/words/bush.$CA" + }, + { + "description": "cactus", + "image": "words/cactus.png", + "voice": "voices-$CA/$LOCALE/words/cactus.$CA" + }, + { + "description": "clover", + "image": "words/clover.png", + "voice": "voices-$CA/$LOCALE/words/clover.$CA" + }, + { + "description": "daffodil", + "image": "words/daffodil.png", + "voice": "voices-$CA/$LOCALE/words/daffodil.$CA" + }, + { + "description": "daisy", + "image": "words/daisy.png", + "voice": "voices-$CA/$LOCALE/words/daisy.$CA" + }, + { + "description": "dandelion", + "image": "words/dandelion.png", + "voice": "voices-$CA/$LOCALE/words/dandelion.$CA" + }, + { + "description": "flower", + "image": "words/flower.png", + "voice": "voices-$CA/$LOCALE/words/flower.$CA" + }, + { + "description": "grain", + "image": "words/grain.png", + "voice": "voices-$CA/$LOCALE/words/grain.$CA" + }, + { + "description": "grass", + "image": "words/grass.png", + "voice": "voices-$CA/$LOCALE/words/grass.$CA" + }, + { + "description": "hay", + "image": "words/hay.png", + "voice": "voices-$CA/$LOCALE/words/hay.$CA" + }, + { + "description": "hedge", + "image": "words/hedge.png", + "voice": "voices-$CA/$LOCALE/words/hedge.$CA" + }, + { + "description": "lawn", + "image": "words/lawn.png", + "voice": "voices-$CA/$LOCALE/words/lawn.$CA" + }, + { + "description": "leaf", + "image": "words/leaf.png", + "voice": "voices-$CA/$LOCALE/words/leaf.$CA" + }, + { + "description": "lilac", + "image": "words/lilac.png", + "voice": "voices-$CA/$LOCALE/words/lilac.$CA" + }, + { + "description": "maple", + "image": "words/maple.png", + "voice": "voices-$CA/$LOCALE/words/maple.$CA" + }, + { + "description": "mimosa", + "image": "words/mimosa.png", + "voice": "voices-$CA/$LOCALE/words/mimosa.$CA" + }, + { + "description": "orchid", + "image": "words/orchid.png", + "voice": "voices-$CA/$LOCALE/words/orchid.$CA" + }, + { + "description": "palm tree", + "image": "words/palm_tree.png", + "voice": "voices-$CA/$LOCALE/words/palm_tree.$CA" + }, + { + "description": "peony", + "image": "words/peony.png", + "voice": "voices-$CA/$LOCALE/words/peony.$CA" + }, + { + "description": "petal", + "image": "words/petal.png", + "voice": "voices-$CA/$LOCALE/words/petal.$CA" + }, + { + "description": "pine", + "image": "words/pine.png", + "voice": "voices-$CA/$LOCALE/words/pine.$CA" + }, + { + "description": "pine cone", + "image": "words/pine_cone.png", + "voice": "voices-$CA/$LOCALE/words/pine_cone.$CA" + }, + { + "description": "pip", + "image": "words/pip.png", + "voice": "voices-$CA/$LOCALE/words/pip.$CA" + }, + { + "description": "plant", + "image": "words/plant.png", + "voice": "voices-$CA/$LOCALE/words/plant.$CA" + }, + { + "description": "root", + "image": "words/root.png", + "voice": "voices-$CA/$LOCALE/words/root.$CA" + }, + { + "description": "rose", + "image": "words/rose.png", + "voice": "voices-$CA/$LOCALE/words/rose.$CA" + }, + { + "description": "seed", + "image": "words/seed.png", + "voice": "voices-$CA/$LOCALE/words/seed.$CA" + }, + { + "description": "shrub", + "image": "words/shrub.png", + "voice": "voices-$CA/$LOCALE/words/shrub.$CA" + }, + { + "description": "stem", + "image": "words/stem.png", + "voice": "voices-$CA/$LOCALE/words/stem.$CA" + }, + { + "description": "stick", + "image": "words/stick.png", + "voice": "voices-$CA/$LOCALE/words/stick.$CA" + }, + { + "description": "stump", + "image": "words/stump.png", + "voice": "voices-$CA/$LOCALE/words/stump.$CA" + }, + { + "description": "tree", + "image": "words/tree.png", + "voice": "voices-$CA/$LOCALE/words/tree.$CA" + }, + { + "description": "tulip", + "image": "words/tulip.png", + "voice": "voices-$CA/$LOCALE/words/tulip.$CA" + }, + { + "description": "verdure", + "image": "words/verdure.png", + "voice": "voices-$CA/$LOCALE/words/verdure.$CA" + } + ] + }, + { + "type": "lesson", + "name": "vegetables", + "content": [ + { + "description": "artichoke", + "image": "words/artichoke.png", + "voice": "voices-$CA/$LOCALE/words/artichoke.$CA" + }, + { + "description": "asparagus", + "image": "words/asparagus.png", + "voice": "voices-$CA/$LOCALE/words/asparagus.$CA" + }, + { + "description": "avocado", + "image": "words/avocado.png", + "voice": "voices-$CA/$LOCALE/words/avocado.$CA" + }, + { + "description": "bean", + "image": "words/bean.png", + "voice": "voices-$CA/$LOCALE/words/bean.$CA" + }, + { + "description": "broccoli", + "image": "words/broccoli.png", + "voice": "voices-$CA/$LOCALE/words/broccoli.$CA" + }, + { + "description": "cabbage", + "image": "words/cabbage.png", + "voice": "voices-$CA/$LOCALE/words/cabbage.$CA" + }, + { + "description": "carrot", + "image": "words/carrot.png", + "voice": "voices-$CA/$LOCALE/words/carrot.$CA" + }, + { + "description": "cauliflower", + "image": "words/cauliflower.png", + "voice": "voices-$CA/$LOCALE/words/cauliflower.$CA" + }, + { + "description": "celery", + "image": "words/celery.png", + "voice": "voices-$CA/$LOCALE/words/celery.$CA" + }, + { + "description": "corn", + "image": "words/corn.png", + "voice": "voices-$CA/$LOCALE/words/corn.$CA" + }, + { + "description": "cucumber", + "image": "words/cucumber.png", + "voice": "voices-$CA/$LOCALE/words/cucumber.$CA" + }, + { + "description": "eggplant", + "image": "words/eggplant.png", + "voice": "voices-$CA/$LOCALE/words/eggplant.$CA" + }, + { + "description": "garlic", + "image": "words/garlic.png", + "voice": "voices-$CA/$LOCALE/words/garlic.$CA" + }, + { + "description": "leek", + "image": "words/leek.png", + "voice": "voices-$CA/$LOCALE/words/leek.$CA" + }, + { + "description": "lettuce", + "image": "words/lettuce.png", + "voice": "voices-$CA/$LOCALE/words/lettuce.$CA" + }, + { + "description": "mushroom", + "image": "words/mushroom.png", + "voice": "voices-$CA/$LOCALE/words/mushroom.$CA" + }, + { + "description": "nut", + "image": "words/nut.png", + "voice": "voices-$CA/$LOCALE/words/nut.$CA" + }, + { + "description": "olive", + "image": "words/olive.png", + "voice": "voices-$CA/$LOCALE/words/olive.$CA" + }, + { + "description": "onion", + "image": "words/onion.png", + "voice": "voices-$CA/$LOCALE/words/onion.$CA" + }, + { + "description": "pea", + "image": "words/pea.png", + "voice": "voices-$CA/$LOCALE/words/pea.$CA" + }, + { + "description": "peppers", + "image": "words/peppers.png", + "voice": "voices-$CA/$LOCALE/words/peppers.$CA" + }, + { + "description": "pod", + "image": "words/pod.png", + "voice": "voices-$CA/$LOCALE/words/pod.$CA" + }, + { + "description": "potato", + "image": "words/potato.png", + "voice": "voices-$CA/$LOCALE/words/potato.$CA" + }, + { + "description": "pumpkin", + "image": "words/pumpkin.png", + "voice": "voices-$CA/$LOCALE/words/pumpkin.$CA" + }, + { + "description": "radish", + "image": "words/radish.png", + "voice": "voices-$CA/$LOCALE/words/radish.$CA" + }, + { + "description": "spinach", + "image": "words/spinach.png", + "voice": "voices-$CA/$LOCALE/words/spinach.$CA" + }, + { + "description": "squash", + "image": "words/squash.png", + "voice": "voices-$CA/$LOCALE/words/squash.$CA" + }, + { + "description": "tomatoe", + "image": "words/tomatoe.png", + "voice": "voices-$CA/$LOCALE/words/tomatoe.$CA" + }, + { + "description": "turnip", + "image": "words/turnip.png", + "voice": "voices-$CA/$LOCALE/words/turnip.$CA" + }, + { + "description": "vegetable", + "image": "words/vegetable.png", + "voice": "voices-$CA/$LOCALE/words/vegetable.$CA" + }, + { + "description": "walnut", + "image": "words/walnut.png", + "voice": "voices-$CA/$LOCALE/words/walnut.$CA" + }, + { + "description": "wheat", + "image": "words/wheat.png", + "voice": "voices-$CA/$LOCALE/words/wheat.$CA" + } + ] + } + ] + }, + { + "type": "chapter", + "name": "object", + "content": [ + { + "type": "lesson", + "name": "construction", + "content": [ + { + "description": "bank", + "image": "words/bank.png", + "voice": "voices-$CA/$LOCALE/words/bank.$CA" + }, + { + "description": "barn", + "image": "words/barn.png", + "voice": "voices-$CA/$LOCALE/words/barn.$CA" + }, + { + "description": "bedroom", + "image": "words/bedroom.png", + "voice": "voices-$CA/$LOCALE/words/bedroom.$CA" + }, + { + "description": "big top", + "image": "words/big_top.png", + "voice": "voices-$CA/$LOCALE/words/big_top.$CA" + }, + { + "description": "bridge", + "image": "words/bridge.png", + "voice": "voices-$CA/$LOCALE/words/bridge.$CA" + }, + { + "description": "cabin", + "image": "words/cabin.png", + "voice": "voices-$CA/$LOCALE/words/cabin.$CA" + }, + { + "description": "cage", + "image": "words/cage.png", + "voice": "voices-$CA/$LOCALE/words/cage.$CA" + }, + { + "description": "castle", + "image": "words/castle.png", + "voice": "voices-$CA/$LOCALE/words/castle.$CA" + }, + { + "description": "chimney", + "image": "words/chimney.png", + "voice": "voices-$CA/$LOCALE/words/chimney.$CA" + }, + { + "description": "circus", + "image": "words/circus.png", + "voice": "voices-$CA/$LOCALE/words/circus.$CA" + }, + { + "description": "city", + "image": "words/city.png", + "voice": "voices-$CA/$LOCALE/words/city.$CA" + }, + { + "description": "dam", + "image": "words/dam.png", + "voice": "voices-$CA/$LOCALE/words/dam.$CA" + }, + { + "description": "door", + "image": "words/door.png", + "voice": "voices-$CA/$LOCALE/words/door.$CA" + }, + { + "description": "fair", + "image": "words/fair.png", + "voice": "voices-$CA/$LOCALE/words/fair.$CA" + }, + { + "description": "farm", + "image": "words/farm.png", + "voice": "voices-$CA/$LOCALE/words/farm.$CA" + }, + { + "description": "fountain", + "image": "words/fountain.png", + "voice": "voices-$CA/$LOCALE/words/fountain.$CA" + }, + { + "description": "garage", + "image": "words/garage.png", + "voice": "voices-$CA/$LOCALE/words/garage.$CA" + }, + { + "description": "grave", + "image": "words/grave.png", + "voice": "voices-$CA/$LOCALE/words/grave.$CA" + }, + { + "description": "home", + "image": "words/home.png", + "voice": "voices-$CA/$LOCALE/words/home.$CA" + }, + { + "description": "hospital", + "image": "words/hospital.png", + "voice": "voices-$CA/$LOCALE/words/hospital.$CA" + }, + { + "description": "house", + "image": "words/house.png", + "voice": "voices-$CA/$LOCALE/words/house.$CA" + }, + { + "description": "hut", + "image": "words/hut.png", + "voice": "voices-$CA/$LOCALE/words/hut.$CA" + }, + { + "description": "kitchen", + "image": "words/kitchen.png", + "voice": "voices-$CA/$LOCALE/words/kitchen.$CA" + }, + { + "description": "lane", + "image": "words/lane.png", + "voice": "voices-$CA/$LOCALE/words/lane.$CA" + }, + { + "description": "lighthouse", + "image": "words/lighthouse.png", + "voice": "voices-$CA/$LOCALE/words/lighthouse.$CA" + }, + { + "description": "merry-go-round", + "image": "words/merry-go-round.png", + "voice": "voices-$CA/$LOCALE/words/merry-go-round.$CA" + }, + { + "description": "mill", + "image": "words/mill.png", + "voice": "voices-$CA/$LOCALE/words/mill.$CA" + }, + { + "description": "mosque", + "image": "words/mosque.png", + "voice": "voices-$CA/$LOCALE/words/mosque.$CA" + }, + { + "description": "office", + "image": "words/office.png", + "voice": "voices-$CA/$LOCALE/words/office.$CA" + }, + { + "description": "pool", + "image": "words/pool.png", + "voice": "voices-$CA/$LOCALE/words/pool.$CA" + }, + { + "description": "post", + "image": "words/post.png", + "voice": "voices-$CA/$LOCALE/words/post.$CA" + }, + { + "description": "prison", + "image": "words/prison.png", + "voice": "voices-$CA/$LOCALE/words/prison.$CA" + }, + { + "description": "pyramid", + "image": "words/pyramid.png", + "voice": "voices-$CA/$LOCALE/words/pyramid.$CA" + }, + { + "description": "ramp", + "image": "words/ramp.png", + "voice": "voices-$CA/$LOCALE/words/ramp.$CA" + }, + { + "description": "road", + "image": "words/road.png", + "voice": "voices-$CA/$LOCALE/words/road.$CA" + }, + { + "description": "roof", + "image": "words/roof.png", + "voice": "voices-$CA/$LOCALE/words/roof.$CA" + }, + { + "description": "room", + "image": "words/room.png", + "voice": "voices-$CA/$LOCALE/words/room.$CA" + }, + { + "description": "school", + "image": "words/school.png", + "voice": "voices-$CA/$LOCALE/words/school.$CA" + }, + { + "description": "shed", + "image": "words/shed.png", + "voice": "voices-$CA/$LOCALE/words/shed.$CA" + }, + { + "description": "shop", + "image": "words/shop.png", + "voice": "voices-$CA/$LOCALE/words/shop.$CA" + }, + { + "description": "shutter", + "image": "words/shutter.png", + "voice": "voices-$CA/$LOCALE/words/shutter.$CA" + }, + { + "description": "sidewalk", + "image": "words/sidewalk.png", + "voice": "voices-$CA/$LOCALE/words/sidewalk.$CA" + }, + { + "description": "stage", + "image": "words/stage.png", + "voice": "voices-$CA/$LOCALE/words/stage.$CA" + }, + { + "description": "staircase", + "image": "words/staircase.png", + "voice": "voices-$CA/$LOCALE/words/staircase.$CA" + }, + { + "description": "steeple", + "image": "words/steeple.png", + "voice": "voices-$CA/$LOCALE/words/steeple.$CA" + }, + { + "description": "step", + "image": "words/step.png", + "voice": "voices-$CA/$LOCALE/words/step.$CA" + }, + { + "description": "store", + "image": "words/store.png", + "voice": "voices-$CA/$LOCALE/words/store.$CA" + }, + { + "description": "street", + "image": "words/street.png", + "voice": "voices-$CA/$LOCALE/words/street.$CA" + }, + { + "description": "temple", + "image": "words/temple.png", + "voice": "voices-$CA/$LOCALE/words/temple.$CA" + }, + { + "description": "tent", + "image": "words/tent.png", + "voice": "voices-$CA/$LOCALE/words/tent.$CA" + }, + { + "description": "train station", + "image": "words/train_station.png", + "voice": "voices-$CA/$LOCALE/words/train_station.$CA" + }, + { + "description": "wall", + "image": "words/wall.png", + "voice": "voices-$CA/$LOCALE/words/wall.$CA" + }, + { + "description": "window", + "image": "words/window.png", + "voice": "voices-$CA/$LOCALE/words/window.$CA" + }, + { + "description": "window glass", + "image": "words/window_glass.png", + "voice": "voices-$CA/$LOCALE/words/window_glass.$CA" + }, + { + "description": "zoo", + "image": "words/zoo.png", + "voice": "voices-$CA/$LOCALE/words/zoo.$CA" + }, + { + "description": "class", + "image": "words/class.png", + "voice": "voices-$CA/$LOCALE/words/class.$CA" + } + ] + }, + { + "type": "lesson", + "name": "furniture", + "content": [ + { + "description": "armchair", + "image": "words/armchair.png", + "voice": "voices-$CA/$LOCALE/words/armchair.$CA" + }, + { + "description": "bath", + "image": "words/bath.png", + "voice": "voices-$CA/$LOCALE/words/bath.$CA" + }, + { + "description": "bed", + "image": "words/bed.png", + "voice": "voices-$CA/$LOCALE/words/bed.$CA" + }, + { + "description": "bench", + "image": "words/bench.png", + "voice": "voices-$CA/$LOCALE/words/bench.$CA" + }, + { + "description": "bookcase", + "image": "words/bookcase.png", + "voice": "voices-$CA/$LOCALE/words/bookcase.$CA" + }, + { + "description": "carpet", + "image": "words/carpet.png", + "voice": "voices-$CA/$LOCALE/words/carpet.$CA" + }, + { + "description": "chair", + "image": "words/chair.png", + "voice": "voices-$CA/$LOCALE/words/chair.$CA" + }, + { + "description": "chest", + "image": "words/chest.png", + "voice": "voices-$CA/$LOCALE/words/chest.$CA" + }, + { + "description": "couch", + "image": "words/couch.png", + "voice": "voices-$CA/$LOCALE/words/couch.$CA" + }, + { + "description": "cradle", + "image": "words/cradle.png", + "voice": "voices-$CA/$LOCALE/words/cradle.$CA" + }, + { + "description": "crib", + "image": "words/crib.png", + "voice": "voices-$CA/$LOCALE/words/crib.$CA" + }, + { + "description": "desk", + "image": "words/desk.png", + "voice": "voices-$CA/$LOCALE/words/desk.$CA" + }, + { + "description": "doormat", + "image": "words/doormat.png", + "voice": "voices-$CA/$LOCALE/words/doormat.$CA" + }, + { + "description": "drawer", + "image": "words/drawer.png", + "voice": "voices-$CA/$LOCALE/words/drawer.$CA" + }, + { + "description": "fan", + "image": "words/fan.png", + "voice": "voices-$CA/$LOCALE/words/fan.$CA" + }, + { + "description": "lamp", + "image": "words/lamp.png", + "voice": "voices-$CA/$LOCALE/words/lamp.$CA" + }, + { + "description": "light", + "image": "words/light.png", + "voice": "voices-$CA/$LOCALE/words/light.$CA" + }, + { + "description": "mat", + "image": "words/mat.png", + "voice": "voices-$CA/$LOCALE/words/mat.$CA" + }, + { + "description": "mattress", + "image": "words/mattress.png", + "voice": "voices-$CA/$LOCALE/words/mattress.$CA" + }, + { + "description": "quilt", + "image": "words/quilt.png", + "voice": "voices-$CA/$LOCALE/words/quilt.$CA" + }, + { + "description": "rug", + "image": "words/rug.png", + "voice": "voices-$CA/$LOCALE/words/rug.$CA" + }, + { + "description": "seat", + "image": "words/seat.png", + "voice": "voices-$CA/$LOCALE/words/seat.$CA" + }, + { + "description": "shelf", + "image": "words/shelf.png", + "voice": "voices-$CA/$LOCALE/words/shelf.$CA" + }, + { + "description": "shower", + "image": "words/shower.png", + "voice": "voices-$CA/$LOCALE/words/shower.$CA" + }, + { + "description": "sink", + "image": "words/sink.png", + "voice": "voices-$CA/$LOCALE/words/sink.$CA" + }, + { + "description": "stove", + "image": "words/stove.png", + "voice": "voices-$CA/$LOCALE/words/stove.$CA" + }, + { + "description": "table", + "image": "words/table.png", + "voice": "voices-$CA/$LOCALE/words/table.$CA" + }, + { + "description": "television", + "image": "words/television.png", + "voice": "voices-$CA/$LOCALE/words/television.$CA" + }, + { + "description": "toilet", + "image": "words/toilet.png", + "voice": "voices-$CA/$LOCALE/words/toilet.$CA" + } + ] + }, + { + "type": "lesson", + "name": "houseware", + "content": [ + { + "description": "appliance", + "image": "words/appliance.png", + "voice": "voices-$CA/$LOCALE/words/appliance.$CA" + }, + { + "description": "baby bottle", + "image": "words/baby_bottle.png", + "voice": "voices-$CA/$LOCALE/words/baby_bottle.$CA" + }, + { + "description": "balance", + "image": "words/balance.png", + "voice": "voices-$CA/$LOCALE/words/balance.$CA" + }, + { + "description": "blade", + "image": "words/blade.png", + "voice": "voices-$CA/$LOCALE/words/blade.$CA" + }, + { + "description": "can", + "image": "words/can.png", + "voice": "voices-$CA/$LOCALE/words/can.$CA" + }, + { + "description": "carafe", + "image": "words/carafe.png", + "voice": "voices-$CA/$LOCALE/words/carafe.$CA" + }, + { + "description": "cauldron", + "image": "words/cauldron.png", + "voice": "voices-$CA/$LOCALE/words/cauldron.$CA" + }, + { + "description": "chandelier", + "image": "words/chandelier.png", + "voice": "voices-$CA/$LOCALE/words/chandelier.$CA" + }, + { + "description": "clock", + "image": "words/clock.png", + "voice": "voices-$CA/$LOCALE/words/clock.$CA" + }, + { + "description": "curtain", + "image": "words/curtain.png", + "voice": "voices-$CA/$LOCALE/words/curtain.$CA" + }, + { + "description": "dish", + "image": "words/dish.png", + "voice": "voices-$CA/$LOCALE/words/dish.$CA" + }, + { + "description": "fork", + "image": "words/fork.png", + "voice": "voices-$CA/$LOCALE/words/fork.$CA" + }, + { + "description": "glass", + "image": "words/glass.png", + "voice": "voices-$CA/$LOCALE/words/glass.$CA" + }, + { + "description": "knife", + "image": "words/knife.png", + "voice": "voices-$CA/$LOCALE/words/knife.$CA" + }, + { + "description": "lid", + "image": "words/lid.png", + "voice": "voices-$CA/$LOCALE/words/lid.$CA" + }, + { + "description": "mop", + "image": "words/mop.png", + "voice": "voices-$CA/$LOCALE/words/mop.$CA" + }, + { + "description": "mug", + "image": "words/mug.png", + "voice": "voices-$CA/$LOCALE/words/mug.$CA" + }, + { + "description": "pan", + "image": "words/pan.png", + "voice": "voices-$CA/$LOCALE/words/pan.$CA" + }, + { + "description": "plate", + "image": "words/plate.png", + "voice": "voices-$CA/$LOCALE/words/plate.$CA" + }, + { + "description": "pot", + "image": "words/pot.png", + "voice": "voices-$CA/$LOCALE/words/pot.$CA" + }, + { + "description": "scale", + "image": "words/scale.png", + "voice": "voices-$CA/$LOCALE/words/scale.$CA" + }, + { + "description": "skimmer", + "image": "words/skimmer.png", + "voice": "voices-$CA/$LOCALE/words/skimmer.$CA" + }, + { + "description": "spatula", + "image": "words/spatula.png", + "voice": "voices-$CA/$LOCALE/words/spatula.$CA" + }, + { + "description": "sponge", + "image": "words/sponge.png", + "voice": "voices-$CA/$LOCALE/words/sponge.$CA" + }, + { + "description": "spoon", + "image": "words/spoon.png", + "voice": "voices-$CA/$LOCALE/words/spoon.$CA" + }, + { + "description": "strainer", + "image": "words/strainer.png", + "voice": "voices-$CA/$LOCALE/words/strainer.$CA" + }, + { + "description": "tablecloth", + "image": "words/tablecloth.png", + "voice": "voices-$CA/$LOCALE/words/tablecloth.$CA" + }, + { + "description": "tin", + "image": "words/tin.png", + "voice": "voices-$CA/$LOCALE/words/tin.$CA" + }, + { + "description": "toaster", + "image": "words/toaster.png", + "voice": "voices-$CA/$LOCALE/words/toaster.$CA" + }, + { + "description": "tongs", + "image": "words/tongs.png", + "voice": "voices-$CA/$LOCALE/words/tongs.$CA" + }, + { + "description": "trash", + "image": "words/trash.png", + "voice": "voices-$CA/$LOCALE/words/trash.$CA" + }, + { + "description": "tray", + "image": "words/tray.png", + "voice": "voices-$CA/$LOCALE/words/tray.$CA" + }, + { + "description": "vase", + "image": "words/vase.png", + "voice": "voices-$CA/$LOCALE/words/vase.$CA" + }, + { + "description": "whisk", + "image": "words/whisk.png", + "voice": "voices-$CA/$LOCALE/words/whisk.$CA" + }, + { + "description": "alarmclock", + "image": "words/alarmclock.png", + "voice": "voices-$CA/$LOCALE/words/alarmclock.$CA" + } + ] + }, + { + "type": "lesson", + "name": "object", + "content": [ + { + "description": "faucet", + "image": "words/faucet.png", + "voice": "voices-$CA/$LOCALE/words/faucet.$CA" + }, + { + "description": "air horn", + "image": "words/air_horn.png", + "voice": "voices-$CA/$LOCALE/words/air_horn.$CA" + }, + { + "description": "anchor", + "image": "words/anchor.png", + "voice": "voices-$CA/$LOCALE/words/anchor.$CA" + }, + { + "description": "badge", + "image": "words/badge.png", + "voice": "voices-$CA/$LOCALE/words/badge.$CA" + }, + { + "description": "bag", + "image": "words/bag.png", + "voice": "voices-$CA/$LOCALE/words/bag.$CA" + }, + { + "description": "ball", + "image": "words/ball.png", + "voice": "voices-$CA/$LOCALE/words/ball.$CA" + }, + { + "description": "soccer ball", + "image": "words/ball_soccer.png", + "voice": "voices-$CA/$LOCALE/words/ball_soccer.$CA" + }, + { + "description": "bead", + "image": "words/bead.png", + "voice": "voices-$CA/$LOCALE/words/bead.$CA" + }, + { + "description": "bell", + "image": "words/bell.png", + "voice": "voices-$CA/$LOCALE/words/bell.$CA" + }, + { + "description": "block", + "image": "words/block.png", + "voice": "voices-$CA/$LOCALE/words/block.$CA" + }, + { + "description": "board", + "image": "words/board.png", + "voice": "voices-$CA/$LOCALE/words/board.$CA" + }, + { + "description": "bomb", + "image": "words/bomb.png", + "voice": "voices-$CA/$LOCALE/words/bomb.$CA" + }, + { + "description": "book", + "image": "words/book.png", + "voice": "voices-$CA/$LOCALE/words/book.$CA" + }, + { + "description": "box", + "image": "words/box.png", + "voice": "voices-$CA/$LOCALE/words/box.$CA" + }, + { + "description": "bucket", + "image": "words/bucket.png", + "voice": "voices-$CA/$LOCALE/words/bucket.$CA" + }, + { + "description": "bulb", + "image": "words/bulb.png", + "voice": "voices-$CA/$LOCALE/words/bulb.$CA" + }, + { + "description": "camera", + "image": "words/camera.png", + "voice": "voices-$CA/$LOCALE/words/camera.$CA" + }, + { + "description": "candle", + "image": "words/candle.png", + "voice": "voices-$CA/$LOCALE/words/candle.$CA" + }, + { + "description": "cane", + "image": "words/cane.png", + "voice": "voices-$CA/$LOCALE/words/cane.$CA" + }, + { + "description": "canon", + "image": "words/canon.png", + "voice": "voices-$CA/$LOCALE/words/canon.$CA" + }, + { + "description": "card", + "image": "words/card.png", + "voice": "voices-$CA/$LOCALE/words/card.$CA" + }, + { + "description": "cart", + "image": "words/cart.png", + "voice": "voices-$CA/$LOCALE/words/cart.$CA" + }, + { + "description": "cash", + "image": "words/cash.png", + "voice": "voices-$CA/$LOCALE/words/cash.$CA" + }, + { + "description": "chain", + "image": "words/chain.png", + "voice": "voices-$CA/$LOCALE/words/chain.$CA" + }, + { + "description": "chalk", + "image": "words/chalk.png", + "voice": "voices-$CA/$LOCALE/words/chalk.$CA" + }, + { + "description": "cigar", + "image": "words/cigar.png", + "voice": "voices-$CA/$LOCALE/words/cigar.$CA" + }, + { + "description": "clay", + "image": "words/clay.png", + "voice": "voices-$CA/$LOCALE/words/clay.$CA" + }, + { + "description": "cloth", + "image": "words/cloth.png", + "voice": "voices-$CA/$LOCALE/words/cloth.$CA" + }, + { + "description": "clothes hanger", + "image": "words/clothes_hanger.png", + "voice": "voices-$CA/$LOCALE/words/clothes_hanger.$CA" + }, + { + "description": "coin", + "image": "words/coin.png", + "voice": "voices-$CA/$LOCALE/words/coin.$CA" + }, + { + "description": "comb", + "image": "words/comb.png", + "voice": "voices-$CA/$LOCALE/words/comb.$CA" + }, + { + "description": "cone", + "image": "words/cone.png", + "voice": "voices-$CA/$LOCALE/words/cone.$CA" + }, + { + "description": "cork", + "image": "words/cork.png", + "voice": "voices-$CA/$LOCALE/words/cork.$CA" + }, + { + "description": "cross", + "image": "words/cross.png", + "voice": "voices-$CA/$LOCALE/words/cross.$CA" + }, + { + "description": "crown", + "image": "words/crown.png", + "voice": "voices-$CA/$LOCALE/words/crown.$CA" + }, + { + "description": "cube", + "image": "words/cube.png", + "voice": "voices-$CA/$LOCALE/words/cube.$CA" + }, + { + "description": "tire", + "image": "words/tire.png", + "voice": "voices-$CA/$LOCALE/words/tire.$CA" + }, + { + "description": "dart board", + "image": "words/dart_board.png", + "voice": "voices-$CA/$LOCALE/words/dart_board.$CA" + }, + { + "description": "dishcloth", + "image": "words/dishcloth.png", + "voice": "voices-$CA/$LOCALE/words/dishcloth.$CA" + }, + { + "description": "doll", + "image": "words/doll.png", + "voice": "voices-$CA/$LOCALE/words/doll.$CA" + }, + { + "description": "domino", + "image": "words/domino.png", + "voice": "voices-$CA/$LOCALE/words/domino.$CA" + }, + { + "description": "drum", + "image": "words/drum.png", + "voice": "voices-$CA/$LOCALE/words/drum.$CA" + }, + { + "description": "eraser", + "image": "words/eraser.png", + "voice": "voices-$CA/$LOCALE/words/eraser.$CA" + }, + { + "description": "fire extinguisher", + "image": "words/fire_extinguisher.png", + "voice": "voices-$CA/$LOCALE/words/fire_extinguisher.$CA" + }, + { + "description": "flacon", + "image": "words/flacon.png", + "voice": "voices-$CA/$LOCALE/words/flacon.$CA" + }, + { + "description": "flag", + "image": "words/flag.png", + "voice": "voices-$CA/$LOCALE/words/flag.$CA" + }, + { + "description": "fluff", + "image": "words/fluff.png", + "voice": "voices-$CA/$LOCALE/words/fluff.$CA" + }, + { + "description": "flute", + "image": "words/flute.png", + "voice": "voices-$CA/$LOCALE/words/flute.$CA" + }, + { + "description": "game", + "image": "words/game.png", + "voice": "voices-$CA/$LOCALE/words/game.$CA" + }, + { + "description": "gift", + "image": "words/gift.png", + "voice": "voices-$CA/$LOCALE/words/gift.$CA" + }, + { + "description": "glasses", + "image": "words/glasses.png", + "voice": "voices-$CA/$LOCALE/words/glasses.$CA" + }, + { + "description": "glue", + "image": "words/glue.png", + "voice": "voices-$CA/$LOCALE/words/glue.$CA" + }, + { + "description": "grill", + "image": "words/grill.png", + "voice": "voices-$CA/$LOCALE/words/grill.$CA" + }, + { + "description": "hair-dryer", + "image": "words/hair_dryer.png", + "voice": "voices-$CA/$LOCALE/words/hair_dryer.$CA" + }, + { + "description": "handlebar", + "image": "words/handlebar.png", + "voice": "voices-$CA/$LOCALE/words/handlebar.$CA" + }, + { + "description": "harp", + "image": "words/harp.png", + "voice": "voices-$CA/$LOCALE/words/harp.$CA" + }, + { + "description": "hook", + "image": "words/hook.png", + "voice": "voices-$CA/$LOCALE/words/hook.$CA" + }, + { + "description": "hose", + "image": "words/hose.png", + "voice": "voices-$CA/$LOCALE/words/hose.$CA" + }, + { + "description": "ink", + "image": "words/ink.png", + "voice": "voices-$CA/$LOCALE/words/ink.$CA" + }, + { + "description": "jewel", + "image": "words/jewel.png", + "voice": "voices-$CA/$LOCALE/words/jewel.$CA" + }, + { + "description": "keel", + "image": "words/keel.png", + "voice": "voices-$CA/$LOCALE/words/keel.$CA" + }, + { + "description": "keyboard", + "image": "words/keyboard.png", + "voice": "voices-$CA/$LOCALE/words/keyboard.$CA" + }, + { + "description": "kite", + "image": "words/kite.png", + "voice": "voices-$CA/$LOCALE/words/kite.$CA" + }, + { + "description": "knot", + "image": "words/knot.png", + "voice": "voices-$CA/$LOCALE/words/knot.$CA" + }, + { + "description": "lasso", + "image": "words/lasso.png", + "voice": "voices-$CA/$LOCALE/words/lasso.$CA" + }, + { + "description": "log", + "image": "words/log.png", + "voice": "voices-$CA/$LOCALE/words/log.$CA" + }, + { + "description": "magnet", + "image": "words/magnet.png", + "voice": "voices-$CA/$LOCALE/words/magnet.$CA" + }, + { + "description": "magnifying glass", + "image": "words/magnifying_glass.png", + "voice": "voices-$CA/$LOCALE/words/magnifying_glass.$CA" + }, + { + "description": "mail", + "image": "words/mail.png", + "voice": "voices-$CA/$LOCALE/words/mail.$CA" + }, + { + "description": "map", + "image": "words/map.png", + "voice": "voices-$CA/$LOCALE/words/map.$CA" + }, + { + "description": "marble", + "image": "words/marble.png", + "voice": "voices-$CA/$LOCALE/words/marble.$CA" + }, + { + "description": "mask", + "image": "words/mask.png", + "voice": "voices-$CA/$LOCALE/words/mask.$CA" + }, + { + "description": "mast", + "image": "words/mast.png", + "voice": "voices-$CA/$LOCALE/words/mast.$CA" + }, + { + "description": "match", + "image": "words/match.png", + "voice": "voices-$CA/$LOCALE/words/match.$CA" + }, + { + "description": "medal", + "image": "words/medal.png", + "voice": "voices-$CA/$LOCALE/words/medal.$CA" + }, + { + "description": "microphone", + "image": "words/microphone.png", + "voice": "voices-$CA/$LOCALE/words/microphone.$CA" + }, + { + "description": "mirror", + "image": "words/mirror.png", + "voice": "voices-$CA/$LOCALE/words/mirror.$CA" + }, + { + "description": "mixer", + "image": "words/mixer.png", + "voice": "voices-$CA/$LOCALE/words/mixer.$CA" + }, + { + "description": "necklace", + "image": "words/necklace.png", + "voice": "voices-$CA/$LOCALE/words/necklace.$CA" + }, + { + "description": "nest", + "image": "words/nest.png", + "voice": "voices-$CA/$LOCALE/words/nest.$CA" + }, + { + "description": "net", + "image": "words/net.png", + "voice": "voices-$CA/$LOCALE/words/net.$CA" + }, + { + "description": "newspaper", + "image": "words/newspaper.png", + "voice": "voices-$CA/$LOCALE/words/newspaper.$CA" + }, + { + "description": "notebook", + "image": "words/notebook.png", + "voice": "voices-$CA/$LOCALE/words/notebook.$CA" + }, + { + "description": "oar", + "image": "words/oar.png", + "voice": "voices-$CA/$LOCALE/words/oar.$CA" + }, + { + "description": "pacifier", + "image": "words/pacifier.png", + "voice": "voices-$CA/$LOCALE/words/pacifier.$CA" + }, + { + "description": "page", + "image": "words/page.png", + "voice": "voices-$CA/$LOCALE/words/page.$CA" + }, + { + "description": "pair", + "image": "words/pair.png", + "voice": "voices-$CA/$LOCALE/words/pair.$CA" + }, + { + "description": "paper", + "image": "words/paper.png", + "voice": "voices-$CA/$LOCALE/words/paper.$CA" + }, + { + "description": "pearl", + "image": "words/pearl.png", + "voice": "voices-$CA/$LOCALE/words/pearl.$CA" + }, + { + "description": "pen", + "image": "words/pen.png", + "voice": "voices-$CA/$LOCALE/words/pen.$CA" + }, + { + "description": "pencil", + "image": "words/pencil.png", + "voice": "voices-$CA/$LOCALE/words/pencil.$CA" + }, + { + "description": "phone", + "image": "words/phone.png", + "voice": "voices-$CA/$LOCALE/words/phone.$CA" + }, + { + "description": "piano", + "image": "words/piano.png", + "voice": "voices-$CA/$LOCALE/words/piano.$CA" + }, + { + "description": "picture", + "image": "words/picture.png", + "voice": "voices-$CA/$LOCALE/words/picture.$CA" + }, + { + "description": "pill", + "image": "words/pill.png", + "voice": "voices-$CA/$LOCALE/words/pill.$CA" + }, + { + "description": "pillow", + "image": "words/pillow.png", + "voice": "voices-$CA/$LOCALE/words/pillow.$CA" + }, + { + "description": "pipe", + "image": "words/pipe.png", + "voice": "voices-$CA/$LOCALE/words/pipe.$CA" + }, + { + "description": "pole", + "image": "words/pole.png", + "voice": "voices-$CA/$LOCALE/words/pole.$CA" + }, + { + "description": "prize", + "image": "words/prize.png", + "voice": "voices-$CA/$LOCALE/words/prize.$CA" + }, + { + "description": "radio", + "image": "words/radio.png", + "voice": "voices-$CA/$LOCALE/words/radio.$CA" + }, + { + "description": "rag", + "image": "words/rag.png", + "voice": "voices-$CA/$LOCALE/words/rag.$CA" + }, + { + "description": "razor", + "image": "words/razor.png", + "voice": "voices-$CA/$LOCALE/words/razor.$CA" + }, + { + "description": "rifle", + "image": "words/rifle.png", + "voice": "voices-$CA/$LOCALE/words/rifle.$CA" + }, + { + "description": "robot", + "image": "words/robot.png", + "voice": "voices-$CA/$LOCALE/words/robot.$CA" + }, + { + "description": "rolling pin", + "image": "words/rolling_pin.png", + "voice": "voices-$CA/$LOCALE/words/rolling_pin.$CA" + }, + { + "description": "rope", + "image": "words/rope.png", + "voice": "voices-$CA/$LOCALE/words/rope.$CA" + }, + { + "description": "saddle", + "image": "words/saddle.png", + "voice": "voices-$CA/$LOCALE/words/saddle.$CA" + }, + { + "description": "school bag", + "image": "words/school_bag.png", + "voice": "voices-$CA/$LOCALE/words/school_bag.$CA" + }, + { + "description": "sign", + "image": "words/sign.png", + "voice": "voices-$CA/$LOCALE/words/sign.$CA" + }, + { + "description": "sleigh", + "image": "words/sleigh.png", + "voice": "voices-$CA/$LOCALE/words/sleigh.$CA" + }, + { + "description": "slide", + "image": "words/slide.png", + "voice": "voices-$CA/$LOCALE/words/slide.$CA" + }, + { + "description": "slot", + "image": "words/slot.png", + "voice": "voices-$CA/$LOCALE/words/slot.$CA" + }, + { + "description": "soap", + "image": "words/soap.png", + "voice": "voices-$CA/$LOCALE/words/soap.$CA" + }, + { + "description": "spark", + "image": "words/spark.png", + "voice": "voices-$CA/$LOCALE/words/spark.$CA" + }, + { + "description": "spinning top", + "image": "words/spinning_top.png", + "voice": "voices-$CA/$LOCALE/words/spinning_top.$CA" + }, + { + "description": "spool", + "image": "words/spool.png", + "voice": "voices-$CA/$LOCALE/words/spool.$CA" + }, + { + "description": "squirt", + "image": "words/squirt.png", + "voice": "voices-$CA/$LOCALE/words/squirt.$CA" + }, + { + "description": "stack", + "image": "words/stack.png", + "voice": "voices-$CA/$LOCALE/words/stack.$CA" + }, + { + "description": "stamp", + "image": "words/stamp.png", + "voice": "voices-$CA/$LOCALE/words/stamp.$CA" + }, + { + "description": "straw", + "image": "words/straw.png", + "voice": "voices-$CA/$LOCALE/words/straw.$CA" + }, + { + "description": "string", + "image": "words/string.png", + "voice": "voices-$CA/$LOCALE/words/string.$CA" + }, + { + "description": "suitcase", + "image": "words/suitcase.png", + "voice": "voices-$CA/$LOCALE/words/suitcase.$CA" + }, + { + "description": "tag", + "image": "words/tag.png", + "voice": "voices-$CA/$LOCALE/words/tag.$CA" + }, + { + "description": "teddy", + "image": "words/teddy.png", + "voice": "voices-$CA/$LOCALE/words/teddy.$CA" + }, + { + "description": "thread", + "image": "words/thread.png", + "voice": "voices-$CA/$LOCALE/words/thread.$CA" + }, + { + "description": "ticket", + "image": "words/ticket.png", + "voice": "voices-$CA/$LOCALE/words/ticket.$CA" + }, + { + "description": "tissue", + "image": "words/tissue.png", + "voice": "voices-$CA/$LOCALE/words/tissue.$CA" + }, + { + "description": "torch", + "image": "words/torch.png", + "voice": "voices-$CA/$LOCALE/words/torch.$CA" + }, + { + "description": "towel", + "image": "words/towel.png", + "voice": "voices-$CA/$LOCALE/words/towel.$CA" + }, + { + "description": "toy", + "image": "words/toy.png", + "voice": "voices-$CA/$LOCALE/words/toy.$CA" + }, + { + "description": "trap", + "image": "words/trap.png", + "voice": "voices-$CA/$LOCALE/words/trap.$CA" + }, + { + "description": "tube", + "image": "words/tube.png", + "voice": "voices-$CA/$LOCALE/words/tube.$CA" + }, + { + "description": "umbrella", + "image": "words/umbrella.png", + "voice": "voices-$CA/$LOCALE/words/umbrella.$CA" + }, + { + "description": "watch", + "image": "words/watch.png", + "voice": "voices-$CA/$LOCALE/words/watch.$CA" + }, + { + "description": "wheel", + "image": "words/wheel.png", + "voice": "voices-$CA/$LOCALE/words/wheel.$CA" + }, + { + "description": "wig", + "image": "words/wig.png", + "voice": "voices-$CA/$LOCALE/words/wig.$CA" + }, + { + "description": "wood", + "image": "words/wood.png", + "voice": "voices-$CA/$LOCALE/words/wood.$CA" + }, + { + "description": "wreath", + "image": "words/wreath.png", + "voice": "voices-$CA/$LOCALE/words/wreath.$CA" + }, + { + "description": "ball of yarn", + "image": "words/ball_of_yarn.png", + "voice": "voices-$CA/$LOCALE/words/ball_of_yarn.$CA" + }, + { + "description": "christmas", + "image": "words/christmas.png", + "voice": "voices-$CA/$LOCALE/words/christmas.$CA" + }, + { + "description": "foam", + "image": "words/foam.png", + "voice": "voices-$CA/$LOCALE/words/foam.$CA" + }, + { + "description": "guignol", + "image": "words/guignol.png", + "voice": "voices-$CA/$LOCALE/words/guignol.$CA" + }, + { + "description": "movie", + "image": "words/movie.png", + "voice": "voices-$CA/$LOCALE/words/movie.$CA" + }, + { + "description": "music", + "image": "words/music.png", + "voice": "voices-$CA/$LOCALE/words/music.$CA" + }, + { + "description": "price", + "image": "words/price.png", + "voice": "voices-$CA/$LOCALE/words/price.$CA" + }, + { + "description": "dot", + "image": "words/dot.png", + "voice": "voices-$CA/$LOCALE/words/dot.$CA" + } + ] + }, + { + "type": "lesson", + "name": "tool", + "content": [ + { + "description": "ax", + "image": "words/ax.png", + "voice": "voices-$CA/$LOCALE/words/ax.$CA" + }, + { + "description": "bolt", + "image": "words/bolt.png", + "voice": "voices-$CA/$LOCALE/words/bolt.$CA" + }, + { + "description": "brick", + "image": "words/brick.png", + "voice": "voices-$CA/$LOCALE/words/brick.$CA" + }, + { + "description": "brush", + "image": "words/brush.png", + "voice": "voices-$CA/$LOCALE/words/brush.$CA" + }, + { + "description": "flash", + "image": "words/flash.png", + "voice": "voices-$CA/$LOCALE/words/flash.$CA" + }, + { + "description": "hammer", + "image": "words/hammer.png", + "voice": "voices-$CA/$LOCALE/words/hammer.$CA" + }, + { + "description": "mower", + "image": "words/mower.png", + "voice": "voices-$CA/$LOCALE/words/mower.$CA" + }, + { + "description": "needle", + "image": "words/needle.png", + "voice": "voices-$CA/$LOCALE/words/needle.$CA" + }, + { + "description": "pliers", + "image": "words/pliers.png", + "voice": "voices-$CA/$LOCALE/words/pliers.$CA" + }, + { + "description": "rake", + "image": "words/rake.png", + "voice": "voices-$CA/$LOCALE/words/rake.$CA" + }, + { + "description": "scissors", + "image": "words/scissors.png", + "voice": "voices-$CA/$LOCALE/words/scissors.$CA" + }, + { + "description": "screw", + "image": "words/screw.png", + "voice": "voices-$CA/$LOCALE/words/screw.$CA" + }, + { + "description": "screwdriver", + "image": "words/screwdriver.png", + "voice": "voices-$CA/$LOCALE/words/screwdriver.$CA" + }, + { + "description": "shovel", + "image": "words/shovel.png", + "voice": "voices-$CA/$LOCALE/words/shovel.$CA" + }, + { + "description": "spade", + "image": "words/spade.png", + "voice": "voices-$CA/$LOCALE/words/spade.$CA" + }, + { + "description": "spear", + "image": "words/spear.png", + "voice": "voices-$CA/$LOCALE/words/spear.$CA" + }, + { + "description": "tape measure", + "image": "words/tape_measure.png", + "voice": "voices-$CA/$LOCALE/words/tape_measure.$CA" + }, + { + "description": "tool", + "image": "words/tool.png", + "voice": "voices-$CA/$LOCALE/words/tool.$CA" + }, + { + "description": "wedge", + "image": "words/wedge.png", + "voice": "voices-$CA/$LOCALE/words/wedge.$CA" + }, + { + "description": "wrench", + "image": "words/wrench.png", + "voice": "voices-$CA/$LOCALE/words/wrench.$CA" + }, + { + "description": "trip", + "image": "words/trip.png", + "voice": "voices-$CA/$LOCALE/words/trip.$CA" + }, + { + "description": "bike", + "image": "words/bike.png", + "voice": "voices-$CA/$LOCALE/words/bike.$CA" + }, + { + "description": "boat", + "image": "words/boat.png", + "voice": "voices-$CA/$LOCALE/words/boat.$CA" + }, + { + "description": "bus", + "image": "words/bus.png", + "voice": "voices-$CA/$LOCALE/words/bus.$CA" + }, + { + "description": "canoe", + "image": "words/canoe.png", + "voice": "voices-$CA/$LOCALE/words/canoe.$CA" + }, + { + "description": "car", + "image": "words/car.png", + "voice": "voices-$CA/$LOCALE/words/car.$CA" + }, + { + "description": "engine", + "image": "words/engine.png", + "voice": "voices-$CA/$LOCALE/words/engine.$CA" + }, + { + "description": "motorcycle", + "image": "words/motorcycle.png", + "voice": "voices-$CA/$LOCALE/words/motorcycle.$CA" + }, + { + "description": "parachute", + "image": "words/parachute.png", + "voice": "voices-$CA/$LOCALE/words/parachute.$CA" + }, + { + "description": "pedal", + "image": "words/pedal.png", + "voice": "voices-$CA/$LOCALE/words/pedal.$CA" + }, + { + "description": "plane", + "image": "words/plane.png", + "voice": "voices-$CA/$LOCALE/words/plane.$CA" + }, + { + "description": "porthole", + "image": "words/porthole.png", + "voice": "voices-$CA/$LOCALE/words/porthole.$CA" + }, + { + "description": "raft", + "image": "words/raft.png", + "voice": "voices-$CA/$LOCALE/words/raft.$CA" + }, + { + "description": "rocket", + "image": "words/rocket.png", + "voice": "voices-$CA/$LOCALE/words/rocket.$CA" + }, + { + "description": "sail", + "image": "words/sail.png", + "voice": "voices-$CA/$LOCALE/words/sail.$CA" + }, + { + "description": "ship", + "image": "words/ship.png", + "voice": "voices-$CA/$LOCALE/words/ship.$CA" + }, + { + "description": "sled", + "image": "words/sled.png", + "voice": "voices-$CA/$LOCALE/words/sled.$CA" + }, + { + "description": "taxi", + "image": "words/taxi.png", + "voice": "voices-$CA/$LOCALE/words/taxi.$CA" + }, + { + "description": "train", + "image": "words/train.png", + "voice": "voices-$CA/$LOCALE/words/train.$CA" + }, + { + "description": "truck", + "image": "words/truck.png", + "voice": "voices-$CA/$LOCALE/words/truck.$CA" + }, + { + "description": "van", + "image": "words/van.png", + "voice": "voices-$CA/$LOCALE/words/van.$CA" + } + ] + } + ] + } +] + +