msgid "Convert some <a object|titanore>titanium ore</a> to <a object|titan>titanium cubes</a>, then drop 2 titanium cubes on the pads whose coordinates are:"
msgstr "Wandeln Sie <a object|titanore>Titanerz</a> in <a object|titan>Titanwürfel</a> um und legen Sie 2 Würfel auf die Zielflächen, die sich bei folgenden Koordinaten befinden:"
msgid "The <a object|convert>converter</a> converts titanium ore to titanium cubes. Just drop the titanium ore on the platform, move backward, and wait until it has been converted."
msgstr "Der <a object|convert>Konverter</a> wandelt Titanerz in Titanwürfel um. Legen Sie einfach das Titanerz auf die Plattform, gehen Sie ein Stück zurück und warten Sie auf das Ende des Umwandlungsvorgangs."
"A <code><a cbot|for>for</a></code> loop allows you to repeat 2 times all the instructions.\n"
"The titanium ore is not available immediately. You will have to wait until the derrick extracts it. Use a <code><a cbot|do>do</a></code> loop, as follows:"
"Eine <code><a cbot|for>for</a></code>-Schleife ermöglicht Ihnen, alle Anweisungen zweimal auszuführen.\n"
"Das Titanerz ist nicht sofort verfügbar. Sie werden warten müssen, bis der Bohrturm einen Klumpen davon extrahiert hat. Benutzen Sie eine <code><a cbot|do>do</a></code>-Schleife wie folgt:"
"After the loop (when the radar has found one titanium ore), you can go to its location <code>obj.position</code> with the instruction <code><a cbot|goto>goto</a></code>. Use the instruction <code><a cbot|grab>grab</a></code> to grab the titanium ore.\n"
"Nach der Schleife (wenn das Radar Titanerz gefunden hat) können Sie mit der Anweisung <code><a cbot|goto>goto</a></code> zu seiner Position <code>obj.<a cbot|object>position</a></code> fahren. Benutzen Sie <code><a cbot|grab>grab</a></code>, um das Titanerz aufzunehmen.\n"
"Benutzen Sie folgende Anweisung, um den Konverter zu finden:"
"After you dropped the ore on the converter, move back 2.5 meters with <code><a cbot|move>move</a>(-2.5)</code>.\n"
"A second <code>do</code> loop allows you to wait until the titanium cube is available. You must limit the range of the radar to 5m, otherwise you would immediately find the titanium cube that you already dropped on a pad:"
"Nachdem Sie das Erz auf dem Konverter abgelegt haben, bewegen Sie sich mittels <code><a cbot|move>move</a>(-2.5)</code> um 2,5 Meter zurück.\n"
"Eine weitere <code><a cbot|do>do</a></code>-Schleife ermöglicht es, solange zu warten, bis der Titanwürfel erzeugt wurde. Sie müssen die Reichweite des Radars auf 5m begrenzen, denn andernfalls finden Sie den Würfel, den Sie schon auf eine Zielfläche gestellt haben:"
msgid "The <code>x</code> coordinates of the 2 pads are all equal to 10. The <code>y</code> coordinates are respectively -60 and -65. The most efficient way to get the coordinates of the pads is to use the value of <code>i</code> of the <code>for</code> loop that will take successively the values 0 and 1:"
msgstr "Die <code>x</code>-Koordinaten der beiden Zielflächen sind gleich 10. Die <code>y</code>-Kordinaten sind -60 und -65. Die effektivste Methode, die Koordinaten zu bestimmen, ist die Einbeziehung des Wertes der Laufvariablen <code>i</code> in eine Berechnung. <code>i</code> nimmt nacheinander die Werte 0 und 1 an."