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 "Die vielen Fehlschläge kommen dadurch zustande, dass die Wespen schon ein Stück weiter geflogen sind, wenn die Geschosse sie erreichen würden. Der einzige Weg, dieses Programm zu verbessern, ist es, die Geschwindigkeiten der Motoren und des Jets so einzustellen, dass die Kanone der Bewegung des Ziels folgt, während sie schießt. "
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 "Kurz vor dem Schuss passt das Programm ein letztes Mal die Richtung des Roboters mittels <c/><a cbot|turn>turn</a>(<a cbot|direct>direction</a>(item.position));<n/> an. Um dem Ziel während der Salve zu folgen, müssen Sie sich den Winkel dieser letzten Drehung \"merken\": wenn der Winkel positiv war (Drehung nach links), muss sich der Roboter während der Salve weiter nach links drehen; wenn der Winkel negativ war, muss sich der Roboter weiter nach rechts drehen."
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 "Um sich den Winkel zu \"merken\", braucht das Programm eine Variable, die gerade eine Zahl enthalten kann. Wenn wir sie <code>winkel</code> nennen, müssen wir die Variable mit folgender Zeile am Anfang des Programms deklarieren:"
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 "Der Variablentyp <a cbot|float>float</a> ist der Typ, der jede beliebige Zahl enthalten kann, also ganze Zahlen oder Kommazahlen. Lesen Sie die <a cbot|type>Beschreibung der Variablentypen</a>, wenn Sie mehr darüber erfahren wollen, was die verschiedenen Variablentypen enthalten können."
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 "Vor der Anweisung <c/><a cbot|fire>fire</a>(1);<n/> schreiben wir anstatt <c/><a cbot|turn>turn</a>(<a cbot|direct>direction</a>(item.position));<n/> eine Anweisung, die den Rotationswinkel in der Variablen <code>winkel</code> ablegt:"
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 "Das <code><a cbot|if>else</a></code> bestimmt, welche Anweisungen das Programm ausführen soll, wenn die Bedingung in der <code><a cbot|if>if</a></code>-Anweisung nicht wahr ist."