# SOME DESCRIPTIVE TITLE # Copyright (C) YEAR Free Software Foundation, Inc. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-07-02 12:51+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.11.0\n" #. type: One-char language identifier #: train105.languagecode:1 #, no-wrap msgid "E" msgstr "F" # #. type: Title-text #: train105/scene.txt:1 #, no-wrap msgid "train105:Power Cell 2" msgstr "train105:Pile 2" # #. type: Resume-text #: train105/scene.txt:2 #, no-wrap msgid "train105:Power all the winged shooters." msgstr "train105:Equiper les robots shooters de piles" # #. type: ScriptName-text #: train105/scene.txt:3 #, no-wrap msgid "train105:Spider2" msgstr "train105:Pile2" #. type: \b; header #: train105-help/tcell2.txt:1 #, no-wrap #, fuzzy, no-wrap msgid "Objective" msgstr "Objectif" #. type: Plain text #: train105-help/tcell2.txt:3 #, no-wrap #, fuzzy, no-wrap msgid "" "Power the winged shooters with power " "cells, so that they can kill the ants in the ant nest located in a hole " "north of your position." msgstr "" "Equipez les robots shooter de piles, " "pour que ceux-ci puissent assainir le nid de fourmis qui " "se trouve dans un cratère au nord de votre position." #. type: \t; header #: train105-help/tcell2.txt:4 #, no-wrap #, fuzzy, no-wrap msgid "Program" msgstr "Programme" #. type: Plain text #: train105-help/tcell2.txt:6 #, no-wrap #, fuzzy, no-wrap msgid "" "The wheeled grabber must go to a power " "cell, grab it, go to a winged shooter, and drop the " "cell. This task is very similar to the task performed in the previous " "exercise. Here is this program again:" msgstr "" "Le robot déménageur doit aller vers une pile, prendre celle-ci, aller vers " "un robot, et poser la pile. Voici un programme d'un exercice précédent qui " "accomplit une tâche semblable:" #. type: \s; block (usually verbatim code) #: train105-help/tcell2.txt:19 #, no-wrap #, fuzzy, no-wrap msgid "" "extern void object::Titanium2()\n" "{\n" "\tobject item;\n" "\t\n" "\titem = radar(TitaniumOre);\n" "\tgoto(item.position);\n" "\tgrab();\n" "\t\n" "\titem = radar(Converter);\n" "\tgoto(item.position);\n" "\tdrop();\n" "}" msgstr "" "extern void object::Titanium2()\n" "{\n" "\tobject chose;\n" "\t\n" "\tchose = radar(TitaniumOre);\n" "\tgoto(chose.position);\n" "\tgrab();\n" "\t\n" "\tchose = radar(Converter);\n" "\tgoto(chose.position);\n" "\tdrop();\n" "}" #. type: Plain text #: train105-help/tcell2.txt:21 #, no-wrap msgid "" "The best way to solve the present exercise is to copy