msgid "You must follow the <a object|bottr>target bot</a> with the explosive device, but without touching it, otherwise it will blow up. Every time the target bot stops, you must be close to it (less than 10m). After you managed to stay close to the target bot at 10 successive stops, it will lead you to the finishing pad, and the exercise is over. At every stop, the target bot checks that you are there. If you are not there, you must start over again."
msgstr "Podążaj za <a object|bottr>robotem celem</a> niosącym ładunek wybuchowy. Bądź ostrożny, gdyż zderzenie z nim grozi wybuchem. Podczas każdego zatrzymania robota celu należy być odpowiednio blisko niego (mniej niż 10 metrów). Gdy uda się być w pobliżu robota 10 razy z rzędu, ćwiczenie zakończy się wraz z jego dotarciem na platformę końcową. Przy każdym zatrzymaniu robot cel sprawdza, czy śledzący go robot jest odpowiednio blisko. Jeśli nie, liczenie zaczyna się od początku."
msgid "Use the instruction <code><a cbot|dist>distance</a>( , )</code> to calculate the distance between two points. The first point will be the position of your own bot, given by <code>position</code>. The second point is the position of the target bot, given by <code>target.position</code>."
msgstr "Użyj instrukcji <code><a cbot|dist>distance</a>( , )</code> do obliczenie odległości między dwoma punktami. Pierwszym jest pozycja Twojego robota, podana przez <code>position</code>. Drugim jest pozycja robota celu, podana przez <code>target.position</code>."
"If the distance to the target bot is smaller than 5m, move backward with a speed inversely proportional to the distance: the closer you are to the bot, the faster you must move backward.\n"
"You can use the <a cbot|expr>expression</a> <code>distance/5-1</code> in order to achieve this, together with the <code><a cbot|if>if</a></code> to test if the target is closer than 5m:"
"Jeśli odległość od robota celu jest mniejsza niż 5 metrów, oddal się od niego z prędkością odwrotnie proporcjonalną do odległości: im bliżej jest robot, tym szybciej należy się cofać.\n"
"\tOdległość = 5.0 metrów -> prędkość = 0.0\n"
"\tOdległość = 2.5 metra -> prędkość = -0.5\n"
"\tOdległość = 0.0 metrów -> prędkość = -1.0\n"
"Aby to uzyskać, możesz użyć <a cbot|expr>wyrażenia</a> <code>distance/5-1</code>, wspólnie z instrukcją <code><a cbot|if>if</a></code> sprawdzającą, czy cel jest bliżej niż 5 m:"
msgid "If the distance to the target is greater than 5m, move towards the target. First calculate the angle necessary to face the target with the instruction <code><a cbot|direct>direction</a></code>. You can then adjust the speed of the right-hand and left-hand motor in order to follow the target:"
msgstr "Jeśli odległość do celu jest większa niż 5m, poruszaj się w jego kierunku. Najpierw oblicz kąt niezbędny do obrócenia się w jego kierunku używając instrukcji <code><a cbot|direct>direction</a></code>. Następnie dostosuj prędkości prawego i lewego silnika, aby Twój robot podążał za celem:"
"When the target is on your left, <code>dir</code> takes a positive value, ranging between 0 and 180. The <a cbot|expr>expression</a> <code>1-dir/90</code> returns a speed ranging between 1 and -1, according to the direction:\n"
"Gdy cel jest po lewej stronie, zmienna <code>dir</code> ma wartość dodatnią, pomiędzy 0 i 180. <a cbot|expr>Wyrażenie</a> <code>1-dir/90</code> zwraca prędkość w zakresie pomiędzy 1 i -1 w zależności od kierunku:\n"
msgid "The only task left for you now is to declare the <a cbot|var>variables</a> that you use in the program. <code>target</code> is of type <code>object</code>, whereas <code>dir</code> and <code>len</code> are of type <code>float</code>."
msgstr "Jedynym zadaniem jakie jeszcze Ci zostało jest zadeklarowanie <a cbot|var>zmiennych</a> używanych w programie. <code>target</code> jest typu <code>object</code>, podczas gdy <code>dir</code> i <code>len</code> są typu <code>float</code>."