msgid "The many failures are due to the fact that the wasp is already gone before the bullets can reach it. The only way to improve the program consists in setting the power of the two motors and of the jet in such a way that the bot follows the movement of the target during the burst."
msgstr "Многие ошибки возникали из-за того, что оса уже улетела до того, как пуля могла в нее попасть. Единственный способ улучшить программу- это установить мощность двух моторов и реактивного двигателя таким способом, чтобы во время выстрела бот летел по тому же курсу, что и цель."
msgid "Just before the shot, the program adjusts a last time the direction with <c/>turn(direction(item.position));<n/>. In order to follow the wasp during the burst, you have to \"remember\" the angle of this last rotation: if the angle was positive (rotation to the left), the bot must continue to turn left during the burst; if the angle was negative, the bot must continue to turn right."
msgstr "Сразу перед выстрелом программа настраивает последнее направление с помощью <c/>turn(direction(item.position));<n/>. Чтобы лететь за осой во время выстрела, вы должны \"запомнить\" угол этого последнего поворота: если угол был положительный (поворот влево), бот должен продолжать разворачиваться влево во время выстрела; если же угол был отрицательным, бот должен продолжать поворачиваться вправо."
msgid "In order to \"remember\" the angle of the last rotation, we need a variable that can contain just one number. If we choose to call it <code>angle</code>, we must define the variable with the following line at the beginning of the program:"
msgstr "Чтобы \"запомнить\" угол последнего поворота, нам нужна переменная, которая может содержать только одно число. Если мы назовем ее <code>angle</code>, мы должны задать переменную со следующей строки в самом начале программы:"
msgid "The variable type <a cbot|type>float</a> is the variable type that can contain any number, i.e. whole numbers or real numbers. Please refer to the <a cbot|type>text about variable types</a> if you want to know more about the different types of variables and what they can contain."
msgstr "Тип переменной <a cbot|type>float</a> это изменчивый тип, который может содержать любое число, то есть целые числа или вещественные числа. Обратитесь пожалуйста к <a cbot|type>тексту о типах переменных</a> , если вы захотите узнать больше о различных типах переменных и о том, что они могут содержать."
msgid "Just before the instruction <c/>fire(1);<n/>, instead of writing <c/><a cbot|turn>turn</a>(<a cbot|direct>direction</a>(item.position));<n/>, we will put the rotation angle into the variable <code>angle</code>:"
msgstr "Сразу перед инструкцией <c/>fire(1);<n/>, вместо того, чтобы писать <c/><a cbot|turn>turn</a>(<a cbot|direct>direction</a>(item.position));<n/>, мы установим угол поворота в переменную <code>angle</code>:"
msgid "The instruction <code>else</code> determines what instructions the program should execute if the condition stated in the <code>if</code> instruction is false."
msgstr "Инструкция <code>else</code> определяет то, какую инструкцию должна выполнить программа, если условие, указанное инструкцией <code>if</code>, ложное."