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 "Это упражнение очень напоминает предыдущее. Теперь у нас есть три <a object|titan>титановых слитка</a> которые вы должны доставить на 3 финишные площадки. Вот координаты финишной площадки:"
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 "Если вы ищите ближайший титановый слиток, радар укажет вам на тот, который вы уже нашли и принесли на площадку. Поэтому вы должны искать титановый слиток, находящийся от вас как можно дальше."
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 "Используйте цикл <code><a cbot|for>for</a></code>, чтобы повторить все необходимые для поиска титанового слитка инструкции 3 раза. Внутри цикла, чтобы найти самый отдаленный титановый слиток, используйте инструкцию <c/><a cbot|radar>radar</a>(Titanium, 0, 360, 0, 1000, -1);<n/>. Последнее значение <code>-1</code> означает то, что вместо поиска ближайшего предмета, радар будет выдавать предмет, находящийся на самом большом расстоянии от бота."
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 "Переменная <code>metal</code> относится к типу <code><a cbot|object>object</a></code>. Чтобы узнать позицию объекта, описанного переменной, вы должны написать <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 "Координата <code>x</code> 3-х площадок равна 10. Координата <code>y</code> соответственно -60, -65 и -70. Самый простой способ получить координаты позиции заключается в использовании значения <code>i</code> цикла <code>for</code> , которая последовательно будет принимать значения 0, 1 и 2:"