msgid "Reach the finishing pad (25m in front of you) as fast as possible, using the instruction <code>motor( , )</code>. You will have to slow down progressively at the end of the move, otherwise the bot will get blown up on the <a object|mine>mines</a>."
msgstr "Erreichen Sie die Zielfläche (25m vor Ihnen) so schnell Sie können, indem Sie die Anweisung <code><a cbot|motor>motor</a>( , )</code> benutzen. Sie werden die Geschwindigkeit langsam reduzieren müssen, bevor Sie das Ziel erreichen, denn sonst werden Sie durch die <a object|mine>Minen</a> in die Luft gejagt."
msgid "You could very well write no more than <c/><a cbot|move>move</a>(25);<n/>, this would work perfectly well. However, the aim of this exercise is to learn how to use the instruction <code><a cbot|motor>motor</a></code>."
msgstr "Sie können die Übung bestehen indem Sie einfach nur <c/><a cbot|move>move</a>(25);<n/> benutzen, was perfekt funktionieren würde. Das Ziel dieser Übung besteht aber darin, den Gebrauch der Anweisung <code><a cbot|motor>motor</a></code> kennen zu lernen."
msgstr "Zum Beispiel bewegt <c/><a cbot|motor>motor</a>(0.5, 0.5);<n/> den Roboter mit halber Geschwindigkeit vorwärts bis den Motoren andere Befehle erteilt werden."
msgid "With the instruction <c/>motor(0.5, 0.6);<n/>, the bot will move forward with half-speed, turning at the same time slightly to the left: the right-hand motor moves a little faster (<code>0.6</code>) than the left-hand motor (<code>0.5</code>)."
msgstr "Die Anweisung <c/><a cbot|motor>motor</a>(0.5, 0.6);<n/> lässt den Roboter mit halber Geschwindigkeit vorwärts fahren, wobei er eine leichte Linkskurve nimmt: der rechte Motor dreht sich ein wenig schneller (<code>0.6</code>) als der linke Motor (<code>0.5</code>)."
"In order to move forward for exactly 25 meters and not more, you must move full speed during the first 23 meters, then reduce the speed of the motors progressively during the last two meters.\n"
"The <a cbot|var>variable</a> <a cbot|object>position</a> gives you at any moment the current position of the bot, and the instruction <c/><a cbot|dist>distance</a>( , );<n/> returns the distance between two points. The best way to know where you are consists in saving the current position before the start into a <a cbot|var>variable</a>, for example a variable called <code>start</code>. Then you can calculate the distance between the starting position and your current position with <code>distance(position, start)</code>."
"Um genau 25 Meter vorwärts zu fahren, fahren Sie die ersten 23 Meter mit Höchstgeschwindigkeit und reduzieren Sie die Geschwindigkeit auf den letzten 2 Metern kontinuierlich auf 0.\n"
"Die <a cbot|var>Variable</a> <a cbot|object>position</a> gibt Ihnen jederzeit die aktuelle Position des Roboters an und die Anweisung <c/><a cbot|dist>distance</a>( , );<n/> gibt den Abstand zwischen zwei Punkten zurück. Die beste Möglichkeit, in Erfahrung zu bringen, wo Sie sind, besteht darin, bevor Sie losfahren die momentane Position in einer <a cbot|var>Variable</a> zu speichern, zum Beispiel in einer Variable namens <code>start</code>. Sie können dann den Abstand zwischen dieser Startposition und Ihrer aktuellen Position mit <code>distance(position, start)</code> berechnen."
msgid "As long as the distance between the start and the current position is smaller than 23m, the instruction in braces after the <code><a cbot|if>if</a></code> instruction will not be executed, so the motors keep their maximum speed as they were told by the <c/><a cbot|motor>motor</a>(1,1);<n/> instruction."
msgstr "Solange der Abstand zwischen der Start- und der aktuellen Position kleiner als 23m ist, werden die Anweisungen in den geschweiften Klammern nach der <code><a cbot|if>if</a></code>-Anweisung nicht ausgeführt, sodass die Motoren ihre Maximalgeschwindigkeit beibehalten, was ihnen durch die <c/><a cbot|motor>motor</a>(1,1);<n/>-Anweisung befohlen wurde."
msgid "You can use the following <a cbot|expr>expression</a> <code>(25-len)/2</code> in order to calculate the value for the speed instruction that must be given to the motors."
msgstr "Sie können folgenden <a cbot|expr>Ausdruck</a> verwenden: <code>(25-length)/2</code>, um den Wert für die Geschwindigkeit zu berechnen, den Sie den Motoren zuweisen müssen."