# 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. # # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2013-11-11 09:56+0100\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 #: scene904.languagecode:1 #, no-wrap msgid "E" msgstr "R" #. type: Title-text #: scene904/scene.txt:1 #, no-wrap msgid "scene904:Alien Queen" msgstr "scene904:Королева пришельцев" #. type: Resume-text #: scene904/scene.txt:2 #, no-wrap msgid "scene904:Get the fourth key, open the vault and make the planet safe for human habitation." msgstr "scene904:Найдите четвертый ключ, откройте погреб и сделайте так, чтобы планета стала безопасной для людей." #. type: \b; header #: scene904-help/mhterra4.txt:1 #, no-wrap msgid "From Mission Control" msgstr "" #. type: Plain text #: scene904-help/mhterra4.txt:3 #, no-wrap msgid "With the help of the fourth <a object|key>key</a> (D) located nearby, you will finally gain access to the <a object|safe>vault</a>. The groundbreaking bot you'll find inside was named a \"<a object|botphaz>phazer</a>\"." msgstr "" #. type: Plain text #: scene904-help/mhterra4.txt:5 #, no-wrap msgid "A program allowing for a collaboration between a <a object|botphaz>phazer</a> and a <a object|botshld>shielder</a> has been attached." msgstr "" #. type: Plain text #: scene904-help/mhterra4.txt:7 #, no-wrap msgid "You should soon find yourself in a position to test your new weapon. Your last mission is to dispose of the <a object|mother>Alien Queen</a>, the egglayer responsible for the growing number of insects on Terranova. The phazer might very well be the only bot capable of getting the job done." msgstr "" #. type: Plain text #: scene904-help/mhterra4.txt:9 #, no-wrap msgid "There will then be no further obstacle to the human colonization of this magnificent planet and you'll soon be able to notify Earth of the success of your mission." msgstr "" #. type: Plain text #: scene904-help/mhterra4.txt:11 #, no-wrap msgid "\\key;\\key help;<norm/> allows you to review these instructions at all times on your personal SatCom <button 63/>." msgstr "" #. type: \t; header #: scene904-help/mhterra4.txt:12 scene904-help/msterra4.txt:5 #, no-wrap msgid "See also" msgstr "" #. type: Plain text #: scene904-help/mhterra4.txt:13 #, no-wrap msgid "<a command>Controls</a> and <a cbot>CBOT Language</a>" msgstr "" #. type: \b; header #: scene904-help/miterra4.txt:1 #, no-wrap msgid "Satellite Report" msgstr "" #. type: Plain text #: scene904-help/miterra4.txt:3 #, no-wrap msgid "Currently in a geo-stationary orbit of Terranova." msgstr "" #. type: \s; block (usually verbatim code) #: scene904-help/miterra4.txt:5 #, no-wrap msgid "-> SURFACE<c/>" msgstr "" #. type: Plain text #: scene904-help/miterra4.txt:10 #, no-wrap msgid "" "\\tab;Temperature: 23.7C\n" "\\tab;Atmosphere: oxygen\n" "\\tab;Wind: 0.5 mps\n" "\\tab;Titanium ore: some\n" "\\tab;Uranium ore: some" msgstr "" #. type: \s; block (usually verbatim code) #: scene904-help/miterra4.txt:12 #, no-wrap msgid "-> SUBSOIL<c/>" msgstr "" #. type: Plain text #: scene904-help/miterra4.txt:15 #, no-wrap msgid "" "\\tab;Energy source: in some places (spaceship)\n" "\\tab;Titanium ore: none\n" "\\tab;Uranium ore: none" msgstr "" #. type: \s; block (usually verbatim code) #: scene904-help/miterra4.txt:17 #, no-wrap msgid "-> ADDITIONAL INFORMATION<c/>" msgstr "" #. type: Plain text #: scene904-help/miterra4.txt:21 #, no-wrap msgid "" "\\tab;Detected: giant ants\n" "\\tab; - Danger: immediate\n" "\\tab;Detected: giant egglayer\n" "\\tab; - Danger: ?" msgstr "" #. type: \b; header #: scene904-help/mlterra4.txt:1 #, no-wrap msgid "Programs dispatched by Houston" msgstr "" #. type: Plain text #: scene904-help/mlterra4.txt:3 #, no-wrap msgid "Below is a program that has been developed by our engineers." msgstr "" #. type: Plain text #: scene904-help/mlterra4.txt:5 #, no-wrap msgid "It instructs the <a object|botshld>shielder</a> to follow and protect the <a object|botphaz>phazer</a>." msgstr "" #. type: \s; block (usually verbatim code) #: scene904-help/mlterra4.txt:39 #, no-wrap msgid "" "extern void object::FollowPhazer()\n" "{\n" "\t<a cbot|type>object</a> item; // info. about phazer\n" "\t<a cbot|type>point</a> dest; // position where to go\n" "\t<a cbot|type>float</a> dist; // distance to phazer\n" "\t\n" "\titem = <a cbot|radar>radar</a>(<a cbot|category>PhazerShooter</a>);\n" "\t<a cbot|if>if</a> ( item == null )\n" "\t{\n" "\t\t<a cbot|message>message</a>(\"No phazer found\");\n" "\t\t<a cbot|return>return</a>; // stop the program\n" "\t}\n" "\t<a cbot|shield>shield</a>(1, 25); // activate the shield\n" "\t\n" "\t<a cbot|while>while</a> ( true ) // repeat forever\n" "\t{\n" "\t\titem = <a cbot|radar>radar</a>(PhazerShooter);// look for phazer\n" "\t\t<a cbot|if>if</a> ( item == null ) break;\n" "\t\t\n" "\t\tdist = <a cbot|dist>distance</a>(item.position, position);\n" "\t\t<a cbot|if>if</a> ( dist < 5 )\n" "\t\t{ // if closer than 5 m:\n" "\t\t\t<a cbot|wait>wait</a>(1); // wait\n" "\t\t}\n" "\t\t<a cbot|if>else</a> // otherwise:\n" "\t\t{ // Calculate a position 5 m before the phazer\n" "\t\t\tdest.x = (item.position.x-position.x)*((dist-5)/dist)+position.x;\n" "\t\t\tdest.y = (item.position.y-position.y)*((dist-5)/dist)+position.y;\n" "\t\t\tdest.z = (item.position.z-position.z)*((dist-5)/dist)+position.z;\n" "\t\t\t<a cbot|goto>goto</a>(dest, 0, 1, 1); // and go there\n" "\t\t}\n" "\t}\n" "}" msgstr "" #. type: \b; header #: scene904-help/mlterra4.txt:40 #, no-wrap msgid "Archives" msgstr "" #. type: Plain text #: scene904-help/mlterra4.txt:42 #, no-wrap msgid "Index of the programs dispatched in former missions:" msgstr "" #. type: Bullet: 'o' #: scene904-help/mlterra4.txt:43 #, no-wrap msgid "<code><a mlvolca2>ServiceTower1</a></code>" msgstr "" #. type: Bullet: 'o' #: scene904-help/mlterra4.txt:44 #, no-wrap msgid "<code><a mlvolca1>CollectTitanium3</a></code>" msgstr "" #. type: Bullet: 'o' #: scene904-help/mlterra4.txt:45 #, no-wrap msgid "<code><a mlsaari2>KillAnt1</a></code>" msgstr "" #. type: Bullet: 'o' #: scene904-help/mlterra4.txt:46 #, no-wrap msgid "<code><a mlcrys2>CollectTitanium2</a></code>" msgstr "" #. type: Bullet: 'o' #: scene904-help/mlterra4.txt:47 #, no-wrap msgid "<code><a mlcrys1>CollectTitanium1</a></code>" msgstr "" #. type: Bullet: 'o' #: scene904-help/mlterra4.txt:48 #, no-wrap msgid "<code><a mltropi3>Recharge2</a></code>" msgstr "" #. type: Bullet: 'o' #: scene904-help/mlterra4.txt:49 #, no-wrap msgid "<code><a mllune4>Recharge1</a></code>" msgstr "" #. type: Bullet: 'o' #: scene904-help/mlterra4.txt:50 #, no-wrap msgid "<code><a mllune1>SwitchCell1</a></code>" msgstr "" #. type: \b; header #: scene904-help/msterra4.txt:1 #, no-wrap msgid "Walkthrough" msgstr "" #. type: Plain text #: scene904-help/msterra4.txt:4 #, no-wrap msgid "" "Unfortunately no walkthrough has been provided for this mission.\n" "You are on your own..." msgstr "" #. type: Plain text #: scene904-help/msterra4.txt:6 #, no-wrap msgid "<a command>Controls</a>" msgstr ""