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
|
////////////////////////////////////////////////////////////////////////////////
//
// Copyright 2016 RWS Inc, All Rights Reserved
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of version 2 of the GNU General Public License as published by
// the Free Software Foundation
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
// localize.cpp
// Project: Postal
//
// This module deals with localization issues.
//
// History:
// 11/19/96 MJR Started.
//
// 01/21/97 JMI Added g_pszAssetsMissingError for when the condition occurs
// that is an error when the assets are unfound by the nostril.
//
// 01/22/97 JMI Added g_pszSaveFileQuery.
//
// 01/22/97 MJR Added g_pszBadCDPath, g_pszBadHDPath, g_pszBadVDPath
//
// 02/03/97 JMI Added g_pszBadNoSakDirPath[].
//
// 04/11/97 JMI Added g_pszSaveDemoTitle and g_pszGeneralWriteError.
//
// 04/16/97 MJR Added a few more messages and cleaned up text for others.
//
// And then added a few more video messages, too.
//
// 04/21/97 MJR Created generic version of "bad path" message.
//
// 05/14/97 JMI Added g_pszPickedUpMessage_ld_s for CDude.
//
// 06/03/97 JMI Changed g_pszAudioModeError to g_pszAudioModeGeneralError
// and added g_pszAudioModeInUseError,
// g_pszAudioModeNoDeviceError,
// g_pszAudioModeNotSupportedError.
//
// 06/04/97 JMI Added g_pszNotOnCDROM.
//
// 06/06/97 JMI Changed message for g_pszPickedUpMessage_ld_s and its name
// to g_pszPickedUpMessage_s.
//
// 06/14/97 MJR Added/enhanced general file error messages.
//
// 07/13/97 JMI Changed g_pszAudioModeNotSupportedError to
// g_pszAudioModeNotSupportedError_s and changed to ask the
// user if they want to try the vanilla mode.
// Also, changed the other audio errors to include the
// sprintf format parameters in their names.
// Also, added g_pszAudioVanillaModeNotSupportedError_s for
// the case when the hardware does not support the vanilla
// mode.
//
// 07/18/97 BRH Added strings for new dialogs for loading and saving
// games.
//
// 07/21/97 JMI Added g_pszNoWeaponButHaveAmmo_s and g_pszNoWeapon_s.
//
// 07/28/97 JMI Added g_pszDispenserNoDispenseeTypeChosen.
//
// 07/30/97 BRH Added death messages that come up when the CDude dies.
//
// 08/05/97 JMI Added g_pszDontHaveExecuteWeapon_s and
// g_pszDontHaveSuicideWeapon_s.
// Also, made g_sLocalizeNumDeadMessages get its value based
// on the number of elements in g_apszDeathMessages[] so we
// don't have to worry about keeping that up to date.
//
// 08/12/97 JMI Added g_pszGenericBrowseFor_s_Title and
// g_pszGenericMustBeRelativePath_s.
//
// 08/17/97 JMI Got rid of m_szMessages and all message related functions
// and variables from CDude since we are now using the toolbar
// for dude status feedback to the user. This includes:
// MsgTypeInfo, m_lNextStatusUpdateTime, m_lMsgUpdateDoneTime,
// m_print, m_bClearedStatus, m_szMessages[], m_sDeadMsgNum,
// ms_amtfMessages[], ms_u8FontForeIndex, ms_u8FontBackIndex,
// ms_u8FontShadowIndex, DrawStatus(), StatusChange(),
// MessageChange(), Message(), UpdateFontColors(),
// CPowerUp::ms_apszPowerUpTypeNames[],
// CPowerUp::GetDescription(), and some strings and a string
// array in localize.*.
//
// 08/20/97 JMI Added g_pszDontDropYourselfMORON.
//
// 08/21/97 JMI Added g_pszDoofusCannotFindNavNet_EditMode_hu_hu and
// g_pszDoofusCannotFindNavNet_PlayMode_hu_hu.
//
// 08/25/97 JMI Added g_pszCannotOpenSoundFiles_s_s.
//
// 08/27/97 JMI Upgraded g_pszCannotOpenSoundFiles_s_s message.
//
// 09/09/97 MJR Changed g_pszBadBlueInit to include reference to DirectX.
//
// MJR Further changed g_pszBadBlueInit to include NT info.
//
// 09/11/97 JMI Added g_pszPlayOneRealmOnlyMessage.
//
// 09/18/97 JMI Added localization vars for menus.
//
// 09/18/97 JMI Added localization vars for SampleMaster categories.
//
// 09/19/97 JMI Columnized menu strings so it would be easier to copy
// and paste from here into Excel and back.
//
// 09/23/97 JMI Added localizable sections for menus for US/UK, FRENCH, &
// GERMAN.
//
// 09/24/97 BRH Made ini file based on LOCALE.
//
// 09/26/97 JMI Added French & German for Menus.
//
// 09/29/97 JMI Added g_pszNoSoundFiles.
//
// 09/30/97 JMI g_pszCantFindAssets was missing the word 'in' in the
// clause "you may need to change the '%s =' entry the file
// PREFS_FILE to specify where the APP_NAME files are
// located" between 'entry' and 'the file'.
//
// 09/30/97 BRH Changed postalUK.ini to postalEU.ini since it applies
// to all of the foreign versions.
//
// 10/07/97 JMI Changed PostalEU.ini to PostalUK.INI, PostalFr.INI, and
// PostalGr.INI.
//
// 10/07/97 BRH Added Score localizations to the file.
//
// 10/09/97 JMI Added g_pszVideoChangeDepthErrorUnderGDI_s and modified
// g_pszVideoChangeDepthError to only mention the part about
// Windows' help under Win32.
//
// 10/13/97 JMI Added g_pszControlsMenu_UseJoystick to localizable texts.
//
// 12/04/97 BRH Added g_pszStartSinglePlayerMenu_AddOn.
//
// 03/05/98 BRH Added g_pszWrongCD message that tells the player that they
// must have the original Postal CD in the drive in order to
// play the Postal Add on Pack.
//
// 09/27/99 JMI Added conditions for LOCALE == JAPAN.
//
// 10/07/99 JMI Added conditions for TARGET == JAPAN_ADD_ON and
// TARGET == SUPER_POSTAL.
//
// 11/28/99 MJR For JAPAN_ADD_ON changed the .ini file to "Postal.ini" so
// that the installation process is easier, since it can then
// just use the same .ini as the original version of Postal.
//
// 12/02/99 MJR Changed JAPAN_ADD_ON back to using a special .ini file.
//
// 02/04/00 MJR Added g_pszPromptForOriginalCD.
//
// 03/30/00 MJR Moved APP_NAME and PREFS_FILE macro definitions into
// CompileOptions.h.
// Switched to using new START_MENU_ADDON_ITEM macro to
// control whether there's an add-on item on the START menu.
// Added new POSTAL_PLUS text.
//
// 04/02/00 MJR Major changes to lots of error messages. The idea was to
// reduce the verbage and instead refer the user to the
// help files for details.
//
// 04/03/00 MJR New text for POSTAL_PLUS start menu items.
//
// 06/25/01 MJR Added some new messages.
//
// 05/07/03 MJR Changed error messages that said "CD-ROM drive" to say
// "drive it was installed from". This should help clear
// up confusion for people that have multiple drives such
// as DVD, CD-R, etc.
//
////////////////////////////////////////////////////////////////////////////////
#define LOCALIZE_CPP
#include "RSPiX.h"
#include "localize.h"
#include "CompileOptions.h"
#include "realm.h"
////////////////////////////////////////////////////////////////////////////////
// Macros/types/etc.
////////////////////////////////////////////////////////////////////////////////
// Determines the number of elements in the passed array at compile time.
#define NUM_ELEMENTS(a) (sizeof(a) / sizeof(a[0]) )
// Message used in a few places
#define CD_DRIVE_CHANGE_MESSAGE "If you added (or removed) a drive to your system after the game was installed, try putting the CD in another drive (if you have more than one) or re-install the game."
#define ADVANCED_USERS_CHANGE_PATH "For advanced users: Instead of re-installing you can edit the '" PREFS_FILE"' file and change the '%s' entry in the [%s] section to the correct drive letter."
////////////////////////////////////////////////////////////////////////////////
// Variables/data
////////////////////////////////////////////////////////////////////////////////
extern char g_pszAppName[] = APP_NAME;
extern char g_pszCriticalErrorTitle[] = APP_NAME;
extern char g_pszBadBlueInit[] =
"A system incompatibility has been detected."
"\n\n"
#ifdef WIN32
"Updating your video and/or sound drivers may solve this problem."
"\n\n"
#endif
"See code R100 in " APP_NAME " Help for more information.";
extern char g_pszVideoModeError[] =
"The required display settings (%s) were reported by the system as being available, "
"but could not be set properly."
"\n\n"
"An updated video driver may solve this problem. "
"Contact your video card vendor for more help."
"\n\n"
"See code R101 in " APP_NAME " Help for more information.";
extern char g_pszVideoChangeDepthError[] =
"The required display settings (%s) could not be set properly."
"\n\n"
"The required number of colors is different from your current settings."
"\n\n"
"Change your color settings before running " APP_NAME "."
"\n\n"
"See code R102 in " APP_NAME " Help for more information.";
extern char g_pszVideoDepthError[] =
"The required display settings (%s) could not be set properly."
"\n\n"
"Your video card does not appear to support this number of colors."
"\n\n"
"An updated video driver could solve this, but it is more likely due to limitations "
"of your video card hardware. Contact your video card vendor for more help."
"\n\n"
"See code R103 in " APP_NAME " Help for more information.";
extern char g_pszVideoResolutionError[] =
"The required display settings (%s) could not be set properly."
"\n\n"
"Your video card does not appear to support this pixel area (resolution) with this "
"number of colors."
"\n\n"
"An updated video driver could solve this, but it is more likely due to limitations "
"of your video card hardware. Contact your video card vendor for more help."
"\n\n"
"See code R104 in " APP_NAME " Help for more information.";
extern char g_pszVideoPagesError[] =
"The required display settings (%s) could not be set properly."
"\n\n"
"Your video card does not appear to support this number of pages at these settings."
"\n\n"
"An updated video driver could solve this, but it is more likely due to limitations "
"of your video card hardware. Contact your video card vendor for more help."
"\n\n"
"See code R105 in " APP_NAME " Help for more information.";
extern char g_pszVideoChangeDepthErrorUnderGDI_s[] =
"The required display settings (%s) could not be set properly because you are not "
"using DirectX."
"\n\n"
"You can manually change your color settings before running " APP_NAME ", but "
"we recommend using DirectX, which allows " APP_NAME " to use any color depth."
"\n\n"
"See code R106 in " APP_NAME " Help for more information.";
extern char g_pszAudioModeGeneralError_s[] =
"The required audio mode (%s) could not be set properly."
"\n\n"
"If the audio device is or was being used, it may be available once the current "
"sound is done. Choose 'Retry' if you want to try again."
"\n\n"
"If there is no audio device or it does not support the required mode, you can "
"choose 'Ignore' to continue without audio."
"\n\n"
"If you want to stop the program, choose 'Abort'.";
extern char g_pszAudioModeInUseError_s[] =
"The required audio mode (%s) could not be set properly."
"\n\n"
"The audio device is or was being used, it may be available once the current "
"sound is done. Choose 'Retry' if you want to try again."
"\n\n"
"If you would like to continue without sound from " APP_NAME ", you can "
"choose 'Ignore'."
"\n\n"
"If you want to stop the program, choose 'Abort'.";
extern char g_pszAudioModeNoDeviceError_s[] =
"The required audio mode (%s) could not be set properly."
"\n\n"
"There is no audio device or the driver is incorrectly installed or missing."
"\n\n"
"If you want to continue without audio, choose 'Yes'."
"\n"
"If you want to stop the program, choose 'No'."
"\n\n"
"Would you like to continue without audio?";
extern char g_pszAudioModeNotSupportedError_s[] =
"The audio mode (%s) could not be set properly."
"\n\n"
"The audio device does not support this mode."
"\n\n"
"If you want to stop the program, choose 'Abort'."
"\n\n"
"If you want to try another simpler mode that might work "
"choose 'Retry'."
"\n\n"
"If you want to continue without audio, choose 'Ignore'.";
extern char g_pszAudioVanillaModeNotSupportedError_s[] =
"The audio mode (%s) could not be set properly."
"\n\n"
"The audio device does not support this mode."
"\n\n"
"If you want to continue without audio, choose 'Yes'."
"\n"
"If you want to stop the program, choose 'No'."
"\n\n"
"Would you like to continue without audio?";
extern char g_pszPrefFileName[] = PREFS_FILE;
extern char g_pszPrefOpenError[] =
"The preference file '" PREFS_FILE "' could not be opened."
"\n\n"
"See code A100 in " APP_NAME " Help for more information.";
extern char g_pszPrefReadError[] =
"An error occurred while reading from '" PREFS_FILE "'."
"\n\n"
"See code A101 in " APP_NAME " Help for more information.";
extern char g_pszPrefWriteError[] =
"An error occurred while saving to '" PREFS_FILE "'."
"\n\n"
"Any settings that you may have made will not be saved."
"\n\n"
"See code A102 in " APP_NAME " Help for more information.";
extern char g_pszPrefReadOnly[] =
"The file '" PREFS_FILE "' is set to 'READ-ONLY'."
"\n\n"
"Any settings that you may have made will not be saved."
"\n\n"
"See code A103 in " APP_NAME " Help for more information.";
extern char g_pszTitleError[] =
"An error occurred during the title sequence."
"\n\n"
"See code A104 in " APP_NAME " Help for more information.";
extern char g_pszCantFindAssets[] =
"One or more required files could not be found."
"\n\n"
CD_DRIVE_CHANGE_MESSAGE
"\n\n"
"See code A105 in " APP_NAME " Help for more information.";
extern char g_pszWrongCD[] =
"The original Postal CD is not in the drive it was installed from."
"\n\n"
"The CD in the drive does not appear to be the original Postal CD."
"\n\n"
"Please insert the original Postal CD and click on Retry.";
extern char g_pszPromptForOriginalCD[] =
"Please make sure the original Postal CD\n"
"is in the drive it was installed from.";
extern char g_pszNotOnCDROM[] =
"Please insert the " APP_NAME " CD into the drive you used to install it."
"\n\n"
CD_DRIVE_CHANGE_MESSAGE
"\n\n"
"See code A106 in " APP_NAME " Help for more information.";
extern char g_pszGeneralError[] =
"An error has occurred. This application cannot proceed."
"\n\n"
"See code A107 in " APP_NAME " Help for more information.";
extern char g_pszBadPath_s_s[] =
"One or more file locations for the game are invalid."
"\n\n"
CD_DRIVE_CHANGE_MESSAGE
"\n\n"
ADVANCED_USERS_CHANGE_PATH
"\n\n"
"See code A108 in " APP_NAME " Help for more information.";
extern char g_pszBadCDPath_s_s[] =
"Make sure the " APP_NAME " CD is in the drive you used to install it."
"\n\n"
CD_DRIVE_CHANGE_MESSAGE
"\n\n"
ADVANCED_USERS_CHANGE_PATH
"\n\n"
"See code A108 in " APP_NAME " Help for more information.";
extern char g_pszCannotOpenSoundFiles_s_s[] =
"Your audio hardware supports %s, but the " APP_NAME " file(s) associated with that "
"sound format were not installed."
"\n\n"
"See code A109 in " APP_NAME " Help for more information.";
extern char g_pszNoSoundFiles[] =
"There is no sound file installed."
"\n\n"
"Please run " APP_NAME " Setup and choose a sound option."
"\n\n"
"See code A110 in " APP_NAME " Help for more information.";
extern char g_pszAssetsMissingError[] =
"One or more files needed by the editor could not be found.";
extern char g_pszSaveFileQuery[] =
"Save file before this operation?";
extern char g_pszSaveDemoTitle[] =
"Save Demo";
extern char g_pszSaveGameTitle[] =
"Choose a name for your saved game";
extern char g_pszSaveGameErrorTitle[] =
"Error saving file";
extern char g_pszSaveGameErrorText[] =
"Your game could not be saved. Check to see if your disk is full.";
extern char g_pszLoadGameTitle[] =
"Choose the game you wish to restore";
extern char g_pszFileOpenError_s[] =
"Unable to open the file '%s'."
"\n\n"
"The file may be missing or corrupted, or you may not have permission to open it.";
extern char g_pszFileReadError_s[] =
"An error has occurred while reading from the file '%s'."
"\n\n"
"The file may be corrupted, or you may not have permission to access it.";
extern char g_pszFileWriteError_s[] =
"An error has occurred while writing to the file '%s'."
"\n\n"
"The file may be corrupted, or you may not have permission to write to it.";
extern char g_pszDispenserNoDispenseeTypeChosen[] =
"You must choose a dispensee type or Cancel.";
extern char g_pszGenericBrowseFor_s_Title[] =
"Browse for %s";
extern char g_pszGenericMustBeRelativePath_s[] =
"You must choose a file below path \"%s\".\n";
extern char g_pszDontDropYourselfMORON[] =
"You don't really want to drop yourself!!\n";
extern char g_pszDoofusCannotFindNavNet_EditMode_hu_hu[] =
"Doofus with ID %hd found that ID %hd (its NavNet ID) was not "
"a NavNet.\n";
extern char g_pszDoofusCannotFindNavNet_PlayMode_hu_hu[] =
"A character with ID %hd was unable to locate its NavNet with "
"ID %hd.\n";
extern char g_pszPlayOneRealmOnlyMessage[] =
"This version of " APP_NAME " only allows you to play the"
"\n"
"levels that it came with."
"\n";
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////// Misc ///////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
// NOTICE: These aren't currently available in any language other than english!
#if ENGLISH_LOCALE
extern char g_pszEditorDisabled[] = "The editor is not available in this demo version.";
extern char g_pszMultiplayerDisabled[] = "Multiplayer is not available in this demo version.";
extern char g_pszBuy[] = "You can order the full version of the game from"
"\n\n"
" www.gopostal.com"
"\n\n"
"You know you want it... what are you waiting for?!";
#elif LOCALE == GERMAN
#elif LOCALE == FRENCH
#endif
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////// Menus ///////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
#if ENGLISH_LOCALE ////////////////////////////////////////////////////////////
extern char g_pszMainMenu_Title[] = MAIN_MENU_TITLE;
extern char g_pszMainMenu_Start[] = "START";
extern char g_pszMainMenu_Options[] = "OPTIONS";
extern char g_pszMainMenu_Editor[] = "EDITOR";
extern char g_pszMainMenu_Buy[] = "ORDER INFO";
extern char g_pszMainMenu_Exit[] = "EXIT";
extern char g_pszVerifyExitMenu_Title[] = "REALLY EXIT?";
extern char g_pszVerifyExitMenu_Yes[] = "YES";
extern char g_pszVerifyExitMenu_No[] = "NO";
extern char g_pszVerifyQuitMenu_Title[] = "REALLY QUIT?";
extern char g_pszVerifyQuitMenu_Yes[] = "YES";
extern char g_pszVerifyQuitMenu_No[] = "NO";
extern char g_pszGameMenu_Title[] = "GAME";
extern char g_pszGameMenu_Continue[] = "CONTINUE";
extern char g_pszGameMenu_Save[] = "SAVE";
extern char g_pszGameMenu_Options[] = "OPTIONS";
extern char g_pszGameMenu_Quit[] = "QUIT";
extern char g_pszEditorMenu_Title[] = "EDITOR";
extern char g_pszEditorMenu_Continue[] = "CONTINUE";
extern char g_pszEditorMenu_Options[] = "OPTIONS";
extern char g_pszEditorMenu_Quit[] = "QUIT";
extern char g_pszOptionsMenu_Title[] = "OPTIONS";
extern char g_pszOptionsMenu_Video[] = "VIDEO";
extern char g_pszOptionsMenu_Audio[] = "AUDIO";
extern char g_pszOptionsMenu_Controls[] = "CONTROLS";
extern char g_pszOptionsMenu_Multiplayer[] = "MULTIPLAYER";
extern char g_pszOptionsMenu_Performance[] = "PERFORMANCE";
extern char g_pszOptionsMenu_Difficulty[] = "DIFFICULTY";
extern char g_pszOptionsMenu_Crosshair[] = "CROSSHAIR";
#ifdef KID_FRIENDLY_OPTION
extern char g_pszOptionsMenu_KidMode[] = "KID MODE";
#endif
extern char g_pszDifficultyMenu_Title[] = "DIFFICULTY";
extern char g_pszDifficultyMenu_SetDifficulty[] = "SET";
extern char g_pszOrganMenu_Title[] = "SOUND TEST";
extern char g_pszOrganMenu_SpecialKeysHeading[] = "SPECIAL KEYS";
extern char g_pszOrganMenu_NumericKeysFunction[] = " 0 thru 9 - PLAY A SOUND";
extern char g_pszOrganMenu_AlphaKeysFunction[] = " A thru Z - PLAY A SOUND";
extern char g_pszOrganMenu_TabKeyFunction[] = " TAB - NEXT SET OF SOUNDS";
extern char g_pszOrganMenu_Exit[] = "EXIT";
extern char g_pszAudioMenu_Title[] = "AUDIO";
extern char g_pszAudioMenu_Mixer[] = "MIXER";
extern char g_pszAudioMenu_SoundTest[] = "SOUND TEST";
extern char g_pszAudioMenu_Language[] = "LANGUAGE";
extern char g_pszAudioMenu_PainFrequency[] = "PAIN FREQ.";
extern char g_pszAudioMenu_English[] = "English";
extern char g_pszAudioMenu_Japanese[] = "Japanese";
extern char g_pszVideoMenu_Title[] = "VIDEO";
extern char g_pszVideoMenu_Gamma[] = "GAMMA";
extern char g_pszControlsMenu_Title[] = "CONTROLS";
extern char g_pszControlsMenu_KeyboardSetup[] = "KEYBOARD SETUP";
extern char g_pszControlsMenu_MouseSetup[] = "MOUSE SETUP";
extern char g_pszControlsMenu_JoystickSetup[] = "X CONTROLLER SETUP";
extern char g_pszControlsMenu_TurningSpeeds[] = "TURNING SPEEDS";
extern char g_pszControlsMenu_UseMouse[] = "USE MOUSE";
extern char g_pszControlsMenu_ClassicMouse[] = "CLASSIC MOUSE";
extern char g_pszControlsMenu_HorizMouseSensitivity[] = "HORIZ MOUSE SENS.";
extern char g_pszControlsMenu_VertMouseSensitivity[] = "VERT MOUSE SENS.";
extern char g_pszKeyboardSetupMenu_Title[] = "KEYBOARD SETUP";
extern char g_pszMouseSetupMenu_Title[] = "MOUSE SETUP";
extern char g_pszJoystickSetupMenu_Title[] = "X CONTROLLER SETUP";
extern char g_pszPerformanceMenu_Title[] = "PERFORMANCE";
extern char g_pszPerformanceMenu_Transparency[] = "TRANSPARENCY";
extern char g_pszPerformanceMenu_3dLighting[] = "3D LIGHTING";
extern char g_pszPerformanceMenu_Particles[] = "PARTICLES";
extern char g_pszPerformanceMenu_DynamicVolume[] = "DYNAMIC VOLUME";
extern char g_pszPerformanceMenu_AmbientSounds[] = "AMBIENT SOUNDS";
extern char g_pszRotationSetupMenu_Title[] = "TURNING SPEEDS ";
extern char g_pszRotationSetupMenu_RunningSlow[] = "RUNNING (SLOW)";
extern char g_pszRotationSetupMenu_RunningFast[] = "RUNNING (FAST)";
extern char g_pszRotationSetupMenu_StandingSlow[] = "STANDING (SLOW)";
extern char g_pszRotationSetupMenu_StandingFast[] = "STANDING (FAST)";
extern char g_pszRotationSetupMenu_TapDegrees[] = "TAP DEGREES";
extern char g_pszRotationSetupMenu_RestoreDefaults[] = "RESTORE DEFAULTS";
extern char g_pszRotationSetupMenu_RestoreDefaultsOld[] = "RESTORE OLD DEFAULTS";
extern char g_pszVolumesMenu_Title[] = "AUDIO MIXER";
extern char g_pszStartGameMenu_Title[] = "START GAME";
extern char g_pszStartGameMenu_SinglePlayer[] = "SINGLE PLAYER";
extern char g_pszStartGameMenu_Multiplayer[] = "MULTIPLAYER";
extern char g_pszStartGameMenu_Demo[] = "DEMO";
extern char g_pszStartSinglePlayerMenu_Title[] = "SINGLE PLAYER";
#if defined(START_MENU_ADDON_ITEM)
#if TARGET == JAPAN_ADD_ON
extern char g_pszStartSinglePlayerMenu_New[] = "GO POSTAL IN THE USA";
extern char g_pszStartSinglePlayerMenu_AddOn[] = "GO POSTAL IN JAPAN";
#elif TARGET == POSTAL_PLUS
extern char g_pszStartSinglePlayerMenu_New[] = "NEW GAME (ALL LEVELS)";
extern char g_pszStartSinglePlayerMenu_AddOn[] = "SPECIAL DELIVERY LEVELS";
#elif TARGET == POSTAL_2015
extern char g_pszStartSinglePlayerMenu_NewCampaign[] = "NEW CAMPAIGN";
extern char g_pszStartSinglePlayerMenu_New[] = "POSTAL";
extern char g_pszStartSinglePlayerMenu_AddOn[] = "SPECIAL DELIVERY";
extern char g_pszStartSinglePlayerMenu_AddOn2[] = "SUPER POSTAL";
extern char g_pszStartSinglePlayerMenu_AllLevels[] = "EXCESS POSTAGE (ALL LEVELS)";
#else
#error Strings must be customized for current TARGET
#endif
#else
#if TARGET == SUPER_POSTAL
extern char g_pszStartSinglePlayerMenu_New[] = "GO POSTAL ALL OVER";
#elif (TARGET == POSTAL_PLUS || TARGET == POSTAL_2015)
extern char g_pszStartSinglePlayerMenu_New[] = "NEW GAME";
#else
#error Strings must be customized for current TARGET
#endif
#endif
extern char g_pszStartSinglePlayerMenu_LoadLevel[] = "LEVEL SELECT";
extern char g_pszStartSinglePlayerMenu_LoadGame[] = "LOAD GAME";
extern char g_pszStartSinglePlayerMenu_Challenge[] = "GAUNTLET CHALLENGE";
extern char g_pszStartChallengeMenu_Title[] = "CHALLENGE";
extern char g_pszStartChallengeMenu_Gauntlet[] = "THE GAUNTLET";
extern char g_pszStartChallengeMenu_Timed[] = "TIMED";
extern char g_pszStartChallengeMenu_Goal[] = "GOAL";
extern char g_pszStartChallengeMenu_Flag[] = "FLAG";
extern char g_pszStartChallengeMenu_CheckPoint[] = "CHECKPOINT";
extern char g_pszStartMultiplayerMenu_Title[] = "MULTIPLAYER";
extern char g_pszStartMultiplayerMenu_Join[] = "JOIN GAME";
extern char g_pszStartMultiplayerMenu_Host[] = "HOST GAME";
extern char g_pszStartMultiplayerMenu_Options[] = "OPTIONS";
extern char g_pszJoinGameMenu_Title[] = "JOIN GAME";
extern char g_pszJoinGameMenu_Browse[] = "BROWSE (LAN only)";
extern char g_pszJoinGameMenu_ConnectTo[] = "CONNECT TO";
extern char g_pszHostGameMenu_Title[] = "HOST GAME";
extern char g_pszHostGameMenu_Start[] = "START";
extern char g_pszStartDemoMenu_Title[] = "DEMO";
extern char g_pszStartDemoMenu_Browse[] = "BROWSE";
extern char g_pszStartDemoMenu_Play[] = "PLAY";
extern char g_pszStartDemoMenu_Record[] = "RECORD";
extern char g_pszStartDemoMenu_ConSite[] = "CONSTRUCTION";
extern char g_pszStartDemoMenu_Home[] = "HOME";
extern char g_pszStartDemoMenu_Bridge[] = "BRIDGE";
extern char g_pszMultiplayerSetupMenu_Title[] = "MULTIPLAYER";
extern char g_pszMultiplayerSetupMenu_Name[] = "NAME";
extern char g_pszMultiplayerSetupMenu_Color[] = "COAT COLOR";
extern char g_pszMultiplayerSetupMenu_Protocol[] = "PROTOCOL";
extern char g_pszMultiplayerSetupMenu_Connection[] = "CONNECTION";
// Keep at end -- was not in original localizable text.
extern char g_pszControlsMenu_UseJoystick[] = "USE X CONTROLLER";
#elif LOCALE == GERMAN ///////////////////////////////////////////////////////
extern char g_pszMainMenu_Title[] = MAIN_MENU_TITLE;
extern char g_pszMainMenu_Start[] = "SPIEL STARTEN";
extern char g_pszMainMenu_Options[] = "OPTIONEN";
extern char g_pszMainMenu_Editor[] = "EDITOR";
extern char g_pszMainMenu_Buy[] = "ORDER INFO";
extern char g_pszMainMenu_Exit[] = "BEENDEN";
extern char g_pszVerifyExitMenu_Title[] = "WIRKLICH BEENDEN?";
extern char g_pszVerifyExitMenu_Yes[] = "JA";
extern char g_pszVerifyExitMenu_No[] = "NEIN";
extern char g_pszVerifyQuitMenu_Title[] = "WIRKLICH BEENDEN?";
extern char g_pszVerifyQuitMenu_Yes[] = "JA";
extern char g_pszVerifyQuitMenu_No[] = "NEIN";
extern char g_pszGameMenu_Title[] = "SPIEL";
extern char g_pszGameMenu_Continue[] = "WEITER";
extern char g_pszGameMenu_Save[] = "SPEICHERN";
extern char g_pszGameMenu_Options[] = "OPTIONEN";
extern char g_pszGameMenu_Quit[] = "BEENDEN";
extern char g_pszEditorMenu_Title[] = "EDITOR";
extern char g_pszEditorMenu_Continue[] = "WEITER";
extern char g_pszEditorMenu_Options[] = "OPTIONEN";
extern char g_pszEditorMenu_Quit[] = "BEENDEN";
extern char g_pszOptionsMenu_Title[] = "OPTIONEN";
extern char g_pszOptionsMenu_Video[] = "VIDEO";
extern char g_pszOptionsMenu_Audio[] = "AUDIO";
extern char g_pszOptionsMenu_Controls[] = "STEUERUNG";
extern char g_pszOptionsMenu_Multiplayer[] = "MEHRERE SPIELER";
extern char g_pszOptionsMenu_Performance[] = "LEISTUNG";
extern char g_pszOptionsMenu_Difficulty[] = "SCHWIERIGKEIT";
#ifdef KID_FRIENDLY_OPTION
extern char g_pszOptionsMenu_KidMode[] = "KID-MODUS"; // FIXME: Google translated, again. But does it matter this time?
#endif
extern char g_pszDifficultyMenu_Title[] = "SCHWIERIGKEIT";
extern char g_pszDifficultyMenu_SetDifficulty[] = "";
extern char g_pszOrganMenu_Title[] = "SOUND-TEST";
extern char g_pszOrganMenu_SpecialKeysHeading[] = "SONDERTASTEN";
extern char g_pszOrganMenu_NumericKeysFunction[] = "0 BIS 9 - SOUND ABSPIELEN";
extern char g_pszOrganMenu_AlphaKeysFunction[] = "A BIS Z - SOUND ABSPIELEN";
extern char g_pszOrganMenu_TabKeyFunction[] = "TAB - NACHSTE SOUND-REIHE";
extern char g_pszOrganMenu_Exit[] = "BEENDEN";
extern char g_pszAudioMenu_Title[] = "AUDIO";
extern char g_pszAudioMenu_Mixer[] = "MISCHPULT";
extern char g_pszAudioMenu_SoundTest[] = "SOUND-TEST";
extern char g_pszAudioMenu_Language[] = "SPRACHE"; // Google Translated, but almost certainly right
extern char g_pszAudioMenu_English[] = "Englisch"; // Google Translated
extern char g_pszAudioMenu_Japanese[] = "Japanisch"; // Google Translated
extern char g_pszAudioMenu_PainFrequency[] = "SCHMERZFREQUENZ"; // Google Translated
extern char g_pszVideoMenu_Title[] = "VIDEO";
extern char g_pszVideoMenu_Gamma[] = "GAMMA";
extern char g_pszControlsMenu_Title[] = "STEUERUNG";
extern char g_pszControlsMenu_KeyboardSetup[] = "TASTATUR-SETUP";
extern char g_pszControlsMenu_MouseSetup[] = "MAUS-SETUP";
extern char g_pszControlsMenu_JoystickSetup[] = "JOYSTICK-SETUP";
extern char g_pszControlsMenu_TurningSpeeds[] = "DREHGESCHWINDIGKEITEN";
extern char g_pszControlsMenu_UseMouse[] = "MAUS VERWENDEN";
extern char g_pszControlsMenu_ClassicMouse[] = "KLASSISCHE MAUSSTEUERUNG";
extern char g_pszControlsMenu_HorizMouseSensitivity[] = "HORIZONTALE MAUSBEWEGUNG";
extern char g_pszControlsMenu_VertMouseSensitivity[] = "VERTIKALE MAUSBEWEGUNG";
extern char g_pszKeyboardSetupMenu_Title[] = "TASTATUR-SETUP";
extern char g_pszMouseSetupMenu_Title[] = "MAUS-SETUP";
extern char g_pszJoystickSetupMenu_Title[] = "JOYSTICK-SETUP";
extern char g_pszPerformanceMenu_Title[] = "LEISTUNG";
extern char g_pszPerformanceMenu_Transparency[] = "TRANSPARENZ";
extern char g_pszPerformanceMenu_3dLighting[] = "3D-BELEUCHTUNG";
extern char g_pszPerformanceMenu_Particles[] = "PARTIKEL";
extern char g_pszPerformanceMenu_DynamicVolume[] = "DYNAMISCHE LAUTSTARKE";
extern char g_pszPerformanceMenu_AmbientSounds[] = "UMGEBENDE KLANGE";
extern char g_pszRotationSetupMenu_Title[] = "DREHGESCHWINDIGKEITEN";
extern char g_pszRotationSetupMenu_RunningSlow[] = "LAUFT (LANGSAM)";
extern char g_pszRotationSetupMenu_RunningFast[] = "LAUFT (SCHNELL)";
extern char g_pszRotationSetupMenu_StandingSlow[] = "STEHT (LANGSAM)";
extern char g_pszRotationSetupMenu_StandingFast[] = "STEHT (SCHNELL)";
extern char g_pszRotationSetupMenu_TapDegrees[] = "TIPPEN GRADE";
extern char g_pszRotationSetupMenu_RestoreDefaults[] = "ZURUCKSETZEN";
extern char g_pszVolumesMenu_Title[] = "AUDIO-MISCHPULT";
extern char g_pszStartGameMenu_Title[] = "SPIEL STARTEN";
extern char g_pszStartGameMenu_SinglePlayer[] = "EINZELSPIELER";
extern char g_pszStartGameMenu_Multiplayer[] = "MEHRERE SPIELER";
extern char g_pszStartGameMenu_Demo[] = "DEMO";
extern char g_pszStartSinglePlayerMenu_Title[] = "EINZELSPIELER";
extern char g_pszStartSinglePlayerMenu_NewCampaign[] = "NEUE KAMPAGNE"; // FIXME: Google Translated, probably wrong
extern char g_pszStartSinglePlayerMenu_New[] = "ORIGINAL SPIEL"; // Mike's lame translation
extern char g_pszStartSinglePlayerMenu_AddOn[] = "ADD-ON SPIEL" // Mike's lame translation
#if TARGET == POSTAL_2015
extern char g_pszStartSinglePlayerMenu_AddOn2[] = "SUPER POSTAL";
extern char g_pszStartSinglePlayerMenu_AllLevels[] = "ALLE EBENEN"; // FIXME: Google Translated, possibly wrong
#endif
extern char g_pszStartSinglePlayerMenu_LoadLevel[] = "EBENE LADEN";
extern char g_pszStartSinglePlayerMenu_LoadGame[] = "SPIEL LADEN";
extern char g_pszStartSinglePlayerMenu_Challenge[] = "HERAUSFORDERUNG";
extern char g_pszStartChallengeMenu_Title[] = "HERAUSFORDERUNG";
extern char g_pszStartChallengeMenu_Gauntlet[] = "SPIESSRUTEN";
extern char g_pszStartChallengeMenu_Timed[] = "ZEIT NEHMEN";
extern char g_pszStartChallengeMenu_Goal[] = "ZIEL";
extern char g_pszStartChallengeMenu_Flag[] = "FLAGGE";
extern char g_pszStartChallengeMenu_CheckPoint[] = "CHECKPOINT";
extern char g_pszStartMultiplayerMenu_Title[] = "MEHRERE SPIELER";
extern char g_pszStartMultiplayerMenu_Join[] = "MITSPIELEN";
extern char g_pszStartMultiplayerMenu_Host[] = "HOST-SPIEL";
extern char g_pszStartMultiplayerMenu_Options[] = "OPTIONEN";
extern char g_pszJoinGameMenu_Title[] = "MITSPIELEN";
extern char g_pszJoinGameMenu_Browse[] = "DURCHSUCHEN";
extern char g_pszJoinGameMenu_ConnectTo[] = "VERBINDEN MIT";
extern char g_pszHostGameMenu_Title[] = "HOST-SPIEL";
extern char g_pszHostGameMenu_Start[] = "START";
extern char g_pszStartDemoMenu_Title[] = "DEMO";
extern char g_pszStartDemoMenu_Browse[] = "DURCHSUCHEN";
extern char g_pszStartDemoMenu_Play[] = "ABSPIELEN";
extern char g_pszStartDemoMenu_Record[] = "AUSZEICHNEN";
extern char g_pszStartDemoMenu_ConSite[] = "DIE BAUSTELLE"; // FIXME: Google Translated
extern char g_pszStartDemoMenu_Home[] = "ZUHAUSE"; // FIXME: Google Translated
extern char g_pszStartDemoMenu_Bridge[] = "DIE BRÜCKE"; // FIXME: Google Translated
extern char g_pszMultiplayerSetupMenu_Title[] = "MEHRERE SPIELER";
extern char g_pszMultiplayerSetupMenu_Name[] = "NAME";
extern char g_pszMultiplayerSetupMenu_Color[] = "FARBE";
extern char g_pszMultiplayerSetupMenu_Protocol[] = "PROTOKOLL";
extern char g_pszMultiplayerSetupMenu_Connection[] = "VERBINDUNG";
// Keep at end -- was not in original localizable text.
extern char g_pszControlsMenu_UseJoystick[] = "JOYSTICK VERWENDEN";
#elif LOCALE == FRENCH ///////////////////////////////////////////////////////
extern char g_pszMainMenu_Title[] = MAIN_MENU_TITLE;
extern char g_pszMainMenu_Start[] = "DEMARRER";
extern char g_pszMainMenu_Options[] = "OPTIONS";
extern char g_pszMainMenu_Editor[] = "EDITEUR";
extern char g_pszMainMenu_Buy[] = "ORDER INFO";
extern char g_pszMainMenu_Exit[] = "QUITTER";
extern char g_pszVerifyExitMenu_Title[] = "VRAIMENT SORTIR ?";
extern char g_pszVerifyExitMenu_Yes[] = "OUI";
extern char g_pszVerifyExitMenu_No[] = "NON";
extern char g_pszVerifyQuitMenu_Title[] = "VRAIMENT QUITTER ?";
extern char g_pszVerifyQuitMenu_Yes[] = "OUI";
extern char g_pszVerifyQuitMenu_No[] = "NON";
extern char g_pszGameMenu_Title[] = "JEU";
extern char g_pszGameMenu_Continue[] = "CONTINUER";
extern char g_pszGameMenu_Save[] = "ENREGISTRER";
extern char g_pszGameMenu_Options[] = "OPTIONS";
extern char g_pszGameMenu_Quit[] = "QUITTER";
extern char g_pszEditorMenu_Title[] = "EDITEUR";
extern char g_pszEditorMenu_Continue[] = "CONTINUER";
extern char g_pszEditorMenu_Options[] = "OPTIONS";
extern char g_pszEditorMenu_Quit[] = "QUITTER";
extern char g_pszOptionsMenu_Title[] = "OPTIONS";
extern char g_pszOptionsMenu_Video[] = "VIDEO";
extern char g_pszOptionsMenu_Audio[] = "AUDIO";
extern char g_pszOptionsMenu_Controls[] = "COMMANDES";
extern char g_pszOptionsMenu_Multiplayer[] = "JOUEURS MULTIPLES";
extern char g_pszOptionsMenu_Performance[] = "PERFORMANCE";
extern char g_pszOptionsMenu_Difficulty[] = "DIFFICULTE";
#ifdef KID_FRIENDLY_OPTION
extern char g_pszOptionsMenu_KidMode[] = "MODE ENFANT"; // FIXME: Google Translated, again.
#endif
extern char g_pszDifficultyMenu_Title[] = "DIFFICULTE";
extern char g_pszDifficultyMenu_SetDifficulty[] = "DEFINIR";
extern char g_pszOrganMenu_Title[] = "TEST SONORE";
extern char g_pszOrganMenu_SpecialKeysHeading[] = "TOUCHES SPECIALES";
extern char g_pszOrganMenu_NumericKeysFunction[] = "0 A 9 - JOUER UN SON";
extern char g_pszOrganMenu_AlphaKeysFunction[] = "A A Z - JOUER UN SON";
extern char g_pszOrganMenu_TabKeyFunction[] = "TAB - PROCHAIN JEU DE SONS";
extern char g_pszOrganMenu_Exit[] = "QUITTER";
extern char g_pszAudioMenu_Title[] = "AUDIO";
extern char g_pszAudioMenu_Mixer[] = "MIXER";
extern char g_pszAudioMenu_SoundTest[] = "TEST SONORE";
extern char g_pszAudioMenu_Language[] = "LA LANGUE"; // Google Translated
extern char g_pszAudioMenu_English[] = "Anglais"; // Google Translated
extern char g_pszAudioMenu_Japanese[] = "Japonais"; // Google Translated
extern char g_pszAudioMenu_PainFrequency[] = "FREQ. DOULER"; // Google Translated & I removed "de la" even though I don't know French grammar
extern char g_pszVideoMenu_Title[] = "VIDEO";
extern char g_pszVideoMenu_Gamma[] = "GAMMA";
extern char g_pszControlsMenu_Title[] = "COMMANDES";
extern char g_pszControlsMenu_KeyboardSetup[] = "CONFIGURATION CLAVIER";
extern char g_pszControlsMenu_MouseSetup[] = "CONFIGURATION SOURIS";
extern char g_pszControlsMenu_JoystickSetup[] = "CONFIGURATION DE LA MANETTE DE JEU";
extern char g_pszControlsMenu_TurningSpeeds[] = "VITESSES DE ROTATION";
extern char g_pszControlsMenu_UseMouse[] = "UTILISER LA SOURIS";
extern char g_pszControlsMenu_UseClassicMouse[] = "Souris classique"; //Google Translated
extern char g_pszControlsMenu_HorizMouseSensitivity[] = "SOURIS HORIZONTALE";
extern char g_pszControlsMenu_VertMouseSensitivity[] = "SOURIS VERTICALE";
extern char g_pszKeyboardSetupMenu_Title[] = "CONFIGURATION CLAVIER";
extern char g_pszMouseSetupMenu_Title[] = "CONFIGURATION SOURIS";
extern char g_pszJoystickSetupMenu_Title[] = "CONFIGURATION DE LA MANETTE DE JEU";
extern char g_pszPerformanceMenu_Title[] = "PERFORMANCE";
extern char g_pszPerformanceMenu_Transparency[] = "TRANSPARENCE";
extern char g_pszPerformanceMenu_3dLighting[] = "ECLAIRAGE 3D";
extern char g_pszPerformanceMenu_Particles[] = "PARTICULES";
extern char g_pszPerformanceMenu_DynamicVolume[] = "VOLUME DYNAMIQUE";
extern char g_pszPerformanceMenu_AmbientSounds[] = "SONS AMBIANTS";
extern char g_pszRotationSetupMenu_Title[] = "VITESSES DE ROTATION";
extern char g_pszRotationSetupMenu_RunningSlow[] = "COURIR (LENTEMENT)";
extern char g_pszRotationSetupMenu_RunningFast[] = "COURIR (VITE)";
extern char g_pszRotationSetupMenu_StandingSlow[] = "SE TENIR DEBOUT (LENTEMENT)";
extern char g_pszRotationSetupMenu_StandingFast[] = "SE TENIR DEBOUT (VITE)";
extern char g_pszRotationSetupMenu_TapDegrees[] = "DEGRES DE FRAPPE";
extern char g_pszRotationSetupMenu_RestoreDefaults[] = "DEFAUT";
extern char g_pszVolumesMenu_Title[] = "MIXER AUDIO";
extern char g_pszStartGameMenu_Title[] = "DEMARRE LE JEU";
extern char g_pszStartGameMenu_SinglePlayer[] = "JOUEUR UNIQUE";
extern char g_pszStartGameMenu_Multiplayer[] = "JOUEURS MULTIPLES";
extern char g_pszStartGameMenu_Demo[] = "DEMO";
extern char g_pszStartSinglePlayerMenu_Title[] = "JOUEUR UNIQUE";
extern char g_pszStartSinglePlayerMenu_NewCampaign[] = "NOUVELLE CAMPAGNE"; // FIXME: Google Translated, probably wrong
extern char g_pszStartSinglePlayerMenu_New[] = "CHARGER ORIGINAL"; // Mike's lame translation
extern char g_pszStartSinglePlayerMenu_AddOn[] = "CHARGER ADD-ON"; // Mike's lame translation
#if TARGET == POSTAL_2015
extern char g_pszStartSinglePlayerMenu_AddOn2[] = "SUPER POSTAL";
extern char g_pszStartSinglePlayerMenu_AllLevels[] = "TOUS LES NIVEAUX"; // FIXME: Google Translated, probably wrong
#endif
extern char g_pszStartSinglePlayerMenu_LoadLevel[] = "CHARGER LE NIVEAU";
extern char g_pszStartSinglePlayerMenu_LoadGame[] = "CHARGER LE JEU";
extern char g_pszStartSinglePlayerMenu_Challenge[] = "DEFI";
extern char g_pszStartChallengeMenu_Title[] = "DEFI";
extern char g_pszStartChallengeMenu_Gauntlet[] = "LE GANT";
extern char g_pszStartChallengeMenu_Timed[] = "CHRONOMETRE";
extern char g_pszStartChallengeMenu_Goal[] = "BUT";
extern char g_pszStartChallengeMenu_Flag[] = "DRAPEAU";
extern char g_pszStartChallengeMenu_CheckPoint[] = "CONTROLE";
extern char g_pszStartMultiplayerMenu_Title[] = "JOUEURS MULTIPLES";
extern char g_pszStartMultiplayerMenu_Join[] = "JOINDRE LE JEU";
extern char g_pszStartMultiplayerMenu_Host[] = "ANIMER LE JEU";
extern char g_pszStartMultiplayerMenu_Options[] = "OPTIONS";
extern char g_pszJoinGameMenu_Title[] = "JOINDRE LE JEU";
extern char g_pszJoinGameMenu_Browse[] = "PARCOURIR (RESEAU LOCAL UNIQUEMENT)";
extern char g_pszJoinGameMenu_ConnectTo[] = "SE CONNECTER A";
extern char g_pszHostGameMenu_Title[] = "ANIMER LE JEU";
extern char g_pszHostGameMenu_Start[] = "DEMARRER";
extern char g_pszStartDemoMenu_Title[] = "DEMO";
extern char g_pszStartDemoMenu_Browse[] = "PARCOURIR";
extern char g_pszStartDemoMenu_Play[] = "JOUER";
extern char g_pszStartDemoMenu_Record[] = "ENREGISTRER";
extern char g_pszStartDemoMenu_ConSite[] = "LE CHANTIER"; // FIXME: Google Translated
extern char g_pszStartDemoMenu_Home[] = "DOMICILE"; // FIXME: Google Translated
extern char g_pszStartDemoMenu_Bridge[] = "LE PONT"; // FIXME: Google Translated
extern char g_pszMultiplayerSetupMenu_Title[] = "JOUEURS MULTIPLES";
extern char g_pszMultiplayerSetupMenu_Name[] = "NOM";
extern char g_pszMultiplayerSetupMenu_Color[] = "COULEUR";
extern char g_pszMultiplayerSetupMenu_Protocol[] = "PROTOCOLE";
extern char g_pszMultiplayerSetupMenu_Connection[] = "CONNEXION";
// Keep at end -- was not in original localizable text.
extern char g_pszControlsMenu_UseJoystick[] = "UTILISER LA MANETTE DE JEU";
#endif
////////////////////////////////////////////////////////////////////////////////
///////////////////////////// Sample Master ////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
#if ENGLISH_LOCALE
extern char* g_apszSoundCategories[] =
{
"GENERAL",
"SOUNDTRACK",
"WEAPONS",
"FEEDBACK",
"DESTRUCTION",
"AMBIENT",
"DEMON",
"SHOUTING",
"PAIN",
"SUFFERING"
};
#elif LOCALE == GERMAN
extern char* g_apszSoundCategories[] =
{
"ALLGEMEIN",
"SOUNDTRACK",
"WAFFEN",
"FEEDBACK",
"ZERSTORUNG",
"UMGEBUNG",
"DAMON",
"GESCHREI",
"SCHMERZEN",
"LEIDEN",
};
#elif LOCALE == FRENCH
extern char* g_apszSoundCategories[] =
{
"GENERAL",
"PISTE MUSICALE",
"ARMES",
"FEED-BACK",
"DESTRUCTION",
"AMBIANTE",
"DEMON",
"CRIS",
"DOULEUR",
"SOUFFRANCE",
};
#endif
////////////////////////////////////////////////////////////////////////////////
// Score module
////////////////////////////////////////////////////////////////////////////////
#if ENGLISH_LOCALE // ScoreDisplayText
extern char* g_apszScoreDisplayText[CRealm::TotalScoringModes] =
{
" Population %d Hostiles %d Killed %d (%d%% / %d%%)", // Standard
" Time Remaining %d:%2.2d Kills %d", // Timed
" Time Remaining %d:%2.2d Kills %d Remaining %d / %d", // TimedGoal
" Time Remaining %d:%2.2d", // TimedFlag
" Kills %d Remaining %d Time Elapsed %d:%2.2d",// Goal
" Time Elapsed %d:%2.2d", // CaptureFlag
" Clock %d:%2.2d You have %d flags Flags Remaining %d", // Checkpoint
"Time Remaining %d:%2.2d", // MPTimed
"Time Remaining %d:%2.2d", // MPFrag
"", // MPLastMan,
"", // MPCaptureFlag
"", // MPTimedFlag,
"", // MPTimedFrag
"", // MPLastManFrag
"", // MPLastManTimed
"" // MPLastManTimedFrag
};
#elif LOCALE == GERMAN
extern char* g_apszScoreDisplayText[CRealm::TotalScoringModes] =
{
" Leute %d Feinden %d Totungen %d (%d%%)", // Standard
" Verbleibende Zeit %d:%2.2d Totungen %d", // Timed
" Verbleibende Zeit %d:%2.2d Totungen %d Verbleibend %d", // TimedGoal
" Verbleibende Zeit %d:%2.2d", // TimedFlag
" Totungen %d Verbleibend %d Vergangene Zeit %d:%2.2d",// Goal
" Vergangene Zeit %d:%2.2d", // CaptureFlag
" Uhr %d:%2.2d Sie haben %d Flaggen Verbleibende Flaggen %d", // Checkpoint
"Verbleibende Zeit %d:%2.2d", // MPTimed
"Verbleibende Zeit %d:%2.2d", // MPFrag
"", // MPLastMan,
"", // MPCaptureFlag
"", // MPTimedFlag,
"", // MPTimedFrag
"", // MPLastManFrag
"", // MPLastManTimed
"" // MPLastManTimedFrag
};
#elif LOCALE == FRENCH
extern char* g_apszScoreDisplayText[CRealm::TotalScoringModes] =
{
" Personnes %d Ennemis %d Victimes %d (%d%%)", // Standard
" Temps restant %d:%2.2d Victimes %d", // Timed
" Temps restant %d:%2.2d Kills %d Remaining %d", // TimedGoal
" Temps restant %d:%2.2d", // TimedFlag
" Victimes %d Restant %d Temps ecoule %d:%2.2d",// Goal
" Temps ecoule %d:%2.2d", // CaptureFlag
" Horloge %d:%2.2d Vous avez %d drapeaux Drapeaux restants %d", // Checkpoint
"Temps restant %d:%2.2d", // MPTimed
"Temps restant %d:%2.2d", // MPFrag
"", // MPLastMan,
"", // MPCaptureFlag
"", // MPTimedFlag,
"", // MPTimedFrag
"", // MPLastManFrag
"", // MPLastManTimed
"" // MPLastManTimedFrag
};
#endif // ScoreDisplayText
#if ENGLISH_LOCALE // ScoreGoalText
extern char* g_apszScoreGoalText[CRealm::TotalScoringModes] =
{
" You must kill %d%% of the hostiles.", // Standard
" Score as many kills as possible in the time remaining.", // Timed
" Kill everyone before time runs out.", // TimedGoal
" Capture the flag before time runs out.", // TimedFlag
" Kill %d People in as little time as possible.", // Goal
" Capture the flag in as little time as possible.", // CaptureFlag
" Grab as many flags as possible before time runs out.", // Checkpoint
" The player with the most kills when time expires is the winner", // MPTimed
" The first player to get %d kills wins", // MPFrag
"", // MPLastMan,
"", // MPCaptureFlag
"", // MPTimedFlag
" Try to reach %d kills before time expires", // MPTimedFrag
"", // MPLastManFrag
"", // MPLastManTimed
" There are no time or kill limits on this game - play as long as you like" // MPLastManTimedFrag
};
#elif LOCALE == GERMAN
extern char* g_apszScoreGoalText[CRealm::TotalScoringModes] =
{
" Sie mussen %d%% Feinde toten.", // Standard
" Erzielen Sie in der verbleibenden Zeit su viele Totungen wie moglich.", // Timed
" Toten Sie jeden vor Ablauf der Zeit.", // TimedGoal
" Nehmen Sie vor Ablauf der Zeit die Flagge ein.", // TimedFlag
" Toten Sie so schnell wie moglich %d Leute.", // Goal
" Nehmen Sie so schnell wie moglich die Flagge ein.", // CaptureFlag
" Holen Sie sich vor Ablauf der Zeit so viele Flaggen wie moglich.", // Checkpoint
" Der Spieler, dar nach Ablauf der Zeit die meisten Totungen hat, ist der Sieger", // MPTimed
" Der erste Spieler mit %d Totungen hat gewonnen", // MPFrag
"", // MPLastMan,
"", // MPCaptureFlag
"", // MPTimedFlag
" Versuchen Sie, vor Ablauf der Zeit %d Totungen zu erreichen", // MPTimedFrag
"", // MPLastManFrag
"", // MPLastManTimed
" In diesem Spiel gibt es keine Ziet- oder Totungsbeschrakungen - spielen Sie so lange wie Sie wollen" // MPLastManTimedFrag
};
#elif LOCALE == FRENCH
extern char* g_apszScoreGoalText[CRealm::TotalScoringModes] =
{
" Vous devez tuer %d%% ennemis.", // Standard
" Faites autant de victimes que possible dans le delai restant.", // Timed
" Tuez tout le monde avant l'expiration du delai.", // TimedGoal
" Capturez le drapeau avant l'expiration du delai.", // TimedFlag
" Tuez %d personnes aussi vite que possible.", // Goal
" Capturez le drapeau aussi vite que possible.", // CaptureFlag
" Saisissez autant de drapeaux que possible avant l'expiration dudelai.", // Checkpoint
" Le joueur ayant fait le plus de victimes a l'expiration du delai est le gagnant", // MPTimed
" Le premier joueur faisant %d victimes gagne le jeu.", // MPFrag
"", // MPLastMan,
"", // MPCaptureFlag
"", // MPTimedFlag
" Essayez de faire %d victimes avant l'expiration du delai", // MPTimedFrag
"", // MPLastManFrag
"", // MPLastManTimed
" Aucune limite de temps ou de victimes dans ce jeu - jouez aussi longtemps que vous le souhaitez." // MPLastManTimedFrag
};
#endif // ScoreGoalText
#if ENGLISH_LOCALE // ScoreUnits
// Units for the various scoring types.
extern char* g_apszScoreUnits[] =
{
"", // Standard.
"Kills", // Timed.
"", // Timed goal.
"", // Timed flag.
"", // Goal.
"", // Capture the flag.
"Flags", // Checkpoint.
"Frags", // Multiplayer timed.
"Frags", // Multiplayer Frag limited.
"Frags", // Multiplayer last man standing.
"Frags", // Multiplayer capture the flag.
"Frags", // Multiplayer Timed capture the flag.
"Frags", // Multiplayer timed frags.
"Frags", // Multiplayer last man frag limited.
"Frags", // Multiplayer last man with time limit.
"Frags", // Multiplayer last man frag and time limited.
};
#elif LOCALE == GERMAN
extern char* g_apszScoreUnits[] =
{
"", // Standard.
"Totungen", // Timed.
"", // Timed goal.
"", // Timed flag.
"", // Goal.
"", // Capture the flag.
"Flaggen", // Checkpoint.
"Totungen", // Multiplayer timed.
"Totungen", // Multiplayer Frag limited.
"Totungen", // Multiplayer last man standing.
"Totungen", // Multiplayer capture the flag.
"Totungen", // Multiplayer Timed capture the flag.
"Totungen", // Multiplayer timed frags.
"Totungen", // Multiplayer last man frag limited.
"Totungen", // Multiplayer last man with time limit.
"Totungen", // Multiplayer last man frag and time limited.
};
#elif LOCALE == FRENCH
extern char* g_apszScoreUnits[] =
{
"", // Standard.
"tues", // Timed.
"", // Timed goal.
"", // Timed flag.
"", // Goal.
"", // Capture the flag.
"Drapeaux", // Checkpoint.
"tues", // Multiplayer timed.
"tues", // Multiplayer Frag limited.
"tues", // Multiplayer last man standing.
"tues", // Multiplayer capture the flag.
"tues", // Multiplayer Timed capture the flag.
"tues", // Multiplayer timed frags.
"tues", // Multiplayer last man frag limited.
"tues", // Multiplayer last man with time limit.
"tues", // Multiplayer last man frag and time limited.
};
#endif // ScoreUnits
#if ENGLISH_LOCALE // ScoreExplanations
// Explanations for the various scoring types.
extern char* g_apszScoreExplanations[] =
{
"", // Standard.
"Most kills in %s", // Timed.
"Best times for killing %d hostiles", // Timed goal.
"Best times for capturing the flag", // Timed flag.
"Best times for killing %d hostiles", // Goal.
"Best times for capturing the flag", // Capture the flag.
"Most flags collected", // Checkpoint.
"Top %d Scores", // Multiplayer timed.
"Top %d Scores", // Multiplayer frag.
"Top %d Scores", // Multiplayer last man standing.
"Top %d Scores", // Multiplayer capture the flag.
"Top %d Scores", // Multiplayer Timed capture the flag.
"Top %d Scores", // Multiplayer timed frags.
"Top %d Scores", // Multiplayer last man frag limited.
"Top %d Scores", // Multiplayer last man with time limit.
"Top %d Scores", // Multiplayer last man frag and time limited.
};
#elif LOCALE == GERMAN
extern char* g_apszScoreExplanations[] =
{
"", // Standard.
"Die meisten Totungen in %s", // Timed.
"Bestzeiten beim Toten von %d Feinden", // Timed goal.
"Bestzeiten beim Einnehmen der Flagge", // Timed flag.
"Bestzeiten beim Toten von %d Fienden", // Goal.
"Bestzeiten beim Einnehmen der Flagge", // Capture the flag.
"Meiste gesammelte Flaggen", // Checkpoint.
"Hochste %d Punktzahlen", // Multiplayer timed.
"Hochste %d Punktzahlen", // Multiplayer frag.
"Hochste %d Punktzahlen", // Multiplayer last man standing.
"Hochste %d Punktzahlen", // Multiplayer capture the flag.
"Hochste %d Punktzahlen", // Multiplayer Timed capture the flag.
"Hochste %d Punktzahlen", // Multiplayer timed frags.
"Hochste %d Punktzahlen", // Multiplayer last man frag limited.
"Hochste %d Punktzahlen", // Multiplayer last man with time limit.
"Hochste %d Punktzahlen", // Multiplayer last man frag and time limited.
};
#elif LOCALE == FRENCH
extern char* g_apszScoreExplanations[] =
{
"", // Standard.
"Maximum de victimes en %s", // Timed.
"Meilleurs temps pour tuer %d ennemis", // Timed goal.
"Meilleurs temps de capture des drapeaux", // Timed flag.
"Meilleurs temps pour tuer %d ennemis", // Goal.
"Meilleurs temps de capture des drapeaux", // Capture the flag.
"Nombre maximum de drapeaux amasses", // Checkpoint.
"%d Meilleurs Scores", // Multiplayer timed.
"%d Meilleurs Scores", // Multiplayer frag.
"%d Meilleurs Scores", // Multiplayer last man standing.
"%d Meilleurs Scores", // Multiplayer capture the flag.
"%d Meilleurs Scores", // Multiplayer Timed capture the flag.
"%d Meilleurs Scores", // Multiplayer timed frags.
"%d Meilleurs Scores", // Multiplayer last man frag limited.
"%d Meilleurs Scores", // Multiplayer last man with time limit.
"%d Meilleurs Scores", // Multiplayer last man frag and time limited.
};
#endif // ScoreExplanations
////////////////////////////////////////////////////////////////////////////////
// EOF
////////////////////////////////////////////////////////////////////////////////
|