msgid "This exercise is very similar to the previous one. There are now three <a object|titan>titanium cubes</a> that you must move to 3 finishing pads. Here are the coordinates of the finishing pads:"
msgstr "To ćwiczenie jest bardzo podobne do poprzedniego. Tym razem mamy trzy <a object|titan>kostki tytanu</a>, które należy przenieść na 3 platformy końcowe. Oto współrzędne platform końcowych:"
msgid "If you look for the nearest titanium cube, the radar would find one that you already retrieved and dropped on a pad. Therefore you must look for the most distant titanium cube."
msgstr "W przypadku szukania najbliższej kostki tytanu, radar znajdzie tytan dopiero co zaniesiony na platformę. Należy więc szukać najdalszej kostki tytanu."
msgid "Use a <code><a cbot|for>for</a></code> loop in order to repeat 3 times all the instructions necessary to retrieve the titanium cube. Inside the loop, in order to find the most distant titanium cube, use the instruction <c/><a cbot|radar>radar</a>(Titanium, 0, 360, 0, 1000, -1);<n/>. The last value <code>-1</code> means that instead of looking for the closest item, the radar will return the most distant that it can find."
msgstr "Użyj pętli <code><a cbot|for>for</a></code> do trzykrotnego powtórzenia wszystkich instrukcji niezbędnych do przeniesienia kostki tytanu. Wewnątrz pętli, aby znaleźć najdalszą kostkę tytanu, użyj instrukcji <c/><a cbot|radar>radar</a>(Titanium, 0, 360, 0, 1000, -1);<n/>. Ostatnia wartość <code>-1</code> oznacza, że zamiast szukać najbliższego przedmiotu, radar podaje w wyniku najdalszy przedmiot, który może znaleźć."
msgid "The variable <code>metal</code> if of type <code><a cbot|object>object</a></code>. In order to know the position of the object described by the variable, you must write <code>metal.position</code>."
msgstr "Zmienna <code>metal</code> jest typu <code><a cbot|object>object</a></code>. Aby poznać pozycję obiektu opisanego przez zmienną, musisz napisać <code>metal.position</code>."
msgid "The <code>x</code> coordinates of the 3 pads are all equal to 10. The <code>y</code> coordinates are respectively -60, -65 and -70. 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, 1 and 2:"
msgstr "Współrzędna <code>x</code> wszystkich trzech platform jest taka sama i równa 10. Współrzędne <code>y</code> odpowiednio wynoszą -60, -65 i -70. Najefektywniejszym sposobem otrzymania współrzędnych platform jest użycie wartości <code>i</code> z pętli <code>for</code>, która przyjmuje kolejno wartości 0, 1 i 2:"