1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596
|
# Blob Wars : Blob and Conquer Base POT File
# Copyright (C) 2008
# This file is distributed under the same license as the Blob And Conquer package.
# Stephen Sweeney <stephen.j.sweeney@gmail.com>, 2008.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: 1.11\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-06-17 22:06+0100\n"
"PO-Revision-Date: 2008-06-21 00:00+GMT\n"
"Last-Translator: Stephen Sweeney <stephen.j.sweeney@gmail.com>\n"
"Language-Team: English <stephen.j.sweeney@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: src/title.cpp:184
msgid "data/misc/en/credits"
msgstr ""
#: src/entities/doors.cpp:68
msgid "Door is Locked"
msgstr ""
#: src/entities/bullets.cpp:152 src/entities/bullets.cpp:202
#: src/entities/blobs.cpp:1654 src/hud/status.cpp:256
#: src/combat/explosions.cpp:54
msgid "Total Damage Taken"
msgstr ""
#: src/entities/bullets.cpp:170
msgid "CAUTION - SHIELD BELT DESTROYED!"
msgstr ""
#: src/entities/bullets.cpp:183 src/hud/status.cpp:237
#: src/combat/explosions.cpp:76
msgid "Enemies Killed"
msgstr ""
#: src/entities/bullets.cpp:187
msgid "Enemies Killed By Teeka"
msgstr ""
#: src/entities/bullets.cpp:192 src/combat/explosions.cpp:85
msgid "Enemies Killed By Friendly Fire"
msgstr ""
#: src/entities/bullets.cpp:198 src/entities/bullets.cpp:1359
#: src/hud/status.cpp:247
msgid "Bullets Hit"
msgstr ""
#: src/entities/bullets.cpp:314 src/entities/bullets.cpp:409
#: src/hud/status.cpp:248
msgid "Bullets Missed"
msgstr ""
#: src/entities/bullets.cpp:654
msgid "YOU'RE ON FIRE!!! FIND SOME WATER!!!"
msgstr ""
#: src/entities/structures.cpp:689 src/entities/structures.cpp:707
#: src/bosses/cryptBoss.cpp:154 src/bosses/cryptBoss.cpp:164
msgid "C4"
msgstr ""
#: src/entities/structures.cpp:693 src/bosses/cryptBoss.cpp:156
msgid "C4 required"
msgstr ""
#: src/entities/structures.cpp:700 src/bosses/cryptBoss.cpp:160
msgid "Press ACTION to use C4"
msgstr ""
#: src/entities/lift.cpp:114
msgid "Press ACTION to use lift"
msgstr ""
#: src/entities/items.cpp:113 src/entities/items.cpp:230
#: src/entities/items.cpp:257 src/entities/items.cpp:284
#: src/entities/items.cpp:369 src/entities/items.cpp:428
#: src/entities/items.cpp:525
#, c-format
msgid "Picked up %s"
msgstr ""
#: src/entities/items.cpp:114 src/hud/status.cpp:251
msgid "Cherries Picked Up"
msgstr ""
#: src/entities/items.cpp:142
#, c-format
msgid "Picked up a Shield Belt (%dVGhz)"
msgstr ""
#: src/entities/items.cpp:160
#, c-format
msgid "Picked up %s for Teeka"
msgstr ""
#: src/entities/items.cpp:168 src/entities/items.cpp:232
#: src/hud/status.cpp:252
msgid "Items Picked Up"
msgstr ""
#: src/entities/items.cpp:214
#, c-format
msgid "Cannot carry any more %ss"
msgstr ""
#: src/entities/items.cpp:303 src/entities/items.cpp:330
#: src/entities/items.cpp:473
#, c-format
msgid "Picked up some %s"
msgstr ""
#: src/entities/items.cpp:348 src/entities/items.cpp:498
#, c-format
msgid "Press ACTION to swap %s for %s"
msgstr ""
#: src/entities/items.cpp:383 src/entities/items.cpp:429
#: src/entities/items.cpp:476 src/hud/status.cpp:253
msgid "Weapons Picked Up"
msgstr ""
#: src/entities/items.cpp:469
#, c-format
msgid "Got some %s ammo"
msgstr ""
#: src/entities/items.cpp:849 src/entities/features.cpp:504
#: src/entities/features.cpp:522
msgid "Grappling Hook"
msgstr ""
#: src/entities/blobs.cpp:290
#, c-format
msgid "Rescued %s"
msgstr ""
#: src/entities/blobs.cpp:332 src/entities/blobs.cpp:350
msgid "Teletag"
msgstr ""
#: src/entities/blobs.cpp:336
msgid "Teletag required"
msgstr ""
#: src/entities/blobs.cpp:340
msgid "Press ACTION to attach Teletag"
msgstr ""
#: src/entities/blobs.cpp:1502 src/hud/status.cpp:243
msgid "Allies Killed"
msgstr ""
#: src/entities/blobs.cpp:1528
#, c-format
msgid "%s has been killed"
msgstr ""
#: src/entities/units.cpp:203
msgid "YOU'VE BEEN FROZEN! PRESS BUTTONS TO ESCAPE!!!"
msgstr ""
#: src/entities/units.cpp:270
msgid "YOU'VE BEEN WRAPPED UP! PRESS BUTTONS TO ESCAPE!!!"
msgstr ""
#: src/entities/units.cpp:783
msgid "KIA"
msgstr ""
#: src/entities/units.cpp:787
msgid "Wounded"
msgstr ""
#: src/entities/units.cpp:791
msgid "OK"
msgstr ""
#: src/entities/switches.cpp:317
msgid "Bombs can only be planted by a Blob Demolition expert"
msgstr ""
#: src/entities/switches.cpp:501
#, c-format
msgid "%d more to go..."
msgstr ""
#: src/entities/switches.cpp:552
msgid "Switch can only be activated by a Blob Engineer"
msgstr ""
#: src/entities/switches.cpp:556
msgid "Switch can only be activated by a Blob Computer Hacker"
msgstr ""
#: src/entities/switches.cpp:562
msgid "Press ACTION to activate switch"
msgstr ""
#: src/entities/switches.cpp:566
msgid "Press ACTION to reset puzzle blocks"
msgstr ""
#: src/entities/switches.cpp:577
#, c-format
msgid "%s required"
msgstr ""
#: src/entities/switches.cpp:583
#, c-format
msgid "Used %s"
msgstr ""
#: src/entities/features.cpp:222
msgid "Cannot exit yet - Primary objectives not completed"
msgstr ""
#: src/entities/features.cpp:232
msgid "Cannot leave without Teeka"
msgstr ""
#: src/entities/features.cpp:237
msgid "Press ACTION to exit mission"
msgstr ""
#: src/entities/features.cpp:383
msgid "Press ACTION to Save Game"
msgstr ""
#: src/entities/features.cpp:414
#, c-format
msgid "data/locale/en/%s"
msgstr ""
#: src/entities/features.cpp:474
msgid "Press ACTION to get Information"
msgstr ""
#: src/entities/features.cpp:508
msgid "Grappling Hooks required"
msgstr ""
#: src/entities/features.cpp:512
msgid "Press ACTION to use Grappling Hook"
msgstr ""
#: src/hud/status.cpp:28
msgid "Leader"
msgstr ""
#: src/hud/status.cpp:31
msgid "Sidekick"
msgstr ""
#: src/hud/status.cpp:34
msgid "Cadet"
msgstr ""
#: src/hud/status.cpp:37
msgid "Demolition Expert"
msgstr ""
#: src/hud/status.cpp:40
msgid "Engineer"
msgstr ""
#: src/hud/status.cpp:43
msgid "Hacker"
msgstr ""
#: src/hud/status.cpp:89
msgid "Primary Objectives"
msgstr ""
#: src/hud/status.cpp:108
msgid "Secondary Objectives"
msgstr ""
#: src/hud/status.cpp:128
msgid "Conditions"
msgstr ""
#: src/hud/status.cpp:147
msgid "Unit Status"
msgstr ""
#: src/hud/status.cpp:153
msgid "Name"
msgstr ""
#: src/hud/status.cpp:154
msgid "Health"
msgstr ""
#: src/hud/status.cpp:155
msgid "Shield"
msgstr ""
#: src/hud/status.cpp:156
msgid "Job"
msgstr ""
#: src/hud/status.cpp:157
msgid "Weapon"
msgstr ""
#: src/hud/status.cpp:215 src/hud/status.cpp:307
msgid "Objectives"
msgstr ""
#: src/hud/status.cpp:219
msgid "Units"
msgstr ""
#: src/hud/status.cpp:223 src/hud/status.cpp:313
msgid "Statistics"
msgstr ""
#: src/hud/status.cpp:234 src/misc/misc.cpp:48 src/misc/misc.cpp:64
msgid "Total Game Time"
msgstr ""
#: src/hud/status.cpp:238
msgid "Enemies Killed Teeka"
msgstr ""
#: src/hud/status.cpp:239
msgid "Enemies Killed Friendly"
msgstr ""
#: src/hud/status.cpp:240
msgid "Enemies Drowned"
msgstr ""
#: src/hud/status.cpp:246 src/combat/weapons.cpp:29
msgid "Bullets Fired"
msgstr ""
#: src/hud/status.cpp:257 src/player.cpp:963
msgid "Times Fallen In Slime"
msgstr ""
#: src/hud/status.cpp:258 src/player.cpp:971
msgid "Times Fallen In Lava"
msgstr ""
#: src/hud/status.cpp:261
msgid "Best Combo"
msgstr ""
#: src/hud/widgets.cpp:224
#, c-format
msgid " or Joy %d"
msgstr ""
#: src/hud/widgets.cpp:228
#, c-format
msgid "Joy %d"
msgstr ""
#: src/hud/widgets.cpp:238
#, c-format
msgid " or Mouse %s"
msgstr ""
#: src/hud/widgets.cpp:242
#, c-format
msgid "Mouse %s"
msgstr ""
#: src/hud/controlPanel.cpp:423
#, c-format
msgid "%s (Recharging)"
msgstr ""
#: src/hud/controlPanel.cpp:467
msgid "Desimilator has recharged"
msgstr ""
#: src/effects/particles.cpp:474
msgid "Blood Spilt"
msgstr ""
#: src/player.cpp:364
msgid "Orders : Follow"
msgstr ""
#: src/player.cpp:373
msgid "Orders : Wait"
msgstr ""
#: src/player.cpp:382
msgid "Orders : Use"
msgstr ""
#: src/player.cpp:391
msgid "Orders : Retreat"
msgstr ""
#: src/misc/misc.cpp:135
msgid "<<< Empty >>>"
msgstr ""
#: src/misc/cutscene.cpp:875
#, c-format
msgid "data/cutscenes/text/en/%s"
msgstr ""
#: src/bosses/bioTanks.cpp:237 src/bosses/bioTanks.cpp:255
#: src/bosses/bioTanks.cpp:771 src/bosses/bioTanks.cpp:772
msgid "AI Kernel Module"
msgstr ""
#: src/bosses/bioTanks.cpp:241
msgid "AI Kernel Module required"
msgstr ""
#: src/bosses/bioTanks.cpp:245
msgid "Press ACTION to apply AI Kernel Module"
msgstr ""
#: src/bosses/bioTanks.cpp:269
#, c-format
msgid "%s (Patched)"
msgstr ""
#: src/bosses/bioTanks.cpp:298
#, c-format
msgid "%s has recovered!"
msgstr ""
#: src/bosses/bioTanks.cpp:432 src/bosses/bioTanks.cpp:471
#, c-format
msgid "%s has been disabled!"
msgstr ""
#: src/bosses/specialist.cpp:149
#, c-format
msgid "%s got his %s back!"
msgstr ""
#: src/bosses/specialist.cpp:292
#, c-format
msgid "%s stole %s"
msgstr ""
#: src/bosses/eyeDroidCommander.cpp:616
msgid "!!! ION CANNON DESTROYED !!!"
msgstr ""
#: src/bosses/eyeDroidCommander.cpp:625
#, c-format
msgid "%s starting repairs!"
msgstr ""
#: src/bosses/eyeDroidCommander.cpp:640
#, c-format
msgid "Ion Cannon: %d% Complete..."
msgstr ""
#: src/bosses/eyeDroidCommander.cpp:654
msgid "Reparing Ion Cannon..."
msgstr ""
#: src/bosses/eyeDroidCommander.cpp:658
msgid "Hold ACTION to repair cannon"
msgstr ""
#: src/bosses/eyeDroidCommander.cpp:671
msgid "Ion Cannon Repaired!"
msgstr ""
#: src/bosses/eyeDroidCommander.cpp:786
msgid "Ion Cannon Damaged!"
msgstr ""
#: src/bosses/eyeDroidCommander.cpp:812
msgid "Droid Commander Disabled!!"
msgstr ""
#: src/bosses/eyeDroidCommander.cpp:854
msgid "Ion Cannon Enabled"
msgstr ""
#: src/bosses/finalBoss.cpp:369
msgid ""
"A strong blast might be able to send that shot back from where it came..."
msgstr ""
#: src/bosses/finalBoss.cpp:491
msgid "DIE, BOB!!! DIE!!!!"
msgstr ""
#: src/init.cpp:35
msgid "data/misc/en/LICENSE"
msgstr ""
#: src/combat/explosions.cpp:80
msgid "Enemies Killed By Tekka"
msgstr ""
#: src/puzzles/mastermind.cpp:27
msgid "data/misc/en/mastermind"
msgstr ""
#: src/puzzles/laserGrid.cpp:25
msgid "data/misc/en/laserGrid"
msgstr ""
#: src/battle.cpp:272
msgid "Can't do that during a boss battle..."
msgstr ""
#: src/battle.cpp:505
msgid "1 Minute Left..."
msgstr ""
#: src/battle.cpp:511
msgid "30 Seconds Remaining!"
msgstr ""
#: src/battle.cpp:516
msgid "!!! Hurry Up !!!"
msgstr ""
#: src/missions/mission.cpp:420
msgid "***** Mission Complete *****"
msgstr ""
#: src/missions/mission.cpp:425
#, c-format
msgid "%s - Objective Completed"
msgstr ""
#: src/missions/mission.cpp:433 src/missions/mission.cpp:524
#, c-format
msgid "%s - Objective Failed"
msgstr ""
#: src/missions/mission.cpp:456
msgid "*** MISSION FAILED ****"
msgstr ""
#: src/missions/mission.cpp:496
#, c-format
msgid "New Objective - %s"
msgstr ""
#: src/cplusplus/CGame.cpp:463
#, c-format
msgid "%d Hit Combo!!"
msgstr ""
#: src/cplusplus/CComboBox.cpp:60
#, c-format
msgid "%s"
msgstr ""
#: added manually
msgid "8 Months Later..."
msgstr ""
msgid "Presents"
msgstr ""
msgid "An SDL-OpenGL Game"
msgstr ""
msgid "New Game"
msgstr ""
msgid "Training"
msgstr ""
msgid "Load Game"
msgstr ""
msgid "Options"
msgstr ""
msgid "Quit"
msgstr ""
msgid "Quit Game"
msgstr ""
msgid "Loading Mission..."
msgstr ""
msgid "Loading Resources..."
msgstr ""
msgid "Loading Music..."
msgstr ""
msgid "Copyright Parallel Realities 2008"
msgstr ""
msgid "Version %.2f"
msgstr ""
msgid "Resume Game"
msgstr ""
msgid "Save Game"
msgstr ""
msgid "Restart Level"
msgstr ""
msgid "Game Options"
msgstr ""
msgid "Hint: %s"
msgstr ""
msgid "Uzi"
msgstr ""
msgid "Shotgun"
msgstr ""
msgid "Grenades"
msgstr ""
msgid "Small Pistol"
msgstr ""
msgid "Resolution"
msgstr ""
msgid "Fullscreen"
msgstr ""
msgid "Grab Mouse"
msgstr ""
msgid "Sound Volume"
msgstr ""
msgid "Music Volume"
msgstr ""
msgid "Ambient Volume"
msgstr ""
msgid "Environment Volume"
msgstr ""
msgid "Brightness"
msgstr ""
msgid "Configure Controls..."
msgstr ""
msgid "Additional Options..."
msgstr ""
msgid "Left Alt"
msgstr ""
msgid "Right Alt"
msgstr ""
msgid "Left Ctrl"
msgstr ""
msgid "Right Ctrl"
msgstr ""
msgid "Left Super"
msgstr ""
msgid "Right Super"
msgstr ""
msgid "Left Shift"
msgstr ""
msgid "Right Shift"
msgstr ""
msgid "Forward"
msgstr ""
msgid "Backward"
msgstr ""
msgid "Jump"
msgstr ""
msgid "Fire"
msgstr ""
msgid "Action"
msgstr ""
msgid "Status"
msgstr ""
msgid "Quick Grenade"
msgstr ""
msgid "Cycle Weapon"
msgstr ""
msgid "Auto / Manual Aim"
msgstr ""
msgid "Cycle Target"
msgstr ""
msgid "Rotate Camera Left"
msgstr ""
msgid "Rotate Camera Right"
msgstr ""
msgid "Pause"
msgstr ""
msgid "right"
msgstr ""
msgid "left"
msgstr ""
msgid "Return"
msgstr ""
msgid "Tab"
msgstr ""
msgid "N/A"
msgstr ""
msgid "Caps Lock"
msgstr ""
msgid "Ctrl"
msgstr ""
msgid "Super"
msgstr ""
msgid "Alt"
msgstr ""
msgid "Analog Deadzone"
msgstr ""
msgid "Mouse Sensitivity"
msgstr ""
msgid "Reset"
msgstr ""
msgid "Cancel"
msgstr ""
msgid "Blood Policy"
msgstr ""
msgid "Shadow Policy"
msgstr ""
msgid "Decal Policy"
msgstr ""
msgid "Swap Second Joystick Axis"
msgstr ""
msgid "On"
msgstr ""
msgid "Off"
msgstr ""
msgid "No Stains"
msgstr ""
msgid "Blobs and Enemies"
msgstr ""
msgid "Bob Only"
msgstr ""
msgid "Medium"
msgstr ""
msgid "Low"
msgstr ""
msgid "Cherry"
msgstr ""
msgid "Medipack"
msgstr ""
msgid "Keycard"
msgstr ""
msgid "Battery"
msgstr ""
msgid "ID Card"
msgstr ""
msgid "Shield Belt"
msgstr ""
msgid "Teeka Weapon"
msgstr ""
msgid "Sticky C4"
msgstr ""
msgid "Plasma Pistol"
msgstr ""
msgid "Plasma Rifle"
msgstr ""
msgid "Grenade Launcher"
msgstr ""
msgid "Cluster Launcher"
msgstr ""
msgid "RPG Launcher"
msgstr ""
msgid "Web"
msgstr ""
msgid "Ice Gun"
msgstr ""
msgid "Flamethrower"
msgstr ""
msgid "Desimilator"
msgstr ""
msgid "Medicine"
msgstr ""
msgid "Map"
msgstr ""
msgid "Red Gem"
msgstr ""
msgid "Orange Gem"
msgstr ""
msgid "Yellow Gem"
msgstr ""
msgid "Green Gem"
msgstr ""
msgid "Blue Gem"
msgstr ""
msgid "Purple Gem"
msgstr ""
msgid "Cipher #1"
msgstr ""
msgid "Cipher #2"
msgstr ""
msgid "Life Crystal"
msgstr ""
msgid "Incomplete"
msgstr ""
msgid "Complete"
msgstr ""
msgid "Complete combat training"
msgstr ""
msgid "Open door to lava passage"
msgstr ""
msgid "Complete aiming training"
msgstr ""
msgid "Complete target training"
msgstr ""
msgid "Open door to combat training"
msgstr ""
msgid "Page"
msgstr ""
msgid "Escape from the ambush area"
msgstr ""
msgid "Find a way back to base"
msgstr ""
msgid "Get to the caves"
msgstr ""
msgid "Get some additional weaponary"
msgstr ""
msgid "Destroy BioMech supply crates"
msgstr ""
msgid "Find a way through the caves"
msgstr ""
msgid "Get in to main outpost"
msgstr ""
msgid "Rescue Teeka"
msgstr ""
msgid "Find a way through the outpost"
msgstr ""
msgid "Get a better weapon for Teeka"
msgstr ""
msgid "Destroy waste processing machines"
msgstr ""
msgid "Destroy main processing computer"
msgstr ""
msgid "Gain access to sewer system"
msgstr ""
msgid "Find your way through the sewers"
msgstr ""
msgid "Find some C4"
msgstr ""
msgid "Blast through crumbling walls"
msgstr ""
msgid "Find a better grenade launcher"
msgstr ""
msgid "Open tunnel exit"
msgstr ""
msgid "Rescue All MIAs"
msgstr ""
msgid "Locate some Teletags"
msgstr ""
msgid "Locate some medical supplies"
msgstr ""
msgid "Destroy Biomech gun enplacements"
msgstr ""
msgid "Eliminate at least 100 enemies"
msgstr ""
msgid "Do not allow any MIAs to be killed"
msgstr ""
msgid "Defeat BioMechs in courtyard area"
msgstr ""
msgid "Destroy Eye Droid Commander"
msgstr ""
msgid "Have Spark Plug open base water door"
msgstr ""
msgid "Teleport in demolition Blob"
msgstr ""
msgid "Plant bombs in base foundations"
msgstr ""
msgid "Rescue MIAs"
msgstr ""
msgid "Find some better protection"
msgstr ""
msgid "Protect Spark Plug"
msgstr ""
msgid "Protect Silvester"
msgstr ""
msgid "Disable alarm systems"
msgstr ""
msgid "Teleport in Demolition Blob"
msgstr ""
msgid "Plant bombs in main base structure"
msgstr ""
msgid "Destroy supply crates"
msgstr ""
msgid "Destroy sentry guns"
msgstr ""
msgid "Protect Arnie"
msgstr ""
msgid "Escape before bombs detonate"
msgstr ""
msgid "Destroy Beta Biotank"
msgstr ""
msgid "Obtain Grappling Hooks"
msgstr ""
msgid "Activate Drawbridge"
msgstr ""
msgid "Destroy all Sentry Cannons"
msgstr ""
msgid "Gain access to enemy base courtyard"
msgstr ""
msgid "Destroy all Shield Generators"
msgstr ""
msgid "Destroy all enemies"
msgstr ""
msgid "Gain access to enemy base interior"
msgstr ""
msgid "Protect all MIAs"
msgstr ""
msgid "Protect Anderson"
msgstr ""
msgid "Destroy Base"
msgstr ""
msgid "Gain access to Left and Right Wings"
msgstr ""
msgid "Gain access to Left Wing Generator Room"
msgstr ""
msgid "Plant bombs in the Left Wing Generator"
msgstr ""
msgid "Gain access to Right Wing Generator Room"
msgstr ""
msgid "Plant bombs in the Right Wing Generator"
msgstr ""
msgid "Protect Sylvester"
msgstr ""
msgid "Protect Arnold"
msgstr ""
msgid "Locate secret tomb entrance"
msgstr ""
msgid "Find Red Gem"
msgstr ""
msgid "Find Orange Gem"
msgstr ""
msgid "Find Yellow Gem"
msgstr ""
msgid "Find Green Gem"
msgstr ""
msgid "Find Blue Gem"
msgstr ""
msgid "Find Purple Gem"
msgstr ""
msgid "Open main tomb door"
msgstr ""
msgid "Acquire first Cipher"
msgstr ""
msgid "Acquire second Cipher"
msgstr ""
msgid "Open door to main Crystal Room"
msgstr ""
msgid "Aquire more powerful weaponary"
msgstr ""
msgid "Activate first bridge part"
msgstr ""
msgid "Activate second bridge part"
msgstr ""
msgid "Activate third bridge part"
msgstr ""
msgid "Aquire Life Crystal"
msgstr ""
msgid "Fight Galdov"
msgstr ""
msgid "Open east passage door"
msgstr ""
msgid "Open passage to Flooded Tunnel"
msgstr ""
msgid "Escape back to base"
msgstr ""
msgid "Rescue Anderson"
msgstr ""
msgid "Destroy courtyard shield generators"
msgstr ""
msgid "Rescue 18 MIAs"
msgstr ""
msgid "Hack waste system access control"
msgstr ""
msgid "Get a new grenade launcher system"
msgstr ""
msgid "Obtain the Desimilator"
msgstr ""
msgid "Obtain 100 Teletags"
msgstr ""
msgid "Desimilate at least 96% of the Blobs"
msgstr ""
msgid "Rescue at least 96% of the Blobs"
msgstr ""
msgid "Do not lose more than 4% of the Blobs"
msgstr ""
msgid "Teleport in Spark Plug"
msgstr ""
msgid "Teleport in Arnold"
msgstr ""
msgid "Gain access to main dispatch yard"
msgstr ""
msgid "Set bombs in tank and ammo bay"
msgstr ""
msgid "Destroy Biomech teleport points"
msgstr ""
msgid "Escape before the bombs detonate!"
msgstr ""
msgid "Defeat Blaze"
msgstr ""
msgid "Defeat Frost"
msgstr ""
msgid "Pass security point #1"
msgstr ""
msgid "Pass security point #2"
msgstr ""
msgid "Pass security point #3"
msgstr ""
msgid "Pass security point #4"
msgstr ""
msgid "Break in to maintenance tunnel"
msgstr ""
msgid "Defeat main courtyard forces"
msgstr ""
msgid "Gain access to tower"
msgstr ""
msgid "Get to 1st Floor"
msgstr ""
msgid "Get to 2nd Floor"
msgstr ""
msgid "Get to 3rd Floor"
msgstr ""
msgid "Gain access to Tower Roof"
msgstr ""
msgid "Cherry Fields"
msgstr ""
msgid "Inner Cave Network #5"
msgstr ""
msgid "BioMech Outpost"
msgstr ""
msgid "Waste Disposal"
msgstr ""
msgid "Sewers"
msgstr ""
msgid "Flooded Tunnel 1"
msgstr ""
msgid "Blob Fort Outskirts"
msgstr ""
msgid "BioMech Supply Base Outskirts"
msgstr ""
msgid "BioMech Supply Base"
msgstr ""
msgid "Biomech Supply Base Rear Exit"
msgstr ""
msgid "Enemy Base 2 Outskirts"
msgstr ""
msgid "Enemy Base 2 Courtyard"
msgstr ""
msgid "Enemy Base 2 Interior"
msgstr ""
msgid "Ancient Tomb Entrance"
msgstr ""
msgid "Ancient Tomb 5"
msgstr ""
msgid "Life Crystal Shrine"
msgstr ""
msgid "Unknown"
msgstr ""
msgid "Flooded Tunnel 2"
msgstr ""
msgid "Biomech Assimilator Outskirts"
msgstr ""
msgid "Biomech Assimilator"
msgstr ""
msgid "Biomech Assimilator Dispatch Sector"
msgstr ""
msgid "Biomech Tower Perimeter"
msgstr ""
msgid "Biomech Tower Courtyard"
msgstr ""
msgid "Biomech Tower"
msgstr ""
msgid "Motion Blur"
msgstr ""
msgid "Unlimited Health"
msgstr ""
msgid "Unlimited Shield"
msgstr ""
msgid "Unlimited Ammo"
msgstr ""
msgid "Unlimited Oxygen"
msgstr ""
msgid "Blind Enemies"
msgstr ""
msgid "Unlimited Ally Health"
msgstr ""
msgid "No clipping (F/V, Up/Down)"
msgstr ""
msgid "Never be stunned"
msgstr ""
msgid "Special items not needed"
msgstr ""
msgid "Save anywhere (F2)"
msgstr ""
msgid "Desimilate any enemy"
msgstr ""
msgid "Unlimited Time"
msgstr ""
msgid "Left"
msgstr ""
msgid "Right"
msgstr ""
msgid "Up"
msgstr ""
msgid "Down"
msgstr ""
msgid "Space"
msgstr ""
msgid "Cheats"
msgstr ""
msgid "Load"
msgstr ""
msgid "Delete"
msgstr ""
msgid "left"
msgstr ""
msgid "middle"
msgstr ""
msgid "right"
msgstr ""
msgid "wheel up"
msgstr ""
msgid "wheel down"
msgstr ""
msgid "unknown"
msgstr ""
msgid "Loading Resources..."
msgstr ""
msgid "Loading Music..."
msgstr ""
msgid "Loading Game..."
msgstr ""
msgid "Saving Game State..."
msgstr ""
msgid "Loading Mission..."
msgstr ""
msgid "Red Gem"
msgstr ""
msgid "Orange Gem"
msgstr ""
msgid "Yellow Gem"
msgstr ""
msgid "Blue Gem"
msgstr ""
msgid "Purple Gem"
msgstr ""
msgid "Green Gem"
msgstr ""
msgid "Cipher #1"
msgstr ""
msgid "Cipher Key #1"
msgstr ""
msgid "Cipher Key #2"
msgstr ""
msgid "Cipher #2"
msgstr ""
msgid "Crystal Bridge Key #2"
msgstr ""
msgid "Life Crystal"
msgstr ""
msgid "Laser Beam Security Card"
msgstr ""
msgid "Maintenance Tunnel Key"
msgstr ""
msgid "Level 1 Access Key"
msgstr ""
msgid "Laser Checkpoint Card"
msgstr ""
msgid "2nd Floor Access Key"
msgstr ""
msgid "Level 2 Security Pass"
msgstr ""
msgid "Level 2 Security Pass"
msgstr ""
msgid "Level 2 Security Pass"
msgstr ""
msgid "Level 2 Security Pass"
msgstr ""
msgid "Level 3 Security Pass"
msgstr ""
msgid "Roof Access Keycard #2"
msgstr ""
msgid "Roof Access Keycard #1"
msgstr ""
msgid "AI Kernel Module"
msgstr ""
msgid "Outlet Key Card"
msgstr ""
msgid "Store Room 1 Key"
msgstr ""
msgid "Energy Bridge Key 2"
msgstr ""
msgid "Energy Bridge Key 1"
msgstr ""
msgid "Store Room 2 Key"
msgstr ""
msgid "Store Room 3 Key"
msgstr ""
msgid "Assimilator Level 5 Key"
msgstr ""
msgid "Assimilator Level 4 Key"
msgstr ""
msgid "Assimilator Level 3 Key"
msgstr ""
msgid "Assimilator Level 2 Key"
msgstr ""
msgid "Assimilator Level 1 Key"
msgstr ""
msgid "Desimilator"
msgstr ""
msgid "Desimilator Control Room 1 Key"
msgstr ""
msgid "Desimilator Right Wing Key 1"
msgstr ""
msgid "Desimilator Right Wing Key 2"
msgstr ""
msgid "Bay Loading Key"
msgstr ""
msgid "Check Point Card #1"
msgstr ""
msgid "Alarm Key #1"
msgstr ""
msgid "Alarm Key #2"
msgstr ""
msgid "Alarm Key #3"
msgstr ""
msgid "Teleporter Access Key"
msgstr ""
msgid "Check Point Key #2"
msgstr ""
msgid "Drawbridge Key 1"
msgstr ""
msgid "Drawbridge Key 2"
msgstr ""
msgid "Armoury Key"
msgstr ""
msgid "Shield Generator 1 Key"
msgstr ""
msgid "Control Room Main Key"
msgstr ""
msgid "Control Room 1st Floor Key"
msgstr ""
msgid "Shield Generator 2 Key"
msgstr ""
msgid "Shield Generator 3 Key"
msgstr ""
msgid "Shield Generator 4 Key"
msgstr ""
msgid "Holding Cell Key #2"
msgstr ""
msgid "Holding Cell Key #1"
msgstr ""
msgid "Storage Yard Keycard"
msgstr ""
msgid "Tank Storage Bay Key"
msgstr ""
msgid "Exit Key 1"
msgstr ""
msgid "Exit Key 2"
msgstr ""
msgid "Prison Shield Key"
msgstr ""
msgid "Medicine"
msgstr ""
msgid "Combat Room Card"
msgstr ""
msgid "Command Room Key"
msgstr ""
msgid "Storage Locker Key"
msgstr ""
|