From e647bed883a2be72405f86572e885bd7122573d6 Mon Sep 17 00:00:00 2001 From: Ankit Kesharwani Date: Tue, 30 Jul 2019 17:42:51 +0530 Subject: [PATCH] Merging Dev with the master branch --- goa/Classes/menu/MapScene.cpp | 18 +- goa/Classes/menu/ScrollableGameMapScene.cpp | 2 +- goa/Classes/misc/ChooseCharacter.cpp | 12 +- goa/Classes/misc/ChooseCharacter.hpp | 4 +- .../res/config/alphabet_game_map.json | 28 +- goa/Resources/res/config/game_levels_old.json | 1563 ----------------- goa/Resources/res/config/game_map.json | 120 +- .../res/config/grammar_game_map.json | 38 +- goa/Resources/res/config/shapes_game_map.json | 42 +- goa/Resources/res/config/words_game_map.json | 8 +- .../res/config/writing_game_map.json | 12 +- 11 files changed, 142 insertions(+), 1705 deletions(-) delete mode 100644 goa/Resources/res/config/game_levels_old.json diff --git a/goa/Classes/menu/MapScene.cpp b/goa/Classes/menu/MapScene.cpp index 0631996978..3e34bd6589 100644 --- a/goa/Classes/menu/MapScene.cpp +++ b/goa/Classes/menu/MapScene.cpp @@ -160,28 +160,28 @@ void MapScene::processChildNodes(cocos2d::Node *rootNode) { std::string lName = node->getName(); std::string englishName = ""; if (lName.compare("City1") == 0) { - lName = "Õð¢»ÜéLUUUU"; // Bengaluru + lName = "बेंगलुरु"; // Bengaluru englishName = "Bengaluru"; } else if (lName.compare("City2") == 0) { - lName = "Üæòâ °¢ÁðçÜâ";// Los Angeles + lName = "लॉस एंजेलिस";// Los Angeles englishName = "Los Angeles"; } else if (lName.compare("City3") == 0) { - lName = "sêSÅÙ"; // Houston + lName = "ह्यूस्टन"; // Houston englishName = "Houston"; } else if (lName.compare("city4") == 0) { - lName = "Ü¢ÇÙ"; // London + lName = "लंडन"; // London englishName = "London"; } else if (lName.compare("City5") == 0) { - lName = "ÇæÚ °â âÜæ×"; // Dar es Salaam + lName = "डार एस सलाम"; // Dar es Salaam englishName = "Dar es Salaam"; } else if (lName.compare("Camp") == 0) { - lName = "·ñ¢UUUÂ"; // Camp + lName = "कैंप"; // Camp englishName = "Camp"; } else if (lName.compare("Farm House") == 0) { - lName ="ÈUUUæ×ü ãæ©â"; // Farm House + lName ="फार्म हाउस"; // Farm House englishName = "Farm House"; } else if (lName.compare("Mining Town") == 0) { - lName ="¹ÙÙ àæãÚ"; // Mining Town + lName ="खनन शहर"; // Mining Town englishName = "Mining Town"; } @@ -193,7 +193,7 @@ void MapScene::processChildNodes(cocos2d::Node *rootNode) { std::string mapText = this->currentLangUtil->translateString(lName); node->setPosition(Vec2(node->getPosition().x, node->getPosition().y + 40)); - cocos2d::Label* label = Label::createWithTTF(mapText,"fonts/Chanakya.ttf", 90); + cocos2d::Label* label = Label::createWithSystemFont(mapText, "arial", 70); label->setPosition(Vec2(node->getPosition().x, node->getPosition().y - 60)); label->setColor(Color3B(128, 64, 0)); mainLayer->addChild(label); diff --git a/goa/Classes/menu/ScrollableGameMapScene.cpp b/goa/Classes/menu/ScrollableGameMapScene.cpp index edfbaef65e..0542ec84c8 100644 --- a/goa/Classes/menu/ScrollableGameMapScene.cpp +++ b/goa/Classes/menu/ScrollableGameMapScene.cpp @@ -460,7 +460,7 @@ cocos2d::ui::Button* ScrollableGameMapScene::createButton(const rapidjson::Value label->setPosition(Vec2(label->getPositionX(), label->getPositionY()- 300)); button->setScale(0.5); - Label *engText = Label::createWithTTF(gameTitleHindi, "fonts/Chanakya.ttf", 140); + Label *engText = Label::createWithSystemFont(gameTitleHindi, "arial", 110); engText->setPosition(Vec2(label->getPositionX(), label->getPositionY() - 130)); engText->setColor(titleColor); button->addChild(engText); diff --git a/goa/Classes/misc/ChooseCharacter.cpp b/goa/Classes/misc/ChooseCharacter.cpp index b7505e6078..4ac297cd1b 100644 --- a/goa/Classes/misc/ChooseCharacter.cpp +++ b/goa/Classes/misc/ChooseCharacter.cpp @@ -121,10 +121,10 @@ void ChooseCharacter::processChildNodes(cocos2d::Node *rootNode) { if(boyText != NULL) { cocos2d::ui::Text* boyLabel = dynamic_cast(boyText); if(boyLabel != NULL) { - std::string boyText = "ÜǸ·UUUæ"; + std::string boyText = "लड़का"; boyLabel->setString(boyText); - boyLabel->setFontSize(150); - boyLabel->setFontName("fonts/Chanakya.ttf"); + boyLabel->setFontSize(130); + boyLabel->setFontName("arial"); boyLabel->setTextColor(Color4B::WHITE); } @@ -134,10 +134,10 @@ void ChooseCharacter::processChildNodes(cocos2d::Node *rootNode) { if(boyText != NULL) { cocos2d::ui::Text* girlLabel = dynamic_cast(girlText); if(girlLabel != NULL) { - std::string girlText = "ÜǸ·UUUè"; + std::string girlText = "लड़की"; girlLabel->setString(girlText); - girlLabel->setFontSize(150); - girlLabel->setFontName("fonts/Chanakya.ttf"); + girlLabel->setFontSize(130); + girlLabel->setFontName("arial"); girlLabel->setTextColor(Color4B::WHITE); } diff --git a/goa/Classes/misc/ChooseCharacter.hpp b/goa/Classes/misc/ChooseCharacter.hpp index c529fcd6d1..db52abb531 100644 --- a/goa/Classes/misc/ChooseCharacter.hpp +++ b/goa/Classes/misc/ChooseCharacter.hpp @@ -27,8 +27,8 @@ #define BOY_TEXT "boy_text" #define GIRL_TEXT "girl_text" #define CHOOSE_CHARACTER_TEXT "choose Character" -#define BOY_LABEL_TEXT "ÜǸ·UUUæ" -#define GIRL_LABEL_TEXT "ÜǸ·UUUè" +#define BOY_LABEL_TEXT "लड़का" +#define GIRL_LABEL_TEXT "लड़की" class ChooseCharacter : public cocos2d::Layer { diff --git a/goa/Resources/res/config/alphabet_game_map.json b/goa/Resources/res/config/alphabet_game_map.json index e39ba48a86..d81c7cca0b 100644 --- a/goa/Resources/res/config/alphabet_game_map.json +++ b/goa/Resources/res/config/alphabet_game_map.json @@ -1,7 +1,7 @@ [ { "name": "decomone", - "title": "¥ÿæÚ âÁæ¥ô$#$Decomone", + "title": "अक्षर सजाओ$#$Decomone", "_title_comment": "अक्षर सजाओ", "unlock": true, "cIcon": "gameicons/decomone_pressed.png", @@ -184,7 +184,7 @@ }, { "name": "EndlessRunner", - "title":"Öæ»ô ¥æñÚ Â·UUUUǸô$#$Endless Runner", + "title":"भागो और पकड़ो$#$Endless Runner", "_title_comment": "भागो और पकड़ो", "unlock": true, "cIcon": "gameicons/EndlessRunner_pressed.png", @@ -295,7 +295,7 @@ }, { "name": "Alphamon Feed", - "title": "Úæÿæâô¢ ·UUUUô ç¹Üæ¥ô$#$Alphamon Feed", + "title": "राक्षसों को खिलाओ$#$Alphamon Feed", "_title_comment": "राक्षसों को खिलाओ", "unlock": true, "cIcon": "gameicons/Alphamon Feed_pressed.png", @@ -406,7 +406,7 @@ }, { "name": "book", - "title": "¥ÿæÚ ·UUUè ÜǸæ§ü$#$Book", + "title": "अक्षर की लड़ाई$#$Book", "_title_comment": "अक्षर की लड़ाई", "unlock": true, "cIcon": "gameicons/book_pressed.png", @@ -469,7 +469,7 @@ }, { "name": "alphamole", - "title": "Úæÿæâ ·UUUUô ×æÚô$#$Alphamole", + "title": "राक्षस को मारो $#$Alphamole", "_title_comment":"राक्षस को मारो ", "unlock": true, "cIcon": "gameicons/alphamole_pressed.png", @@ -580,7 +580,7 @@ }, { "name": "Cross The Bridge", - "title": "ÂêÜ ·UUUUô ÂæÚ ·UUUUÚô$#$Cross The Bridge", + "title": "पूल को पार करो$#$Cross The Bridge", "_title_comment": "पूल को पार करो", "unlock": true, "cIcon": "gameicons/Cross The Bridge_pressed.png", @@ -688,7 +688,7 @@ }, { "name": "Cannon Ball", - "title":"Ìô ·UUUæ »ôÜæ$#$Cannon Ball", + "title":"तोप का गोला$#$Cannon Ball", "_title_comment": "तोप का गोला", "unlock": true, "cIcon": "gameicons/Cannon Ball_pressed.png", @@ -733,7 +733,7 @@ }, { "name": "bubble", - "title": "ÕéÜÕéÜæ ÈUUUUôǸô$#$Bubble", + "title": "बुलबुला फोड़ो$#$Bubble", "_title_comment": "बुलबुला फोड़ो", "unlock": true, "cIcon": "gameicons/bubble_pressed.png", @@ -820,7 +820,7 @@ }, { "name": "Smash The Rock", - "title": "¿^æÙ ÌôǸô$#$Smash The Rock", + "title": "चट्टान तोड़ो$#$Smash The Rock", "_title_comment": "चट्टान तोड़ो", "unlock": true, "cIcon": "gameicons/Smash The Rock_pressed.png", @@ -931,7 +931,7 @@ }, { "name": "dino", - "title": "߇æü×æÜæ$#$Dino", + "title": "वर्णमाला$#$Dino", "_title_comment": "वर्णमाला", "unlock": true, "cIcon": "gameicons/dino_pressed.png", @@ -964,8 +964,8 @@ }, { "name": "Patch The Wall", - "title": "ÎèßæÚ ·UUUUô ÍÂÍÂæ°¢$#$Patch The Wall", - "_title_comment": "ÎèßæÚ ·UUUè ×Ú{×Ì", + "title": "दीवार को थपथपाए$#$Patch The Wall", + "_title_comment": "दीवार को थपथपाए", "unlock": true, "cIcon": "gameicons/Patch The Wall_pressed.png", "icon": "gameicons/Patch The Wall.png", @@ -1011,7 +1011,7 @@ }, { "name": "basiclettercase", - "title": "¥æ§âRUUUè×$#$Basic Letter Case", + "title": "आइसक्रीम$#$Basic Letter Case", "_title_comment": "आइसक्रीम", "cIcon": "gameicons/basiclettercase_pressed.png", "icon": "gameicons/basiclettercase.png", @@ -1058,7 +1058,7 @@ }, { "name": "alphaarrange", - "title": "¥ËÈUUUæ ÃØßSÍæ$#$Alpha Arrange", + "title": "अल्फा व्यवस्था$#$Alpha Arrange", "_title_comment": "अल्फा व्यवस्था", "unlock": true, "cIcon": "gameicons/AlphaArrange_pressed.png", diff --git a/goa/Resources/res/config/game_levels_old.json b/goa/Resources/res/config/game_levels_old.json deleted file mode 100644 index 1b71cb7552..0000000000 --- a/goa/Resources/res/config/game_levels_old.json +++ /dev/null @@ -1,1563 +0,0 @@ -{ - "table": [ - { - "levels": [ - 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 - ], - "help": "Enter the correct number on the missing fish. The fishes are arranged according to the multiplication table. If you multiply the top of the column with the left of the row, you will get the correct number.", - "video": "table.webm" - } - - ], - "MainMenuHome": [ - { - "levels": [ - 1 - ], - "help": "×𢠥æ·UUUæ Sßæ»Ì ãñ |", - "video": "MainMenuHome_help.webm" - } - ], - "menu": [ - { - "levels": [ - 1 - ], - "help": "Welcome to Chimple!", - "video": "menu_help.webm" - } - ], - "camp": [ - { - "levels": [ - 1 - ], - "help": "You have to help others and become a hero! Your goal is to help the camp director get a red purse for the party.", - "video": "camp_help.webm" - } - ], - "miningbg": [ - { - "levels": [ - 1 - ], - "help": "You have to help others and become a hero! Your goal is to help the miner find a flashlight.", - "video": "camp_help.webm" - } - ], - "farmhouse": [ - { - "levels": [ - 1 - ], - "help": "You have to help others and become a hero! Your goal is to help the farmer find his shovel.", - "video": "camp_help.webm" - } - ], - "city1": [ - { - "levels": [ - 1 - ], - "help": "You have to help others and become a hero! Your goal is to help the girl by giving her money to reach home.", - "video": "camp_help.webm" - } - ], - "city2": [ - { - "levels": [ - 1 - ], - "help": "You have to help others and become a hero! Your goal is to help the mother by getting her baby milk.", - "video": "camp_help.webm" - } - ], - "city3": [ - { - "levels": [ - 1 - ], - "help": "You have to help others and become a hero! Your goal is to help the villager get medicine.", - "video": "camp_help.webm" - } - ], - "city4": [ - { - "levels": [ - 1 - ], - "help": "You have to help others and become a hero! Your goal is to help the sailor get the earth globe.", - "video": "camp_help.webm" - } - ], - "city5": [ - { - "levels": [ - 1 - ], - "help": "You have to help others and become a hero! Your goal is to help the scientist go to his conference by giving him a plane ticket.", - "video": "camp_help.webm" - } - ], - "StoryCoverPage": [ - { - "levels": [ - 1 - ], - "help": "Welcome to the book library. You can click on any book to read it.", - "video": "story-help.webm" - } - ], - "story-catalogue": [ - { - "levels": [ - 1 - ], - "help": "Welcome to the book library. You can click on any book to read it.", - "video": "story_help.webm" - } - ], - "choose_character": [ - { - "levels": [ - 1 - ], - "help": "choose_character.", - "video": "choose_character_1.webm" - } - ], - "story-teller": [ - { - "levels": [ - 1 - ], - "help": "story-teller.", - "video": "story-teller_1.webm" - } - ], - "popcount": [ - { - "levels": [ - 1,2,3,4,5,6,7,8,9,10 - ], - "concepts": [ - "number" - ], - "help": "Count the number of Starfish and select the correct number.", - "video": "popcount_1.webm" - } - ], - "jumpingNumbers": [ - { - "levels": [ - 1,2,3,4,5,6,7,8,9,10 - ], - "concepts": [ - "number" - ], - "help": "Jump on the correct numbers in order.", - "video": "jumpingNumbers_1.webm" - }, - { - "levels": [ - 11 - ], - "concepts": [ - "table2" - ], - "help": "Jump on the correct numbers according to the multiplication tables.", - "video": "jumping_2.webm" - }, - { - "levels": [ - 12 - ], - "concepts": [ - "table3" - ], - "help": "Jump on the correct numbers according to the multiplication tables.", - "video": "jumping_2.webm" - }, - { - "levels": [ - 13 - ], - "concepts": [ - "table4" - ], - "help": "Jump on the correct numbers according to the multiplication tables.", - "video": "jumping_2.webm" - }, - { - "levels": [ - 14 - ], - "concepts": [ - "table5" - ], - "help": "Jump on the correct numbers according to the multiplication tables.", - "video": "jumping_2.webm" - }, - { - "levels": [ - 15 - ], - "concepts": [ - "table6" - ], - "help": "Jump on the correct numbers according to the multiplication tables.", - "video": "jumping_2.webm" - }, - { - "levels": [ - 16 - ], - "concepts": [ - "table7" - ], - "help": "Jump on the correct numbers according to the multiplication tables.", - "video": "jumping_2.webm" - }, - { - "levels": [ - 17 - ], - "concepts": [ - "table8" - ], - "help": "Jump on the correct numbers according to the multiplication tables.", - "video": "jumping_2.webm" - }, - { - "levels": [ - 18 - ], - "concepts": [ - "table9" - ], - "help": "Jump on the correct numbers according to the multiplication tables.", - "video": "jumping_2.webm" - }, - { - "levels": [ - 19 - ], - "concepts": [ - "table10" - ], - "help": "Jump on the correct numbers according to the multiplication tables.", - "video": "jumping_2.webm" - }, - { - "levels": [ - 20 - ], - "concepts": [ - "even_odd" - ], - "help": "Jump on odd numbers.", - "video": "step_odd_candy.webm" - }, - { - "levels": [ - 22,24,26,28 - ], - "concepts": [ - "even_odd" - ], - "help": "Jump on odd numbers.", - "video": "step_odd.webm" - }, - { - "levels": [ - 21,23,25,27,29 - ], - "concepts": [ - "even_odd" - ], - "help": "Jump on even numbers.", - "video": "jumping_3.webm" - } - ], - "atm": [ - { - "levels": [ - 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 - ], - "help": "Choose the correct number of notes to make it equal to the value shown in the money machine.", - "video": "atm_1.webm" - } - ], - "Item": [ - { - "levels": [ - 1,2,3,4,5 - ], - "concepts": [ - "addition" - ], - "help": "Fill the pond with the number of fishes shown.", - "video": "Item_1.webm" - }, - { - "levels": [ - 6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 - ], - "concepts": [ - "addition" - ], - "help": "Fill the box with the number of frogs shown.", - "video": "Item_calculator.webm" - } - ], - "cardraw": [ - { - "levels": [ - 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30, - 31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62 - ], - "help": "Write the alphabet shown to make the car drive home.", - "video": "cardraw_1.webm", - "writing": [ - { - "level":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26], - "upper":true - }, - { - "level":[27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52], - "upper":false - }, - { - "level":[53,54,55,56,57,58,59,60,61,62], - "numeric":true - } - - ] - } - ], - "Line": [ - { - "levels": [ - 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 - ], - - "help": "Place the candy on the line according to the number on it.", - "video": "Line_1.webm" - } - ], - "blastletter": [ - { - "levels": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26], - "concepts": [ - "alphabet" - ], - "help": "Write the alphabet shown before the bomb blasts.", - "video": "defuse_the_bomb_1.webm", - "writing": [ - { - "level":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26], - "upper":true - } - ] - }, - { - "levels": [ 27, 28, 29, 30, 31, 32, 33, 34, 35, 36 ], - "concepts": [ - "number" - ], - "help": "Write the number shown before the bomb blasts.", - "video": "defuse_the_bomb_2.webm", - "writing": [ - { - "level":[27,28,29,30,31,32,33,34,35,36], - "numeric":true - } - ] - }, - { - "levels": [ 37, 38, 39, 40, 41, 42, 43, 44, 45, 46 ], - "concepts": [ - "word" - ], - "help": "Write the word shown before the bomb blasts.", - "video": "defuse_the_bomb_3.webm", - "writing": [ - { - "level":[37,38,39,40,41,42,43,44,45,46], - "upper":true - } - ] - }, - { - "levels": [ 47, 48, 49, 50, 51, 52, 53, 54, 55, 56 ], - "concepts": [ - "plural" - ], - "help": "Write the plural of the word shown before the bomb blasts.", - "video": "defuse_the_bomb_4.webm", - "writing": [ - { - "level":[47,48,49,50,51,52,53,54,55,56], - "upper":true - } - ] - }, - { - "levels": [ 57, 58, 59, 60, 61, 62, 63, 64, 65, 66 ], - "concepts": [ - "antonym" - ], - "help": "Write the opposite of the word shown before the bomb blasts.", - "video": "defuse_the_bomb_5.webm", - "writing": [ - { - "level":[57,58,59,60,61,62,63,64,65,66], - "upper":true - } - ] - }, - { - "levels": [ 67, 68, 69, 70, 71, 72, 73, 74, 75, 76 ], - "concepts": [ - "synonym" - ], - "help": "Write the word with the same meaning of the word shown before the bomb blasts.", - "video": "defuse_the_bomb_6.webm", - "writing": [ - { - "level":[67,68,69,70,71,72,73,74,75,76], - "upper":true - } - ] - }, - { - "levels": [ 77, 78, 79, 80, 81, 82, 83, 84, 85, 86 ], - "concepts": [ - "homonym" - ], - "help": "Write the word with the same pronunciation of the word shown before the bomb blasts.", - "video": "defuse_the_bomb_7.webm", - "writing": [ - { - "level":[77,78,79,80,81,82,83,84,85,86], - "upper":true - } - ] - } - ], - "Door": [ - { - "levels": [ - 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30, - 31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62 - ], - "concepts": [ - "alphabet" - ], - "help": "Write the alphabet shown on each door to make the animals go.", - "video": "Barndoor.webm", - "writing": [ - { - "level":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26], - "upper":true - }, - { - "level":[27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52], - "upper":false - }, - { - "level":[53,54,55,56,57,58,59,60,61,62], - "numeric":true - } - - ] - }, - { - "levels": [ - 63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80 - ], - "concepts": [ - "word" - ], - "help": "Write the each alphabet of the word on each door to make the animals go.", - "video": "door_words.webm", - "writing": [ - { - "level":[63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80], - "upper":true - } - ] - } - ], - "book": [ - { - "levels": [ - 1,101,2,202 - ], - "level_concepts": [ - "A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z" - ], - "swa_levels": [ - 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 - ], - "swa_level_concepts": [ - "A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","R","S","T","U","V","W","Y","Z" - ], - "concepts": [ - "alphabet" - ], - "help": "Choose the correct alphabet below to give power to the alphabet monster. If you choose correctly, your monster will get more power and defeat the opposite monster", - "video": "AlphamonCombat.webm" - } - ], - "EndlessRunner": [ - { - "levels": [ - 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 - ], - "level_concepts": [ - "ABC","DEF","GHI","JKL","MNO","PQR","STU","VWX","YZ","ABC","DEF","GHI","JKL","MNO","PQR","STU","VWX","YZ" - ], - "help": "Catch the correct alphabet shown above by jumping. Do not catch the wrong alphabet.", - "video": "endlessrunner_1.webm" - } - ], - "baja": [ - { - "levels": [ - 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40 - ], - "concepts": [ - "word" - ], - "help": "Choose the correct alphabets to form the word and make your car go fast.", - "video": "baja_1.webm" - } - ], - "bubble": [ - { - "levels": [ - 1,2,3,4,5,6,7,8,9 - ], - "level_concepts": [ - "ABC","DEF","GHI","JKL","MNO","PQR","STU","VWX","YZ" - ], - "help": "Shoot the bubble and match the correct letter.", - "video": "bubbleshooter_letter_1.webm" - }, - { - "levels": [ - 10,11,12,13,14 - ], - "concepts": [ - "number" - ], - "help": "Shoot the bubble and match the correct number.", - "video": "bubbleshooter_number_1.webm" - } - ], - "shoot": [ - { - "levels": [ 1,2,3,4,5,16,17,18,19,20,31,32,33,34,35,46,47,48,49,50,61,62,63,64,65 ], - "concepts": [ - "homonym" - ], - "help": "Choose the word with the same pronunciation of the word shown below. If you choose correctly, you get a chance to shoot.", - "video": "shoot_1.webm" - }, - { - "levels": [ 6,7,8,9,10,21,22,23,24,25,36,37,38,39,40,51,52,53,54,55,66,67,68,69,70 ], - "concepts": [ - "antonym" - ], - "help": "Choose the opposite of the word shown below. If you choose correctly, you get a chance to shoot.", - "video": "shoot_2.webm" - }, - { - "levels": [ 11,12,13,14,15,26,27,28,29,30,41,42,43,44,45,56,57,58,59,60,71,72,73,74,75 ], - "concepts": [ - "synonym" - ], - "help": "Choose the word with the same meaning of the word shown below. If you choose correctly, you get a chance to shoot.", - "video": "shoot_3.webm" - } - ], - "owl": [ - { - "levels": [ 1, 2, 3, 4, 5, 26, 27, 28, 29, 30, 51, 52, 53, 54, 55, 76, 77, 78, 79, 80 ], - "concepts": [ - "word" - ], - "help": "Spell the word shown by choosing the correct alphabets.", - "video": "owl_1.webm" - }, - { - "levels": [6,7,8,9,10,31,32,33,34,35,56,57,58,59,60,81,82,83,84,85], - "concepts": [ - "plural" - ], - "help": "Spell the plural of the word shown by choosing the correct alphabets.", - "video": "owl_2.webm" - }, - { - "levels": [11,12,13,14,15,36,37,38,39,40,61,62,63,64,65,86,87,88,89,90], - "concepts": [ - "antonym" - ], - "help": "Spell the opposite of the word shown by choosing the correct alphabets.", - "video": "owl_3.webm" - }, - { - "levels": [16,17,18,19,20,41,42,43,44,45,66,67,68,69,70,91,92,93,94,95], - "concepts": [ - "synonym" - ], - "help": "Spell the word with the same meaning of the word shown by choosing the correct alphabets.", - "video": "owl_4.webm" - }, - { - "levels": [21,22,23,24,25,46,47,48,49,50,71,72,73,74,75,96,97,98,99,100], - "concepts": [ - "homonym" - ], - "help": "Spell the word with the same pronunciation of the word shown by choosing the correct alphabets.", - "video": "owl_5.webm" - } - ], - "ConnectTheDots": [ - { - "levels": [ - 1 - ], - "concepts":[ - "number" - ], - "help": "Join dots of the same color to make the number shown on the right.", - "video": "ConnectTheDots_1.webm" - } - ], - "Dots": [ - { - "levels": [ - 1 - ], - "concepts":[ - "number" - ], - "help": "Count the number of dots with your fingers. Choose the fingers that match the number of dots on the screen.", - "video": "Dots_1.webm" - } - ], - "Maze": [ - { - "levels": [ - 1 - ], - "help": "Use the finger shown in the beginning to trace the line.", - "video": "Maze_1.webm" - } - ], - "Bounce": [ - { - "levels": [ - 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 - ], - "level_concepts":[ - "addition","addition","addition","addition","addition","addition_carryover_1","addition_carryover_1","addition_carryover_1","addition_carryover_1","addition_carryover_1","subtraction","subtraction","subtraction","subtraction","subtraction","subtraction_carryover_1","subtraction_carryover_1","subtraction_carryover_1","subtraction_carryover_1","subtraction_carryover_1" - ], - "help": "When the ice cream drops on the cup, it will jump according to the number written on it. Place the cups on the line and drop the ice cream so that it bounces and reaches the cone.", - "video": "icecream.webm" - } - ], - "train": [ - { - "levels": [ - 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, - 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48 ], - "help": "Click on the words in the right order to make a proper sentence.", - "video": "train.webm" - } - ], - "stack": [ - { - "levels": [ - 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, - 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, - 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72], - "concepts": [ - "word" - ], - "help": "Choose the box with the matching start of the word.", - "video": "stack_farm.webm" - } - ], - "talk": [ - { - "levels": [ - 1, 2, 3, 4, 5, 6, 55, 56, 57, 58, 59, 60 - ], - "concepts": [ - "verb" - ], - "help": "Choose all the verbs in the sentence.", - "video": "talk_island.webm" - }, - - { - "levels": [ - 7, 8, 9, 10, 11, 12, 61, 62, 63, 64, 65, 66 - ], - "concepts": [ - "noun" - ], - "help": "Choose all the nouns in the sentence.", - "video": "talk_city.webm" - }, - - { - "levels": [ - 13, 14, 15, 16, 17, 18, 67, 68, 69, 70, 71, 72 - ], - "concepts": [ - "pronoun" - ], - "help": "Choose all the pronouns in the sentence.", - "video": "talk_island.webm" - }, - - { - "levels": [ - 19, 20, 21, 22, 23, 24 - ], - "concepts": [ - "adverb" - ], - "help": "Choose all the adverbs in the sentence.", - "video": "talk_island.webm" - }, - - { - "levels": [ - 25, 26, 27, 28, 29, 30 - ], - "concepts": [ - "adjective" - ], - "help": "Choose all the adjectives in the sentence.", - "video": "talk_island.webm" - }, - - { - "levels": [ - 31, 32, 33, 34, 35, 36 - ], - "concepts": [ - "preposition" - ], - "help": "Choose all the prepositions in the sentence.", - "video": "talk_island.webm" - }, - - { - "levels": [ - 37, 38, 39, 40, 41, 42 - ], - "concepts": [ - "conjunction" - ], - "help": "Choose all the conjuctions in the sentence.", - "video": "talk_island.webm" - }, - - { - "levels": [ - 43, 44, 45, 46, 47, 48 - ], - "concepts": [ - "interjection" - ], - "help": "Choose all the interjections in the sentence.", - "video": "talk_island.webm" - }, - - { - "levels": [ - 49, 50, 51, 52, 53, 54 - ], - "concepts": [ - "article" - ], - "help": "Choose all the articles in the sentence.", - "video": "talk_island.webm" - } - - ], - "jasmine": [ - { - "levels": [ - 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, - 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40 - ], - "concepts": [ - "word" - ], - "help": "Choose the correct alphabets to form the word and see the flowers bloom.", - "video": "jasmin.webm" - } - ], - "Cannon Ball": [ - { - "levels": [ - 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 - ], - "help": "Drag the alphabet and put it on the correct cannon.", - "video": "cannonball.webm" - } - ], - "Patch The Wall": [ - { - "levels": [ - 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 - ], - "help": "Drag the alphabet and put it on the correct alphabet.", - "video": "patchthewall.webm" - } - ], - "decomone": [ - { - "levels": [ - 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 - ], - "help": "¥ÿæÚô¢ ·UUUUô âÁæÙð ·UUUæ ¥æ٢ΠÜ𢠥¢Ì ×𢠥ÿæÚ ·UUUæ ÈUUUUôÅô ¹è¢¿ð |", - "video": "decomone_1.webm" - } - ], - "order": [ - { - "levels": [ - 1,2,3,4,5 - ], - "concepts": [ - "alphabet" - ], - "help": "Arrange the Alphabets from bottom to top.", - "video": "order_1.webm" - }, - { - "levels": [ - 6 - ], - "concepts": [ - "alphabet" - ], - "help": "Arrange the Alphabets from bottom to top.", - "video": "order_2.webm" - }, - { - "levels": [ - 7,8,9,10 - ], - "help": "Arrange the blocks in ascending order from bottom to top.", - "video": "order_4.webm" - }, - { - "levels": [ - 11 - ], - "help": "Arrange the blocks in ascending order from bottom to top.", - "video": "order_3.webm" - }, - { - "levels": [ - 12,13,14,15,16,17,18 - ], - "concepts": [ - "number" - ], - "help": "Arrange the numbers in ascending order from bottom to top.", - "video": "order_5.webm" - }, - { - "levels": [ - 19 - ], - "concepts": [ - "day" - ], - "help": "Arrange the days of the week in order from bottom to top.", - "video": "order_weekdays.webm" - }, - { - "levels": [ - 20 - ], - "concepts": [ - "month" - ], - "help": "Arrange the months of the year in order from bottom to top.", - "video": "order_months.webm" - } - ], - "dash": [ - { - "levels": [ - 1,2,3,4,5,16,17,18,19,20,31,32,33,34,35,46,47,48,49,50,61,62,63,64,65 - ], - "concepts": [ - "synonym" - ], - "help": "Click on the word with the same meaning of the word shown above to jump. Finish the race quicker than your opponent.", - "video": "dash_1.webm" - }, - { - "levels": [ - 6,7,8,9,10,21,22,23,24,25,36,37,38,39,40,51,52,53,54,55,66,67,68,69,70 - ], - "concepts": [ - "antonym" - ], - "help": "Click on the word with the opposite meaning of the word shown above to jump. Finish the race quicker than your opponent.", - "video": "dash_11.webm" - }, - { - "levels": [ - 11,12,13,14,15,26,27,28,29,30,41,42,43,44,45,56,57,58,59,60,71,72,73,74,75 - ], - "concepts": [ - "homonym" - ], - "help": "Click on the word with the same pronunciation of the word shown above to jump. Finish the race quicker than your opponent.", - "video": "dash_22.webm" - } - ], - "cat": [ - { - "levels": [ - 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38, - 39,40 - ], - "concepts": [ - "word" - ], - "help": "Choose the correct alphabets to form the word.", - "video": "cat_1.webm" - } - ], - "Alphamon Feed": [ - { - "levels": [ - 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 - ], - "concepts": [ - "alphabet" - ], - "help": "Drag the monster to feed the correct alphabet.", - "video": "Alphamon Feed_1.webm" - } - ], - "alphamole": [ - { - "levels": [ - 1,6,11,16,21,26 - ], - "concepts": [ - "alphabet" - ], - "help": "Whack the alphabet monster if it is the same one shown on the upper left.", - "video": "Alphamole_1.webm" - }, - { - "levels": [ - 2,7,12,17,22 - ], - "concepts": [ - "alphabet" - ], - "help": "Whack the alphabet monster if it is the same one shown on the upper left.", - "video": "Alphamole_2.webm" - }, - { - "levels": [ - 3,8,13,18,23 - ], - "concepts": [ - "alphabet" - ], - "help": "Whack the alphabet monster if it is the same one shown on the upper left.", - "video": "Alphamole_3.webm" - }, - { - "levels": [ - 4,9,14,19,24 - ], - "concepts": [ - "alphabet" - ], - "help": "Whack the alphabet monster if it is the same one shown on the upper left.", - "video": "Alphamole_4.webm" - }, - { - "levels": [ - 5,10,15,20,25 - ], - "concepts": [ - "alphabet" - ], - "help": "Whack the alphabet monster if it is the same one shown on the upper left.", - "video": "Alphamole_5.webm" - } - ], - "dino": [ - { - "levels": [ - 1,2,3 - ], - "help": "Drag the alphabet and drop on the dino", - "video": "dino_1.webm" - } - ], - "Cross The Bridge": [ - { - "levels": [ - 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 - ], - "concepts": [ - "alphabet" - ], - "help": "Allow the same alphabet monster given on the board to cross the bridge. If a different monster tries to enter, open the bridge to make the monster fall.", - "video": "Cross_the_bridge.webm" - } - ], - "chain": [ - { - "levels": [ - 1 - ], - "concepts": [ - "word" - ], - "help": "Choose the correct alphabets to form the word.", - "video": "Chain.webm" - } - ], - "balloonMath": [ - { - "levels": [ - 1 - ], - "concepts": [ - "subtraction", - "subtraction_carryover_1", - "subtraction_carryover_2", - "subtraction_carryover_3" - ], - "help": "Burst the balloons with the pin so that only the number shown will be left.", - "video": "Balloon_math.webm" - } - ], - "pop": [ - { - "levels": [ - 1 - ], - "help": "Click on the words in the right order to make a proper sentence.", - "video": "Pop.webm" - } - ], - "bingo": [ - { - "levels": [ - 1, - 2, - 3, - 4, - 13, - 14, - 15, - 16, - 25, - 26, - 27, - 28 - ], - "concepts": [ - "synonym" - ], - "help": "Click on the word with the same meaning of the word above. When you get all words in a line correct, you win! Bingo!.", - "video": "Bingo_city_3x3.webm" - }, - { - "levels": [ - 5,6,7,8,17,18,19,20,29,30,31,32 - ], - "concepts": [ - "antonym" - ], - "help": "Click on the word with the opposite meaning of the word above. When you get all words in a line correct, you win! Bingo!.", - "video": "Bingo_jungle_3x3.webm" - }, - { - "levels": [ - 9,10,11,12,21,22,23,24,33,34,35,36 - ], - "concepts": [ - "homonym" - ], - "help": "Click on the word with the same pronunciation of the word above. When you get all words in a line correct, you win! Bingo!.", - "video": "Bingo_farm_3x3.webm" - } - ], - "drop": [ - { - "levels": [ - 1,2,3,4,5,16,17,18,19,20,31,32,33,34,35,46,47,48,49,50 - ], - "concepts": [ - "word" - ], - "help": "Drop the correct alphabet into the empty box to make the given word.", - "video": "Drop_Jungle.webm" - }, - { - "levels": [ - 6,7,8,9,10,21,22,23,24,25,36,37,38,39,40,51,52,53,54,55 - ], - "concepts": [ - "synonym" - ], - "help": "Drop the correct alphabet into the empty box to make the word with the same meaning of the given word.", - "video": "Drop_City.webm" - }, - { - "levels": [ - 11,12,13,14,15,26,27,28,29,30,41,42,43,44,45,56,57,58,59,60 - ], - "concepts": [ - "antonym" - ], - "help": "Drop the correct alphabet into the empty box to make the word with the opposite meaning of the given word.", - "video": "Drop_Hero.webm" - } - ], - "chocolateFactory": [ - { - "levels": [ - 1 - ], - "help": "Arrange the tray in ascending order according to the count of milk bottle present in each tray.", - "video": "chocolateFactory_1.webm" - } - ], - "find": [ - { - "levels": [ - 1 - ], - "help": "Arrange the tray in ascending order according to the count of milk bottle present in each tray.", - "video": "chocolateFactory_1.webm" - } - ], - - "shop": [ - { - "levels": [ - 1 - ], - "concepts": [ - "addition", - "addition_carryover_1", - "addition_carryover_2", - "addition_carryover_3" - ], - "help": "Place the correct vegetable on the weighing machine and calculate the total price of vegetables on the calculator.", - "video": "Shop.webm" - } - ], - "Kung Fu Alpha": [ - { - "levels": [ - 1 - ], - "help": "Move the ball to trace the alphabet.", - "video": "kungfualpha.webm" - } - ], - "alphaarrange": [ - { - "levels": [ - 1 - ], - "help": "Drag and drop the alphabet in correct sequence.", - "video": "alphaarrange.webm" - } - ], - "sortit": [ - { - "levels": [ - 1 - ], - "help": "Sort the items.", - "video": "sortit.webm" - } - ], - "wembley": [ - { - "levels": [ - 1 - ], - "help": "Click on the footballs to form the word mentioned on the top.", - "video": "wembley.webm" - } - ], - "memory": [ - { - "levels": [ - 1,2,7,8,13,14,19,20,25,26,31,32 - ], - "concepts": [ - "antonym" - ], - "help": "Match the opposites words to form a pair.", - "video": "memory-antonym.webm" - }, - { - "levels": [ - 3,4,9,10,15,16,21,22,27,28,33,34 - ], - "concepts": [ - "synonym" - ], - "help": "Match the same meaning words to form a pair.", - "video": "memory-synonym.webm" - }, - { - "levels": [ - 5,6,11,12,17,18,23,24,29,30,35,36 - ], - "concepts": [ - "homonym" - ], - "help": "Match the same sounding words to form a pair.", - "video": "memory-homonym.webm" - } - ], - "balloon": [ - { - "levels": [ - 1,2,3,4,5,6,7,8,66,68 - ], - "concepts": [ - "noun" - ], - "help": "Catch the words of the given type to make the pilot fly up. Avoid the rocks.", - "video": "fly-noun.webm" - }, - { - "levels": [ - 9,10,11,12,13,14,15,16 - ], - "concepts": [ - "adjective" - ], - "help": "Catch the words of the given type to make the pilot fly up. Avoid the rocks.", - "video": "fly-adjective.webm" - }, - { - "levels": [ - 17,18,19,20,21,22,23,24 - ], - "concepts": [ - "verb" - ], - "help": "Catch the words of the given type to make the pilot fly up. Avoid the rocks.", - "video": "fly-verb.webm" - }, - { - "levels": [ - 25,26,27,28,29,30,31,32,72 - ], - "concepts": [ - "pronoun" - ], - "help": "Catch the words of the given type to make the pilot fly up. Avoid the rocks.", - "video": "fly-pronouns.webm" - }, - { - "levels": [ - 33,34,35,36,37,38,39,40,67 - ], - "concepts": [ - "adverb" - ], - "help": "Catch the words of the given type to make the pilot fly up. Avoid the rocks.", - "video": "fly-adverb.webm" - }, - { - "levels": [ - 41,42,43,44,45,46,47,48,69 - ], - "concepts": [ - "preposition" - ], - "help": "Catch the words of the given type to make the pilot fly up. Avoid the rocks.", - "video": "fly-prepositions.webm" - }, - { - "levels": [ - 49,50,51,52,53,54,55,56,70 - ], - "concepts": [ - "conjunction" - ], - "help": "Catch the words of the given type to make the pilot fly up. Avoid the rocks.", - "video": "fly-conjuctions.webm" - }, - { - "levels": [ - 55,56,57,58,59,60,61,62,63,64,65,71 - ], - "concepts": [ - "interjection" - ], - "help": "Catch the words of the given type to make the pilot fly up. Avoid the rocks.", - "video": "fly-interjections.webm" - } - ], - "TreasureHunt": [ - { - "levels": [ - 1 - ], - "help": "Write the alphabet shown above to get the treasure.", - "video": "treasurehunt.webm" - } - ], - "Units": [ - { - "levels": [ - 1 - ], - "help": "Pull the handle to prepare pizza and click on the calculator to enter the total number of toppings.", - "video": "units.webm" - } - ], - "spot": [ - { - "levels": [ - 1 - ], - "help": "Count the number of objects as shown below by scrolling through the screen and click on calculator to enter the answer.", - "video": "spot.webm" - } - ], - "pillar": [ - { - "levels": [ - 1,2,3,4,5,16,17,18,19,20,31,32,33,34,35,46,47,48,49,50,61,62,63,64,65 - ], - "concepts": [ - "noun" - ], - "help": "Click on the nouns shown above to make a tall cake.", - "video": "pillar_1.webm" - }, - { - "levels": [ - 6,7,8,9,10,21,22,23,24,25,36,37,38,39,40,51,52,53,54,55,66,67,68,69,70 - ], - "concepts": [ - "verb" - ], - "help": "Click on the verbs shown above to make a tall cake.", - "video": "Pillar_island.webm" - }, - { - "levels": [ - 11,12,13,14,15,26,27,28,29,30,41,42,43,44,45,56,57,58,59,60,71,72,73,74,75 - ], - "concepts": [ - "adjective" - ], - "help": "Click on the adjectives shown above to make a tall cake.", - "video": "Pillar.webm" - } - ], - "circle": [ - { - "levels": [ - 1,2,3,4,5,16,17,18,19,20,31,32,33,34,35,46,47,48,49,50,61,62,63,64,65 - ], - "concepts": [ - "synonym" - ], - "help": "Click on the word with the same meaning of the word in the center.", - "video": "Circle_candy.webm" - }, - { - "levels": [ - 6,7,8,9,10,21,22,23,24,25,36,37,38,39,40,51,52,53,54,55,66,67,68,69,70 - ], - "concepts": [ - "antonym" - ], - "help": "Click on the word with the opposite meaning of the word in the center.", - "video": "circle_island.webm" - }, - { - "levels": [ - 11,12,13,14,15,26,27,28,29,30,41,42,43,44,45,56,57,58,59,60,71,72,73,74,75 - ], - "concepts": [ - "homonym" - ], - "help": "Click on the word with the same pronunciation of the word in the center.", - "video": "Circle_candy_homo.webm" - } - ], - - "jazz": [ - { - "levels": [ - 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38, - 39,40 - ], - "concepts": [ - "word" - ], - "help": "Choose the correct alphabets to form the word.", - "video": "Jazz.webm" - } - ], - "Smash The Rock": [ - { - "levels": [ - 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 - ], - "concepts": [ - "alphabet" - ], - "help": "Click on the same alphabet as the rock in the middle for five times to break the rock.", - "video": "Smash The Rock_1.webm" - } - ], - "JumpOnWords": [ - { - "levels": [ - 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38, - 39,40,41,42,43,44,45 - ], - "concepts": [ - "word" - ], - "help": "Make words from the alphabets shown below. Every correct word makes the character jump.", - "video": "JumpOnWords_1.webm" - } - ], - "card": [ - { - "levels": [ - 1, 2, 6, 7, 11, 12, 16 - ], - "concepts": [ - "number" - ], - "help": "Choose two cards such that the sum of the animals are equal to the number shown on the board.", - "video": "card.webm" - }, - - { - "levels": [ - 3, 4, 5, 8, 9, 10, 13, 14, 15, 17, 18, 19, 20 - ], - "concepts": [ - "number" - ], - "help": "Choose three cards such that the sum of the animals are equal to the number shown on the board.", - "video": "card.webm" - } - ], - "step": [ - { - "levels": [ - 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, - 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45 ], - "help": "Pull the missing steps up to complete the series.", - "video": "step.webm" - } - ], - "shape": [ - { - "levels": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10 - ], - "help": "Close the hole in the tank by dragging the same shape from below.", - "video": "shape.webm" - } - ], - "mathlearning": [ - { - "levels": [ - 1, - 2, - 3, - 4, - 5 - ], - "concepts": [ - "addition" - ], - "help": "Addition", - "video": "mathlearning.webm" - }, - { - "levels": [ - 6, - 7, - 8, - 9, - 10 - ], - "concepts": [ - "subtraction" - ], - "help": "Subtraction", - "video": "mathlearning.webm" - } - ], - "BasicMultiplication": [ - { - "levels": [ - 1, - 2, - 3, - 4, - 5, - 6 - ], - "concepts": [ - "multiplication" - ], - "help": "Multiplication", - "video": "BasicMultiplication.webm" - } - ], - "basiclettercase": [ - { - "levels": [ 1 , 2, 3, 4, 5, 6 ,7 , 8, 9 , 10], - "concepts": [ - "alphabet" - ], - "help": "Basic Letter Case", - "video": "BasicMultiplication.webm" - } - ] -} diff --git a/goa/Resources/res/config/game_map.json b/goa/Resources/res/config/game_map.json index 124dca3717..df5935502f 100644 --- a/goa/Resources/res/config/game_map.json +++ b/goa/Resources/res/config/game_map.json @@ -1,7 +1,7 @@ [ { "name": "story-catalogue", - "title": "·UUUUãæçÙØô¢", + "title": "कहानियों", "_title_comment": "कहानियों", "unlock": true, "cIcon": "gameicons/story_pressed.png", @@ -13,7 +13,7 @@ }, { "name": "map", - "title": "ãèÚô", + "title": "हीरो", "_title_comment": "हीरो", "cIcon": "gameicons/hero_pressed.png", "icon": "gameicons/hero.png", @@ -35,7 +35,7 @@ }, { "name": "decomone", - "title": "¥ÿæÚ âÁæ¥ô", + "title": "अक्षर सजाओ", "_title_comment": "अक्षर सजाओ", "unlock": true, "cIcon": "gameicons/decomone_pressed.png", @@ -218,7 +218,7 @@ }, { "name": "EndlessRunner", - "title": "Öæ»ô ¥æñÚ Â·UUUUǸô", + "title": "भागो और पकड़ो", "_title_comment": "भागो और पकड़ो", "unlock": true, "cIcon": "gameicons/EndlessRunner_pressed.png", @@ -329,7 +329,7 @@ }, { "name": "Alphamon Feed", - "title": "Úæÿæâô¢ ·UUUUô ç¹Üæ¥ô", + "title": "राक्षसों को खिलाओ", "_title_comment": "राक्षसों को खिलाओ", "unlock": false, "cIcon": "gameicons/Alphamon Feed_pressed.png", @@ -440,8 +440,8 @@ }, { "name": "book", - "title": "¥ÿæÚô¢ ·UUUè ÜǸæ§ü", - "_title_comment": "अक्षरों की लड़ाई", + "title": "अक्षरों की लड़ाई", + "_title_comment": "अक्षरों की लड़ाई", "unlock": false, "cIcon": "gameicons/book_pressed.png", "icon": "gameicons/book.png", @@ -503,7 +503,7 @@ }, { "name": "alphamole", - "title": "°·UUUU ¥ÁèÕ Úæÿæâ", + "title": "एक अजीब राक्षस", "_title_comment": "एक अजीब राक्षस", "unlock": false, "cIcon": "gameicons/alphamole_pressed.png", @@ -614,7 +614,7 @@ }, { "name": "Cross The Bridge", - "title": "ÂêÜ ·UUUUô ÂæÚ ·UUUUÚô", + "title": "पूल को पार करो", "_title_comment": "पूल को पार करो", "unlock": false, "cIcon": "gameicons/Cross The Bridge_pressed.png", @@ -722,7 +722,7 @@ }, { "name": "Cannon Ball", - "title": "Ìô ·UUUæ »ôÜæ", + "title": "तोप का गोला", "_title_comment": "तोप का गोला", "unlock": false, "cIcon": "gameicons/Cannon Ball_pressed.png", @@ -767,7 +767,7 @@ }, { "name": "bubble", - "title": "ÕéÜÕéÜæ ÈUUUUôǸô", + "title": "बुलबुला फोड़ो", "_title_comment": "बुलबुला फोड़ो", "unlock": false, "cIcon": "gameicons/bubble_pressed.png", @@ -854,7 +854,7 @@ }, { "name": "Smash The Rock", - "title": "¿^æÙ ÌôÇÙæ", + "title": "चट्टान तोडना", "_title_comment": "चट्टान तोडना", "unlock": false, "cIcon": "gameicons/Smash The Rock_pressed.png", @@ -965,7 +965,7 @@ }, { "name": "dino", - "title": "߇æü×æÜæ", + "title": "वर्णमाला", "_title_comment": "वर्णमाला", "unlock": false, "cIcon": "gameicons/dino_pressed.png", @@ -998,7 +998,7 @@ }, { "name": "Patch The Wall", - "title": "ÎèßæÚ ·UUUUô ÍÂÍÂæ°¢", + "title": "दीवार को थपथपाएं", "_title_comment": "दीवार को थपथपाएं", "unlock": false, "cIcon": "gameicons/Patch The Wall_pressed.png", @@ -1045,7 +1045,7 @@ }, { "name": "basiclettercase", - "title": "¥æ§âRUUUè×", + "title": "आइसक्रीम", "_title_comment": "आइसक्रीम", "cIcon": "gameicons/basiclettercase_pressed.png", "icon": "gameicons/basiclettercase.png", @@ -1092,7 +1092,7 @@ }, { "name": "alphaarrange", - "title": "¥ËÈUUUæ ÃØßSÍæ", + "title": "अल्फा व्यवस्था", "_title_comment": "अल्फा व्यवस्था", "unlock": false, "cIcon": "gameicons/AlphaArrange_pressed.png", @@ -1131,7 +1131,7 @@ }, { "name": "baja", - "title": "¿Üæ¥ô", + "title": "चलाओ", "_title_comment": "चलाओ", "unlock": true, "cIcon": "gameicons/baja_pressed.png", @@ -1178,7 +1178,7 @@ }, { "name": "jasmine", - "title": "ÂõÏð ©»æ¥ô", + "title": "पौधे उगाओ", "_title_comment": "पौधे उगाओ", "unlock": true, "cIcon": "gameicons/jasmine_pressed.png", @@ -1225,7 +1225,7 @@ }, { "name": "chain", - "title": "Âàæé Ÿæ뢹Üæ", + "title": "पशु श्रृंखला", "_title_comment": "पशु श्रृंखला", "unlock": false, "cIcon": "gameicons/chain_pressed.png", @@ -1272,7 +1272,7 @@ }, { "name": "wembley", - "title": "߇æü×æÜæ ÈéUUUÅÕæòÜ", + "title": "वर्णमाला फुटबॉल", "_title_comment": "वर्णमाला फुटबॉल", "unlock": false, "cIcon": "gameicons/wembley_pressed.png", @@ -1319,7 +1319,7 @@ }, { "name": "jazz", - "title": "Çþ×", + "title": "ड्रम", "_title_comment": "ड्रम", "unlock": false, "cIcon": "gameicons/jazz_pressed.png", @@ -1366,7 +1366,7 @@ }, { "name": "shoot", - "title": "»ôÜè ×æÚ", + "title": "गोली मार", "_title_comment": "गोली मार", "unlock": false, "cIcon": "gameicons/shoot_pressed.png", @@ -1409,7 +1409,7 @@ }, { "name": "owl", - "title": "ßÌüÙè ©ËÜê", + "title": "वर्तनी उल्लू", "_title_comment": "वर्तनी उल्लू", "unlock": false, "cIcon": "gameicons/owl_pressed.png", @@ -1456,7 +1456,7 @@ }, { "name": "stack", - "title": "àæyÎô¢ ·UUUæ ÉðÚ", + "title": "शब्दों का ढेर", "_title_comment": "शब्दों का ढेर", "unlock": false, "cIcon": "gameicons/stack_pressed.png", @@ -1502,7 +1502,7 @@ }, { "name": "order", - "title": "RUUUU×Õh ·UUUUÚð", + "title": "क्रमबद्ध करे", "_title_comment": "क्रमबद्ध करे", "unlock": false, "cIcon": "gameicons/order_pressed.png", @@ -1548,7 +1548,7 @@ }, { "name": "dash", - "title": "ÂæÙè ·UUUæ Àè¢Åæ", + "title": "पानी का छींटा", "_title_comment": "पानी का छींटा", "unlock": false, "cIcon": "gameicons/dash_pressed.png", @@ -1596,7 +1596,7 @@ }, { "name": "bingo", - "title": "çÕ¢»ô", + "title": "बिंगो", "_title_comment": "बिंगो", "unlock": false, "cIcon": "gameicons/bingo_pressed.png", @@ -1643,7 +1643,7 @@ }, { "name": "drop", - "title": "Õê¢Î", + "title": "बूंद", "_title_comment": "बूंद", "unlock": false, "cIcon": "gameicons/drop_pressed.png", @@ -1690,7 +1690,7 @@ }, { "name": "train", - "title" : "ÚðÜ »æÇè", + "title" : "रेल गाडी", "_title_comment": "रेल गाडी", "unlock": false, "cIcon": "gameicons/train_pressed.png", @@ -1738,7 +1738,7 @@ }, { "name": "pop", - "title": "ÕæÎÜô¢ ·ðUUU ×æŠØ× âð ©Ç¸ô", + "title": "बादलों के माध्यम से उड़ो", "_title_comment": "बादलों के माध्यम से उड़ो", "unlock": false, "cIcon": "gameicons/pop_pressed.png", @@ -1786,7 +1786,7 @@ }, { "name": "talk", - "title": "àæyÎô¢ ·UUUUô ç¹Üæ¥ô", + "title": "शब्दों को खिलाओ", "_title_comment": "शब्दों को खिलाओ", "unlock": false, "cIcon": "gameicons/talk_pressed.png", @@ -1833,7 +1833,7 @@ }, { "name": "memory", - "title": "ØæÎ", + "title": "याद", "_title_comment": "याद", "unlock": false, "cIcon": "gameicons/memory_pressed.png", @@ -1880,7 +1880,7 @@ }, { "name": "circle", - "title": "·UUUUǸ", + "title": "पकड़", "_title_comment": "पकड़", "unlock": false, "cIcon": "gameicons/circle_pressed.png", @@ -1927,7 +1927,7 @@ }, { "name": "pillar", - "title": "·ðUUU·UUUU ÂÚÌ", + "title": "केक परत", "_title_comment": "केक परत", "unlock": false, "cIcon": "gameicons/pillar_pressed.png", @@ -1974,7 +1974,7 @@ }, { "name": "balloon", - "title": "©Ç¸Ùæ", + "title": "उड़ना", "_title_comment": "उड़ना", "unlock": false, "cIcon": "gameicons/balloon_pressed.png", @@ -2018,7 +2018,7 @@ }, { "name": "sortit", - "title": "RUUUU×Õh ·UUUUÚð¢", + "title": "क्रमबद्ध करें", "_title_comment": "क्रमबद्ध करें", "unlock": true, "cIcon": "gameicons/sortit_pressed.png", @@ -2058,7 +2058,7 @@ }, { "name": "shape", - "title": "ÀðÎ ·UUUè ×Ú{×Ì ·UUUUÚð", + "title": "छेद की मरम्मत करे", "_title_comment": "छेद की मरम्मत करे", "unlock": false, "cIcon": "gameicons/shape_pressed.png", @@ -2100,7 +2100,7 @@ }, { "name": "Dots", - "title": "â¢wØæ çÕ¢Îé", + "title": "संख्या बिंदु", "_title_comment": "संख्या बिंदु", "unlock": false, "cIcon": "gameicons/numberdot_pressed.png", @@ -2141,7 +2141,7 @@ }, { "name": "popcount", - "title": "×ÀÜè ·UUUUô ç»Ùð¢", + "title": "मछली को गिनें", "_title_comment": "मछली को गिनें", "unlock": false, "cIcon": "gameicons/popcount_pressed.png", @@ -2185,7 +2185,7 @@ }, { "name": "spot", - "title": "Âàæé ¹ôÁð¢", + "title": "पशु खोजें ", "_title_comment": "पशु खोजें ", "unlock": false, "cIcon": "gameicons/spot_pressed.png", @@ -2227,7 +2227,7 @@ }, { "name": "Item", - "title": "ÌæÜæÕ ÖÚð¢", + "title": "तालाब भरें", "_title_comment": "तालाब भरें", "unlock": false, "cIcon": "gameicons/item_pressed.png", @@ -2273,7 +2273,7 @@ }, { "name": "ConnectTheDots", - "title": "çÕ¢Îé¥ô ·UUUUô ÁôÇô", + "title": "बिंदुओ को जोडो", "_title_comment": "बिंदुओ को जोडो", "unlock": false, "cIcon": "gameicons/coonectthedot_pressed.png", @@ -2314,7 +2314,7 @@ }, { "name": "chocolateFactory", - "title": "ÎêÏ ·UUUæ ·UUUæÚ¹æÙæ", + "title": "दूध का कारखाना", "_title_comment": "दूध का कारखाना", "unlock": false, "cIcon": "gameicons/chocolatefactory_pressed.png", @@ -2360,7 +2360,7 @@ }, { "name": "step", - "title": "¿Ú‡æô¢ ·UUUUô RUUUU×Õh ·UUUUÚð¢", + "title": "चरणों को क्रमबद्ध करें", "_title_comment": "चरणों को क्रमबद्ध करें", "unlock": false, "cIcon": "gameicons/step_pressed.png", @@ -2405,7 +2405,7 @@ }, { "name": "Line", - "title": "·ñ¢UUUÇè Üæ§Ù", + "title": "कैंडी लाइन", "_title_comment": "कैंडी लाइन", "unlock": false, "cIcon": "gameicons/line_pressed.png", @@ -2447,7 +2447,7 @@ }, { "name": "mathlearning", - "title": "ÁôǸ ƒæÅæß", + "title": "जोड़ घटाव", "_title_comment": "जोड़ घटाव", "unlock": false, "cIcon": "gameicons/mathlearning_pressed.png", @@ -2491,7 +2491,7 @@ }, { "name": "balloonMath", - "title": "ÕéÜÕéÜæ ÈUUUUôǸô", + "title": "बुलबुला फोड़ो", "_title_comment": "बुलबुला फोड़ो", "unlock": false, "cIcon": "gameicons/balloonpop_pressed.png", @@ -2533,7 +2533,7 @@ }, { "name": "shop", - "title": "ç·UUUUÚæÙð ·UUUè Îé·UUUæÙ", + "title": "किराने की दुकान", "_title_comment": "किराने की दुकान", "unlock": false, "cIcon": "gameicons/shopping_pressed.png", @@ -2575,7 +2575,7 @@ }, { "name": "Units", - "title": "°·UUUU ç”ææ ÕÙæ¥ô", + "title": "एक पिज्जा बनाओ", "_title_comment": "एक पिज्जा बनाओ", "unlock": false, "cIcon": "gameicons/pizza_pressed.png", @@ -2617,7 +2617,7 @@ }, { "name": "atm", - "title": "Âñâô¢ ·UUUè ×àæèÙ", + "title": "पैसों की मशीन", "_title_comment": "पैसों की मशीन", "unlock": false, "cIcon": "gameicons/ATM_pressed.png", @@ -2659,7 +2659,7 @@ }, { "name": "jumpingNumbers", - "title": "âÈUUUUÜÌæ ·UUUè âèɸçØæ¢", + "title": "सफलता की सीढ़ियां", "_title_comment": "सफलता की सीढ़ियां", "unlock": false, "cIcon": "gameicons/jumping numbers_pressed.png", @@ -2701,7 +2701,7 @@ }, { "name": "card", - "title": "·UUUæÇü ÁôǸð¢", + "title": "कार्ड जोड़ें", "_title_comment": "कार्ड जोड़ें", "unlock": false, "cIcon": "gameicons/card_pressed.png", @@ -2743,7 +2743,7 @@ }, { "name": "Bounce", - "title": "¥æ§âRUUUè× ·UUUUô ç»Úæ¥ô", + "title": "आइसक्रीम को गिराओ", "_title_comment": "आइसक्रीम को गिराओ", "unlock": false, "cIcon": "gameicons/icecream_pressed.png", @@ -2771,7 +2771,7 @@ }, { "name": "BasicMultiplication", - "title": "×êÜ »é‡æÙ", + "title": "मूल गुणन", "_title_comment": "मूल गुणन", "unlock": false, "cIcon": "gameicons/BasicMultiplication_pressed.png", @@ -2815,7 +2815,7 @@ }, { "name": "table", - "title": "»é‡ææ", + "title": "गुणा", "_title_comment": "गुणा", "unlock": false, "cIcon": "gameicons/table_pressed.png", @@ -2851,7 +2851,7 @@ }, { "name": "Kung Fu Alpha", - "title": "çÙàææÙ", + "title": "निशान", "_title_comment": "निशान", "unlock": true, "cIcon": "gameicons/Kung Fu Alpha_pressed.png", @@ -2962,7 +2962,7 @@ }, { "name": "cardraw", - "title": "ƒæÚ Áæ¥ô", + "title": "घर जाओ", "_title_comment": "घर जाओ", "unlock": false, "cIcon": "gameicons/cardraw_pressed.png", @@ -3144,7 +3144,7 @@ }, { "name": "TreasureHunt", - "title": "¹¸Á¸æÙð ·UUUè ¹ôÁ", + "title": "ख़ज़ाने की खोज", "_title_comment": "ख़ज़ाने की खोज", "unlock": false, "cIcon": "gameicons/TreasureHunt_pressed.png", @@ -3257,7 +3257,7 @@ }, { "name": "blastletter", - "title": "Õ× çÙçcRUUUUØ ·UUUUÚð¢", + "title": "बम निष्क्रिय करें", "_title_comment": "बम निष्क्रिय करें", "unlock": false, "cIcon": "gameicons/blastletter_pressed.png", @@ -3487,7 +3487,7 @@ }, { "name": "Door", - "title": "¹çÜãæÙ ÎÚßæÁæ", + "title": "खलिहान दरवाजा", "_title_comment": "खलिहान दरवाजा", "unlock": false, "cIcon": "gameicons/doors_pressed.png", diff --git a/goa/Resources/res/config/grammar_game_map.json b/goa/Resources/res/config/grammar_game_map.json index 08a31a9b95..b3e81aae86 100644 --- a/goa/Resources/res/config/grammar_game_map.json +++ b/goa/Resources/res/config/grammar_game_map.json @@ -1,7 +1,7 @@ [ { "name": "baja", - "title": "âñÚ$#$Baja", + "title": "सैर$#$Baja", "_title_comment":"सैर", "unlock": true, "cIcon": "gameicons/baja_pressed.png", @@ -48,7 +48,7 @@ }, { "name": "jasmine", - "title": "ÂõÏð ©»æ¥ô$#$Jasmine", + "title": "पौधे उगाओ$#$Jasmine", "_title_comment":"पौधे उगाओ", "unlock": true, "cIcon": "gameicons/jasmine_pressed.png", @@ -95,7 +95,7 @@ }, { "name": "chain", - "title": "Âàæé Ÿæ뢹Üæ$#$Chain", + "title": "पशु श्रृंखला$#$Chain", "_title_comment":"पशु श्रृंखला", "unlock": true, "cIcon": "gameicons/chain_pressed.png", @@ -142,7 +142,7 @@ }, { "name": "wembley", - "title": "߇æü×æÜæ ÈéUUUÅÕæòÜ$#$Wembley", + "title": "वर्णमाला फुटबॉल$#$Wembley", "_title_comment":"वर्णमाला फुटबॉल", "unlock": true, "cIcon": "gameicons/wembley_pressed.png", @@ -189,7 +189,7 @@ }, { "name": "jazz", - "title": "ÉôÜ$#$Jazz", + "title": "ढोल$#$Jazz", "_title_comment":"ढोल", "unlock": true, "cIcon": "gameicons/jazz_pressed.png", @@ -236,7 +236,7 @@ }, { "name": "shoot", - "title": "»ôÜè ×æÚ$#$Shoot", + "title": "गोली मार$#$Shoot", "_title_comment":"गोली मार", "unlock": true, "cIcon": "gameicons/shoot_pressed.png", @@ -279,7 +279,7 @@ }, { "name": "owl", - "title": "ßÌüÙè ©ËÜê$#$Owl", + "title": "वर्तनी उल्लू$#$Owl", "_title_comment":"वर्तनी उल्लू", "unlock": true, "cIcon": "gameicons/owl_pressed.png", @@ -326,7 +326,7 @@ }, { "name": "stack", - "title": "àæyÎô¢ ·UUUæ ÉðÚ$#$Stack", + "title": "शब्दों का ढेर$#$Stack", "_title_comment":"शब्दों का ढेर", "unlock": true, "cIcon": "gameicons/stack_pressed.png", @@ -372,7 +372,7 @@ }, { "name": "order", - "title": "¥æòÇüÚ ×ð¢ Ú¹ð¢$#$Order", + "title": "ऑर्डर में रखें$#$Order", "_title_comment":"ऑर्डर में रखें", "unlock": true, "cIcon": "gameicons/order_pressed.png", @@ -418,7 +418,7 @@ }, { "name": "dash", - "title": "ÂæÙè ·UUUæ Àè¢Åæ$#$Dash", + "title": "पानी का छींटा$#$Dash", "_title_comment":"पानी का छींटा", "unlock": true, "cIcon": "gameicons/dash_pressed.png", @@ -466,7 +466,7 @@ }, { "name": "bingo", - "title": "çÕ¢»ô$#$Bingo", + "title": "बिंगो$#$Bingo", "_title_comment":"बिंगो", "unlock": true, "cIcon": "gameicons/bingo_pressed.png", @@ -513,7 +513,7 @@ }, { "name": "drop", - "title": "ç»Úæ¥ô$#$Drop", + "title": "गिराओ$#$Drop", "_title_comment":"गिराओ", "unlock": true, "cIcon": "gameicons/drop_pressed.png", @@ -560,7 +560,7 @@ }, { "name": "train", - "title": "ÚðÜ »æÇè$#$Train", + "title": "रेल गाडी$#$Train", "_title_comment":"रेल गाडी", "unlock": true, "cIcon": "gameicons/train_pressed.png", @@ -608,7 +608,7 @@ }, { "name": "pop", - "title": "ÕæÎÜô¢ ·ðUUU ×æŠØ× âð ©Ç¸ô$#$Pop", + "title": "बादलों के माध्यम से उड़ो$#$Pop", "_title_comment":"बादलों के माध्यम से उड़ो", "unlock": true, "cIcon": "gameicons/pop_pressed.png", @@ -656,7 +656,7 @@ }, { "name": "talk", - "title": "àæyÎ ç¹Üæ¥ô$#$Talk", + "title": "शब्द खिलाओ$#$Talk", "_title_comment":"शब्द खिलाओ", "unlock": true, "cIcon": "gameicons/talk_pressed.png", @@ -703,7 +703,7 @@ }, { "name": "memory", - "title": "ØæÎ$#$Memory", + "title": "याद$#$Memory", "_title_comment": "याद", "unlock": true, "cIcon": "gameicons/memory_pressed.png", @@ -750,7 +750,7 @@ }, { "name": "circle", - "title": "·UUUUǸ$#$Circle", + "title": "पकड़$#$Circle", "_title_comment": "पकड़", "unlock": true, "cIcon": "gameicons/circle_pressed.png", @@ -797,7 +797,7 @@ }, { "name": "pillar", - "title": "·ðUUU·UUUU ÂÚÌ$#$Pillar", + "title": "केक परत$#$Pillar", "_title_comment": "केक परत", "unlock": true, "cIcon": "gameicons/pillar_pressed.png", @@ -844,7 +844,7 @@ }, { "name": "balloon", - "title": "©Ç¸Ùæ$#$Balloon", + "title": "उड़ना$#$Balloon", "_title_comment": "उड़ना", "unlock": true, "cIcon": "gameicons/balloon_pressed.png", diff --git a/goa/Resources/res/config/shapes_game_map.json b/goa/Resources/res/config/shapes_game_map.json index 8bc1a311d7..809a7d2024 100644 --- a/goa/Resources/res/config/shapes_game_map.json +++ b/goa/Resources/res/config/shapes_game_map.json @@ -1,7 +1,7 @@ [ { "name": "sortit", - "title": "RUUUU×Õh$#$Sort It", + "title": "क्रमबद्ध$#$Sort It", "_title_comment":"क्रमबद्ध", "unlock": true, "cIcon": "gameicons/sortit_pressed.png", @@ -41,7 +41,7 @@ }, { "name": "shape", - "title": "ÀðÎô¢ ·UUUUô ÖÚð¢$#$Shape", + "title": "छेदों को भरें$#$Shape", "_title_comment":"छेदों को भरें", "unlock": true, "cIcon": "gameicons/shape_pressed.png", @@ -83,7 +83,7 @@ }, { "name": "Dots", - "title": "Ù¢ÕÚ ÇæòÅ÷â$#$Dots", + "title": "नंबर डॉट्स$#$Dots", "_title_comment":"नंबर डॉट्स", "unlock": true, "cIcon": "gameicons/numberdot_pressed.png", @@ -124,7 +124,7 @@ }, { "name": "popcount", - "title": "×ÀÜè ·UUUUô ç»Ùð¢$#$Pop Count", + "title": "मछली को गिनें$#$Pop Count", "_title_comment":"मछली को गिनें", "unlock": true, "cIcon": "gameicons/popcount_pressed.png", @@ -168,7 +168,7 @@ }, { "name": "spot", - "title": "Âàæé Âã¿æÙð$#$Spot", + "title": "पशु पहचाने$#$Spot", "_title_comment":"पशु पहचाने", "unlock": true, "cIcon": "gameicons/spot_pressed.png", @@ -210,7 +210,7 @@ }, { "name": "Item", - "title": "ÌæÜæÕ ÖÚ Îô$#$Item", + "title": "तालाब भर दो$#$Item", "_title_comment":"तालाब भर दो", "unlock": true, "cIcon": "gameicons/item_pressed.png", @@ -256,7 +256,7 @@ }, { "name": "ConnectTheDots", - "title": "çÕ¢Îé¥ô ·UUUUô ÁôÇô$#$Connect The Dots", + "title": "बिंदुओ को जोडो$#$Connect The Dots", "_title_comment":"बिंदुओ को जोडो", "unlock": true, "cIcon": "gameicons/coonectthedot_pressed.png", @@ -297,7 +297,7 @@ }, { "name": "chocolateFactory", - "title": "ÎêÏ ·UUUæ ·UUUæÚ¹æÙæ$#$Chocolate Factory", + "title": "दूध का कारखाना$#$Chocolate Factory", "_title_comment":"दूध का कारखाना", "unlock": true, "cIcon": "gameicons/chocolatefactory_pressed.png", @@ -343,7 +343,7 @@ }, { "name": "step", - "title": "¿Ú‡æô¢ ·UUUUô ÃØçÃâÍÌ ·UUUUÚð¢$#$Step", + "title": "चरणों को व्यव्सिथत करें$#$Step", "_title_comment":"चरणों को व्यव्सिथत करें", "unlock": true, "cIcon": "gameicons/step_pressed.png", @@ -388,7 +388,7 @@ }, { "name": "Line", - "title": "·ñ¢UUUÇè Üæ§Ù$#$Line", + "title": "कैंडी लाइन$#$Line", "_title_comment":"कैंडी लाइन", "unlock": true, "cIcon": "gameicons/line_pressed.png", @@ -430,7 +430,7 @@ }, { "name": "mathlearning", - "title": "ÁôǸ ƒæÅæß$#$Math Learning", + "title": "जोड़ घटाव$#$Math Learning", "_title_comment":"जोड़ घटाव", "unlock": true, "cIcon": "gameicons/mathlearning_pressed.png", @@ -474,7 +474,7 @@ }, { "name": "balloonMath", - "title":"»éyÕæÚæ ÈUUUUôǸð¢$#$Balloon Math", + "title":"गुब्बारा फोड़ें$#$Balloon Math", "_title_comment": "गुब्बारा फोड़ें", "unlock": true, "cIcon": "gameicons/balloonpop_pressed.png", @@ -516,7 +516,7 @@ }, { "name": "shop", - "title": "ç·UUUUÚæÙð ·UUUè Îé·UUUæÙ$#$Shop", + "title": "किराने की दुकान$#$Shop", "_title_comment":"किराने की दुकान", "unlock": true, "cIcon": "gameicons/shopping_pressed.png", @@ -558,8 +558,8 @@ }, { "name": "Units", - "title": "°·UUUU ç”ææ ÕÙæ¥ô$#$Units", - "_title_comment":"एक पिज्जा बनाओ", + "title": "एक पिज्जा बनाओ$#$Units", + "_title_comment":"एक पिज्जा बनाओ", "unlock": true, "cIcon": "gameicons/pizza_pressed.png", "icon": "gameicons/pizza.png", @@ -600,7 +600,7 @@ }, { "name": "atm", - "title": "Âñâô¢ ·UUUè ×àæèÙ$#$Atm", + "title": "पैसों की मशीन$#$Atm", "_title_comment":"पैसों की मशीन", "unlock": true, "cIcon": "gameicons/ATM_pressed.png", @@ -642,7 +642,7 @@ }, { "name": "jumpingNumbers", - "title": "·¤êÎð$#$Jump", + "title": "कूदे $#$Jump", "_title_comment":"कूदे ", "unlock": true, "cIcon": "gameicons/jumping numbers_pressed.png", @@ -684,7 +684,7 @@ }, { "name": "card", - "title":"·UUUæÇü ÁôǸð¢$#$Card", + "title":"कार्ड जोड़ें$#$Card", "_title_comment": "कार्ड जोड़ें", "unlock": true, "cIcon": "gameicons/card_pressed.png", @@ -726,7 +726,7 @@ }, { "name": "Bounce", - "title": "¥æ§âRUUUè×$#$Ice-Cream", + "title": "आइसक्रीम$#$Ice-Cream", "_title_comment":"आइसक्रीम", "unlock": true, "cIcon": "gameicons/icecream_pressed.png", @@ -754,7 +754,7 @@ }, { "name": "BasicMultiplication", - "title": "×êÜ »é‡æÙ$#$Multiplication", + "title": "मूल गुणन$#$Multiplication", "_title_comment":"मूल गुणन", "unlock": true, "cIcon": "gameicons/BasicMultiplication_pressed.png", @@ -798,7 +798,7 @@ }, { "name": "table", - "title": "»é‡ææ$#$Table", + "title": "गुणा$#$Table", "_title_comment":"गुणा", "unlock": true, "cIcon": "gameicons/table_pressed.png", diff --git a/goa/Resources/res/config/words_game_map.json b/goa/Resources/res/config/words_game_map.json index e9773addcc..792eb58057 100644 --- a/goa/Resources/res/config/words_game_map.json +++ b/goa/Resources/res/config/words_game_map.json @@ -1,7 +1,7 @@ [ { "name": "cat", - "title": "ÀÌ ÂÚ çÕËÜè$#$Cat", + "title": "छत पर बिल्ली$#$Cat", "_title_comment":"छत पर बिल्ली", "unlock": true, "cIcon": "gameicons/cat_pressed.png", @@ -45,7 +45,7 @@ }, { "name": "phonicsfree", - "title": "àæyÎô¢ ·UUUæ ÉðÚ$#$Phonics Free", + "title": "शब्दों का ढेर$#$Phonics Free", "_title_comment":"शब्दों का ढेर", "unlock": true, "cIcon": "gameicons/Phonicsfree_pressed.png", @@ -72,7 +72,7 @@ }, { "name": "alphaphonics", - "title": "¥ËÈUUUæ SßÚ ŠßÙè$#$Alpha Phonics", + "title": "अल्फा स्वर ध्वनी$#$Alpha Phonics", "_title_comment":"अल्फा स्वर ध्वनी", "unlock": true, "cIcon": "gameicons/AlphaPhonics_pressed.png", @@ -161,7 +161,7 @@ }, { "name": "find", - "title": "¹ôÁ$#$Find", + "title": "खोज$#$Find", "_title_comment":"खोज", "unlock": true, "cIcon": "gameicons/find_pressed.png", diff --git a/goa/Resources/res/config/writing_game_map.json b/goa/Resources/res/config/writing_game_map.json index 32852d12c1..7ad85abb68 100644 --- a/goa/Resources/res/config/writing_game_map.json +++ b/goa/Resources/res/config/writing_game_map.json @@ -1,7 +1,7 @@ [ { "name": "Kung Fu Alpha", - "title": "ÂÌæ Ü»æÙæ$#$Kung Fu Alpha", + "title": "पता लगाना$#$Kung Fu Alpha", "_title_comment": "पता लगाना", "unlock": true, "cIcon": "gameicons/Kung Fu Alpha_pressed.png", @@ -112,7 +112,7 @@ }, { "name": "cardraw", - "title": "ƒæÚ Áæ¥ô$#$Car Draw", + "title": "घर जाओ$#$Car Draw", "_title_comment":"घर जाओ", "unlock": true, "cIcon": "gameicons/cardraw_pressed.png", @@ -294,7 +294,7 @@ }, { "name": "TreasureHunt", - "title": "¹¸Á¸æÙð ·UUUè ¹ôÁ$#$Treasure Hunt", + "title": "ख़ज़ाने की खोज$#$Treasure Hunt", "_title_comment":"ख़ज़ाने की खोज", "unlock": true, "cIcon": "gameicons/TreasureHunt_pressed.png", @@ -407,7 +407,7 @@ }, { "name": "blastletter", - "title": "Õ× çÙçcRUUUUØ ·UUUUÚð¢$#$Blast Letter", + "title": "बम निष्क्रिय करें$#$Blast Letter", "_title_comment":"बम निष्क्रिय करें", "unlock": true, "cIcon": "gameicons/blastletter_pressed.png", @@ -637,8 +637,8 @@ }, { "name": "Door", - "title": "¹çÜãæÙ ÎÚßæÁæ$#$Door", - "_title_comment":"खलिहान दरवाजा", + "title": "खलिहान दरवाज़ा$#$Door", + "_title_comment":"खलिहान दरवाज़ा", "unlock": true, "cIcon": "gameicons/doors_pressed.png", "icon": "gameicons/doors.png",