msgid "In this exercise, the <a object|exchange>information exchange posts</a> along the way contain the direction of the next post and the distance. And you do not know how many exchange posts you must get in touch with before arriving at your goal."
msgstr "Plusieurs <a object|exchange>stations relais</a> sont placées le long d'un chemin. Lorsque le <a object|bottr>robot</a> est proche d'une station, il peut lire les informations qu'elle contient et qui donnent la direction et la distance jusqu'à la station relais suivante."
msgid "In order to repeat always, use a <code><a cbot|while>while</a> (true)</code> loop. The instructions between the braces <code>{ }</code> will be repeated over and over, or until a <code><a cbot|break>break</a></code> instruction is executed."
msgstr "Pour répéter toujours, utilisez une boucle <code><a cbot|while>while</a> (true)</code>. Les instructions entre les accolades <code>{ }</code> seront répétées encore et encore, ou jusqu'à ce qu'une instruction <code><a cbot|break>break</a></code> soit exécutée."
msgid "This time you need 2 <a cbot|var>variables</a>, one for the rotation angle, one for the distance, for example <code>dir</code> and <code>len</code> :"
msgstr "Il faut définir deux <a cbot|var>variables</a> <code>dir</code> et <code>len</code>:"
"A variable of the <a cbot|type>type</a> <code><a cbot|float>float</a></code> can take a special value called <code><a cbot|nan>nan</a></code>. This value means that the variable contains no number (Not A Number).\n"
"When there is no <a object|exchange>exchange post</a> nearby, either because the bot has reached the goal, or because it took the wrong way, the two variables <code>dir</code> and <code>len</code> contain this value. You can test this with the instruction <code><a cbot|if>if</a></code>, and stop the program if necessary with the instruction <code><a cbot|break>break</a></code>:"
"Une variable de <a cbot|type>type</a> <code><a cbot|float>float</a></code> peut prendre une valeur spéciale appelée <code><a cbot|nan>nan</a></code>. Cette valeur signifie que la variable ne contient aucun nombre (Not A Number). \n"
"Quand il n'y a pas de<a object|exchange>station relais</a> à proximité, soit parce que le robot a atteint son but, soit parce qu'il a pris le mauvais chemin, les deux variables <code>dir</code> et <code>len</code> contiennent cette valeur. Vous pouvez tester ceci avec l'instruction <code><a cbot|if>if</a></code>, et arrêter le programme si nécessaire avec l'instruction <code><a cbot|break>break</a></code> :"
msgstr "If les informations récupérées depuis une <a object|exchange>station relais</a> a été correctement récupérée, commencez par exécuter la rotation :"
msgid "You can click on an <a object|exchange>information exchange post</a> in order to read what information it contains. In this exercise, every exchange post contains two values called <code>\"Direction\"</code> and <code>\"Length\"</code>."
msgstr "En cliquant sur une <a object|exchange>station relais</a> pour la sélectionner, vous pouvez voir les paramètres qu'elle contient. Dans cet exercice, chaque station relais contient deux informations appelées <code>\"Direction\"</code> et <code>\"Length\"</code>."