# SOME DESCRIPTIVE TITLE # Copyright (C) YEAR Free Software Foundation, Inc. # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\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 <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. type: One-char language identifier #: scene601.languagecode:1 #, no-wrap msgid "E" msgstr "D" #. type: Title-text #: scene601/scene.txt:1 #, no-wrap msgid "scene601:Transport" msgstr "" #. type: Resume-text #: scene601/scene.txt:2 #, no-wrap msgid "scene601:Develop your nuclear technology in order to increase your operating range." msgstr "" #. type: \b; header #: scene601-help/mhvolca1.txt:1 #, no-wrap msgid "From Mission Control" msgstr "" #. type: Plain text #: scene601-help/mhvolca1.txt:3 #, no-wrap msgid "You need to retrieve an <a object|tnt>explosive device</a> that has been spotted in a deep valley next to a lake of boiling lava." msgstr "" #. type: Plain text #: scene601-help/mhvolca1.txt:5 #, no-wrap msgid "Because of the high temperatures, reactors no longer function, i.e. flying is impossible. It is a long way there and you should equip your bots with <a object|atomic>nuclear power cells</a>. Nuclear power cells are manufactured from <a object|uranore>uranium ore</a>." msgstr "" #. type: Plain text #: scene601-help/mhvolca1.txt:7 #, no-wrap msgid "A more efficient program for the gathering of raw materials is attached to this message." msgstr "" #. type: Plain text #: scene601-help/mhvolca1.txt:9 #, no-wrap msgid "A note of warning: the explosive device is extremely volatile. Use extreme caution." msgstr "" #. type: Plain text #: scene601-help/mhvolca1.txt:11 #, no-wrap msgid "<format key><key help/></format> allows you to review these instructions at all times on your personal SatCom <button 63/>." msgstr "" #. type: \t; header #: scene601-help/mhvolca1.txt:12 scene601-help/msvolca1.txt:14 #, no-wrap msgid "See also" msgstr "" #. type: Plain text #: scene601-help/mhvolca1.txt:13 #, no-wrap msgid "<a command>Controls</a> and <a cbot>CBOT Language</a>" msgstr "" #. type: \b; header #: scene601-help/mivolca1.txt:1 #, no-wrap msgid "Satellite Report" msgstr "" #. type: Plain text #: scene601-help/mivolca1.txt:3 #, no-wrap msgid "Currently in a geo-stationary orbit of Volcano." msgstr "" #. type: \s; block (usually verbatim code) #: scene601-help/mivolca1.txt:5 #, no-wrap msgid "-> SURFACE<c/>" msgstr "" #. type: Plain text #: scene601-help/mivolca1.txt:10 #, no-wrap msgid "" "\\tab;Temperature: 84.6C\n" "\\tab;Atmosphere: CO2, SO2, HCN, HS, CH4, NH3\n" "\\tab;Wind: 2.2 mps\n" "\\tab;Titanium ore: everywhere\n" "\\tab;Uranium ore: some" msgstr "" #. type: \s; block (usually verbatim code) #: scene601-help/mivolca1.txt:12 #, no-wrap msgid "-> SUBSOIL<c/>" msgstr "" #. type: Plain text #: scene601-help/mivolca1.txt:15 #, no-wrap msgid "" "\\tab;Energy source: everywhere\n" "\\tab;Titanium ore: none\n" "\\tab;Uranium ore: none" msgstr "" #. type: \s; block (usually verbatim code) #: scene601-help/mivolca1.txt:17 #, no-wrap msgid "-> ADDITIONAL INFORMATION<c/>" msgstr "" #. type: Plain text #: scene601-help/mivolca1.txt:20 #, no-wrap msgid "" "\\tab;Detected: reusable derelicts \n" "\\tab;Detected: unknown organisms\n" "\\tab; - Danger: ?" msgstr "" #. type: \b; header #: scene601-help/mlvolca1.txt:1 #, no-wrap msgid "Programs dispatched by Houston" msgstr "" #. type: Plain text #: scene601-help/mlvolca1.txt:3 #, no-wrap msgid "As you will need lots of titanium for this mission, we have made the program <code>CollectTitanium</code> still more efficient. It gathers a whole series of titanium cubes on a free surface, so you can let it work on its own. It also recharges itself at the <a object|station>power station</a> if necessary." msgstr "" #. type: \s; block (usually verbatim code) #: scene601-help/mlvolca1.txt:52 #, no-wrap msgid "" "extern void object::CollectTitanium3()\n" "{\n" "\t// 1) Variable definition.\n" "\t<a cbot|type>object</a> item; // info. about objects\n" "\t\n" "\t<a cbot|while>while</a> (true) // repeat forever\n" "\t{\n" "\t\t\n" "\t\t// 2) Go to the titanium ore and grab it.\n" "\t\titem = <a cbot|radar>radar</a>(<a cbot|category>TitaniumOre</a>);// look for titanium\n" "\t\t<a cbot|goto>goto</a>(item.position); // go to the position\n" "\t\t<a cbot|grab>grab</a>(); // grab the titanium\n" "\t\t\n" "\t\t// 3) Go to the converter and drop it.\n" "\t\titem = <a cbot|radar>radar</a>(<a cbot|category>Converter</a>); // look for converter\n" "\t\t<a cbot|goto>goto</a>(item.position); // go to the position\n" "\t\t<a cbot|drop>drop</a>(); // drop the titanium\n" "\t\t<a cbot|move>move</a>(-2.5); // step back 2.5 m\n" "\t\t\n" "\t\t// 4) Wait until titanium converted and grab it\n" "\t\t<a cbot|do>do</a>\n" "\t\t{\n" "\t\t\t<a cbot|wait>wait</a>(1); // wait for cube\n" "\t\t\titem = <a cbot|radar>radar</a>(<a cbot|category>Titanium</a>, 0, 45, 0, 5);\n" "\t\t}\n" "\t\t<a cbot|while>while</a> ( item == null );\n" "\t\t<a cbot|goto>goto</a>(item.position);\n" "\t\t<a cbot|grab>grab</a>(); // grab it\n" "\t\t\n" "\t\t// 5) Drop on a free space\n" "\t\t<a cbot|goto>goto</a>(<a cbot|space>space</a>(position)); // go to free space\n" "\t\t<a cbot|drop>drop</a>(); // drop titanium\n" "\t\t\n" "\t\t// 6) If power cell half empty, recharges.\n" "\t\t<a cbot|if>if</a> ( energyCell.energyLevel < 0.5 )\n" "\t\t{ // if so:\n" "\t\t\titem = <a cbot|radar>radar</a>(<a cbot|category>PowerStation</a>);\n" "\t\t\t<a cbot|if>if</a> ( item != null ) // station found ?\n" "\t\t\t{\n" "\t\t\t\t<a cbot|goto>goto</a>(item.position); // go there\n" "\t\t\t\t<a cbot|while>while</a> ( energyCell.energyLevel < 1 )\n" "\t\t\t\t{ // until recharged:\n" "\t\t\t\t\t<a cbot|wait>wait</a>(1); // wait\n" "\t\t\t\t}\n" "\t\t\t}\n" "\t\t}\n" "\t}\n" "}" msgstr "" #. type: \b; header #: scene601-help/mlvolca1.txt:53 #, no-wrap msgid "Archives" msgstr "" #. type: Plain text #: scene601-help/mlvolca1.txt:55 #, no-wrap msgid "Index of the programs dispatched in former missions:" msgstr "" #. type: Bullet: 'o' #: scene601-help/mlvolca1.txt:56 #, no-wrap msgid "<code><a mlsaari2>KillAnt1</a></code>" msgstr "" #. type: Bullet: 'o' #: scene601-help/mlvolca1.txt:57 #, no-wrap msgid "<code><a mlcrys2>CollectTitanium2</a></code>" msgstr "" #. type: Bullet: 'o' #: scene601-help/mlvolca1.txt:58 #, no-wrap msgid "<code><a mlcrys1>CollectTitanium1</a></code>" msgstr "" #. type: Bullet: 'o' #: scene601-help/mlvolca1.txt:59 #, no-wrap msgid "<code><a mltropi3>Recharge2</a></code>" msgstr "" #. type: Bullet: 'o' #: scene601-help/mlvolca1.txt:60 #, no-wrap msgid "<code><a mllune4>Recharge1</a></code>" msgstr "" #. type: Bullet: 'o' #: scene601-help/mlvolca1.txt:61 #, no-wrap msgid "<code><a mllune1>SwitchCell1</a></code>" msgstr "" #. type: \b; header #: scene601-help/msvolca1.txt:1 #, no-wrap msgid "Walkthrough" msgstr "" #. type: Bullet: '1)' #: scene601-help/msvolca1.txt:2 #, no-wrap msgid "Start by recharging a <a object|power>regular power cell</a> and power the <a object|research>research center</a>. Use it to research the technology for the building of a <a object|nuclear>nuclear plant</a> <button 170/>." msgstr "" #. type: Bullet: '2)' #: scene601-help/msvolca1.txt:4 #, no-wrap msgid "Produce a <a object|botgr>wheeled grabber</a>." msgstr "" #. type: Bullet: '3)' #: scene601-help/msvolca1.txt:6 #, no-wrap msgid "Find some <a object|uranore>uranium ore</a> northwest of your position. The nuclear plant will then transform it into <a object|atomic>nuclear power cells</a> of a longer duration." msgstr "" #. type: Bullet: '4)' #: scene601-help/msvolca1.txt:8 #, no-wrap msgid "Power a <a object|botfr>wheeled shooter</a> with one of your new nuclear cells. Dispatch it to kill all intruding <a object|spider>spiders</a> along the way." msgstr "" #. type: Bullet: '5)' #: scene601-help/msvolca1.txt:10 #, no-wrap msgid "A <a object|radar>radar</a> is optional but could turn out useful to mark the position of the spiders on your mini map." msgstr "" #. type: Bullet: '6)' #: scene601-help/msvolca1.txt:12 #, no-wrap msgid "A wheeled grabber should be part of the expedition. It will both clear the way cluttered with <a object|titanore>titanium ore</a> and bring the <a object|tnt>explosive device</a> back." msgstr "" #. type: Plain text #: scene601-help/msvolca1.txt:15 #, no-wrap msgid "<a command>Controls</a>" msgstr ""