//---------------------------------------------------------------------------
// Time Limited Text Checker Exercise
// Created by Advanced VideoEngineers. Merry Wizard Publishing. Vilnius, Lithuania.
//---------------------------------------------------------------------------
// initializing
// format: original, expected, check length (0 - all letters), time (seconds)
var WordValues = new Array(
new Data("butterfly", "бабочка", 6, 0),
new Data("eternity", "вечность", 0, 0),
new Data("come out", "выйти", 0, 0),
new Data("gnome", "гном", 0, 0),
new Data("snake", "змея", 3, 8),
new Data("hanger", "вешалка", 0, 12),
new Data("slip", "скользить", 6, 8),
new Data("right", "право", 4, 8),
new Data("stop", "остановиться", 10, 12),
new Data("wife", "жена", 0, 8),
new Data("again", "снова", 0, 8),
new Data("hotly", "жарко", 4, 8),
new Data("cold", "холодный", 5, 8),
new Data("pour out", "вылить", 3, 8),
new Data("grip-sack", "саквояж", 0, 8),
new Data("corner", "угол", 0, 8),
new Data("ceramics", "керамика", 0, 8),
new Data("handle", "ручка", 0, 8),
new Data("shampoo", "шампунь", 0, 8),
new Data("reflection", "отражение", 7, 10)
);
var SectionCount = 5; // questions in section
var ExelentValue = 5; // max score
var LeftText = ""; // "Осталось "
var SecondsText = " seconds left."; // " секунд."
var TakenText = "You have ";
var BallsText = " balls.";
var CorrectText = "You have given ";
var UnitsText = " correct answers to ";
var CountText = " questions.";
var BallsSummaryText = "Your ball is ";
var RightText = "Tesingas.";
var WrongText = "Netesingas. Correct translation is ";
var RightInterval = 1;
var WrongInterval = 6;