home *** CD-ROM | disk | FTP | other *** search
/ Tools / WinSN5.0Ver.iso / NETSCAP.50 / WIN1998.ZIP / ns / cmd / macfe / restext / macfe.r < prev    next >
Encoding:
Text File  |  1998-04-08  |  17.2 KB  |  466 lines

  1.  /*
  2.  * The contents of this file are subject to the Netscape Public License
  3.  * Version 1.0 (the "NPL"); you may not use this file except in
  4.  * compliance with the NPL.  You may obtain a copy of the NPL at
  5.  * http://www.mozilla.org/NPL/
  6.  *
  7.  * Software distributed under the NPL is distributed on an "AS IS" basis,
  8.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
  9.  * for the specific language governing rights and limitations under the
  10.  * NPL.
  11.  *
  12.  * The Initial Developer of this code under the NPL is Netscape
  13.  * Communications Corporation.  Portions created by Netscape are
  14.  * Copyright (C) 1998 Netscape Communications Corporation.  All Rights
  15.  * Reserved.
  16.  */
  17. #include "PowerPlant.r"
  18. #include "Types.r"
  19. #undef ALPHA
  20. #undef BETA
  21. #include "SysTypes.r"
  22.  
  23. #include "resae.h"                            // Apple event constants
  24. #include "resgui.h"                            // main window constants
  25. #include "mversion.h"                        // version numbers, application name, etc
  26. #include "csid.h"
  27.  
  28.  
  29.  
  30. // Use the Mercutio MDEF
  31. #define    nsMenuProc    19999
  32.  
  33. resource 'MENU' ( 666, "Mercutio Menu" )
  34.     666, nsMenuProc, 0, 0, "View", {}
  35. };
  36.  
  37.  
  38. type 'LONG' {
  39.     array LongEntries {
  40.         longint;    /* Just an int32 */
  41.     };
  42. };
  43.  
  44. // contain boolean values
  45. type 'BOOL' {
  46.     array BooleanEntries {
  47.         byte;        /* boolean values */
  48.     };
  49. };
  50.  
  51. type 'MIME' {
  52.     literal longint;    /* Application signature */
  53.     literal longint;    /* File type */
  54.     byte;                /* User action - Save = 0, Launch = 1, Internal = 2, Unknown = 3 */
  55.     pstring;            /* Application name */
  56.     pstring;            /* Mime type */
  57.     pstring;            /* extension */
  58. };
  59.  
  60. type 'SMIM' {
  61.     literal longint;    /* Application signature */
  62.     literal longint;    /* File Type */
  63.     byte;                /* User action - Save = 0, Launch = 1, Internal = 2, Unknown = 3 */
  64.     pstring;            /* Application name */
  65.     pstring;            /* Mime type */
  66.     pstring;            /* extension */
  67. };
  68.  
  69.  
  70.  
  71. type 'Fnec' {
  72.     integer = $$CountOf(FnecEntries);
  73.     wide array FnecEntries    {
  74.         pstring[31];        /* Language Group Name */
  75.         pstring[31];        /* proportional font name */
  76.         pstring[31];        /* fixed font name */
  77.         unsigned integer;    /* proportional font size */
  78.         unsigned integer;    /* fixed font size */
  79.         unsigned integer;    /* character set encoding ID */
  80.         integer Script;        /* script id of font fallback */
  81.         unsigned integer;    /* res id for Txtr Button */
  82.         unsigned integer;    /* res id for Txtr Text Field */
  83.     };
  84. };
  85.  
  86. /* maps command numbers to cs id's */
  87. type 'Csid' {
  88.     integer = $$CountOf(table);
  89.     wide array table    {
  90.         unsigned integer;    /* win_csid  */
  91.         unsigned integer;    /* doc_csid  */
  92.         longint;            /* CmdNum */
  93.     };
  94. };
  95.  
  96.  
  97.  
  98. #include "custom.r"
  99.  
  100. /*-----------------------------------------------------------------------------
  101.     These are all standard PowerPlant resources which we are modifying.
  102.     Anything which we add which is not a replacement is in a different file.
  103. -----------------------------------------------------------------------------*/
  104.  
  105. resource 'STR#' (200, "Standards", purgeable) {{
  106.     APPLICATION_NAME, // used in Alert boxes
  107.     "Save File As:",
  108.     "Can╒t Undo"
  109. }};
  110.  
  111.  
  112. // Ñ╩Other stuff
  113.  
  114. // -- These are the FIXED items in the Help menu.  Items that 
  115. // may be configured by the Admin Kit are defined in config.js
  116. resource 'STR#' ( HELP_URLS_MENU_STRINGS, "Help URL Menu Entries", purgeable ) {{
  117.     "-",
  118. #ifndef MOZ_COMMUNICATOR_ABOUT
  119.     "About Navigator",
  120. #else
  121.     "About Communicator",
  122. #endif
  123. }};
  124.  
  125. resource 'STR#' ( HELP_URLS_RESID, "Help URLs", purgeable ) {{
  126.     "", // separator
  127.     ABOUT_LOCATION,
  128. }};
  129.  
  130.  
  131. resource 'STR#' ( STOP_STRING_LIST, "Stop Strings", purgeable ) {{
  132.     "Stop Loading",
  133.     "Stop Animations",
  134. }};
  135.  
  136. resource 'STR#' ( WINDOW_TITLES_RESID, "" ) {{
  137.     "Mail",
  138.     "Discussion Groups",
  139.     "Composer",
  140.     "Address Book for ^0",        // filled in with profile name
  141.     "Bookmarks for ^0",
  142.     "Preferences for ^0",
  143. }};
  144.  
  145. // Ñ Note: NEW_DOCUMENT_URL_RESID and DEFAULT_PLUGIN_URL moved to config.js
  146.  
  147. resource 'STR#' ( HELPFILES_NAMES_RESID, "" ) {{
  148.     "Navigator Gold Help",                    // help file name
  149.     "Navigator Gold Help Media",                                // media file name
  150. }};
  151.  
  152. // Generic font family names
  153. resource 'STR#' ( GENERIC_FONT_NAMES_RESID, "Generic Font Names", purgeable ) {{
  154.     "Times",                // serif
  155.     "Helvetica",            // san-serif
  156.     "Zapf Chancery",        // cursive
  157.     "New Century Schlbk",    // fantasy (??)
  158.     "Courier",                // monospace
  159. }};
  160.  
  161. // Ñ╩news group column headers (i18n)
  162. resource 'STR#' ( 4010, "" ) {{
  163.     "Groups Server",
  164.     "#3080",                        // subscribed icon
  165.     "Unread",
  166.     "Total",
  167. }};
  168.  
  169. // Ñ news and mail article column headers (i18n)
  170. resource 'STR#' ( 4011, "" ) {{
  171.     "Subject",
  172.     "#3082",                        // flag icon
  173.     "#3079",                        // read icon
  174.     "Sender",
  175.     "Date",
  176.     "Recipient",                    
  177. }};
  178.  
  179. // Ñ╩mail folder column headers (i18n)
  180. resource 'STR#' ( 6010, "" ) {{
  181.     "Folder",
  182.     "",
  183.     "Unread",
  184.     "Total",
  185. }};
  186.  
  187. // Miscellaneous JRM-perpetrated strings
  188. resource 'STR#' ( 7099, "" ) {{
  189.     // Terms for the first parameter of the thread window name (Mozilla %s %s)
  190.     "Folder"
  191. ,    "Discussion Group"
  192.      // Notification alert
  193. #ifdef MOZ_COMMUNICATOR_NAME
  194. ,    "Communicator requires your attention at this time."
  195. #else
  196. ,    "Navigator requires your attention at this time."
  197. #endif // MOZ_COMMUNICATOR_NAME
  198. ,    "%2.1fMB" // format string for Megabytes
  199. ,    "%ldK" // format string for Kilobytes
  200. ,    "%ld"    // format string for bytes
  201.     // setup not done when trying to create a mail window
  202. ,    "The command could not be completed, because you have not set up your ^0 preferences."
  203.     " Would you like to set up those preferences now?"
  204. ,    "Message counts unavailable"
  205.     // Used by FE_ShowPropertySheetFor() when backend wants to add new entry
  206. ,    "Create a new card for ^0 in personal address book?" 
  207. ,    "<unknown person>"
  208. ,    "Message Center for ^0"
  209. ,    "^0 ^1"    // Given name, family name.
  210. ,    "Not encrypted"
  211. ,    "Encrypted"
  212. ,    "Moving Messages" // 15
  213. ,    "Loading Folder" // 16
  214. ,    "Open Selected Items"
  215. ,    "Preparing window ^0 of ^1╔" // 18
  216. ,    "Copying Messages" //19
  217. ,    "Bookmark Added"    // 20, shown in status bar when dbl-click page proxy.
  218. ,    "Mail Server"        // 21, shown in string #7 above
  219. ,    "Groups Server"        // 22    ''        ''        ''
  220. ,    "Identity"            // 23    ''        ''        ''
  221. ,    "Mail & Groups"        // 24    ''        ''        ''
  222. ,    "You have changed the mail server type. You must quit and restart Communicator "
  223.     "for this to take effect."        // 25
  224. ,    "Directories"        // 26 shown in Offline Picker
  225. }};
  226.  
  227. resource 'STR#' ( 7098, "" ) {{
  228. // Command could not be completed because ^0.
  229.     "there was not enough memory" // 1
  230. ,    "of an unknown error" // 2
  231. ,    "the disk is full" // 3
  232. ,    "a file could not be found" // 4
  233. ,    "there is no such folder" // 5
  234. ,    "there is no disk by that name" // 6
  235. ,    "a file name was too long or contained bad characters" // 7
  236. ,    "the disk is locked" // 8
  237. ,    "a file was busy and could not be written to" // 9
  238. ,    "a file by that name already exists" // 10
  239. ,    "a file was already open for writing" // 11
  240. ,    "you do not have the correct permission" // 12
  241. }};
  242.  
  243. // Ñ╩Multi-user profile dialog strings
  244. resource 'STR#' ( 900, "", purgeable ) {{
  245.     "Enter a new name for the profile:",
  246.     "Do you want to delete this profile?  No files will be removed from your disk.",
  247.     "Error reading user profiles: ",
  248.     "Error creating profile: ",
  249.     "Default Profile",
  250.     "The folder for profile ╥^0╙ could not be found.  Do you want to locate it?",
  251.     "Quit",
  252.     "Done",
  253.     "Next >",
  254.     "The required configuration file ╥" CONFIG_FILENAME "╙ could not be found in " ESSENTIALS_FOLDER ".  Please reinstall the software or contact your administrator.",
  255.     "The configuration file ╥" CONFIG_FILENAME "╙ is invalid.  Please reinstall the software or contact your administrator.",
  256.     "Account Setup",
  257.     "Create Profile",
  258. }};
  259.  
  260. // Ñ╩Boolean operators and search menu items
  261. resource 'STR#' ( 901, "", purgeable ) {{
  262.     "and",             // 1
  263.     "or",            // 2
  264.     "Customize╔"    // 3
  265. }};
  266.  
  267. /*-----------------------------------------------------------------------------
  268.     Common Stuff
  269. -----------------------------------------------------------------------------*/
  270. /*
  271. #define Script        smRoman=0, smJapanese, smTradChinese, smKorean,        \
  272.                     smArabic, smHebrew, smGreek, smCyrillic, smRSymbol,    \
  273.                     smDevanagari, smGurmukhi, smGujarati, smOriya,        \
  274.                     smBengali, smTamil, smTelugu, smKannada,            \
  275.                     smMalayalam, smSinhalese, smBurmese, smKhmer,        \
  276.                     smThai, smLaotian, smGeorgian, smArmenian,            \
  277.                     smSimpChinese, smTibetan, smMongolian, smGeez,        \
  278.                     smSlavic, smVietnamese, smExtArabic, smUninterp        \
  279. */
  280. /*     Language Group            Proportional            Fixed         ProportionalFixed    Character                    ScriptID for      Txtr        Txtr            */
  281. /*     Name                       Font Name                    Font Name        Size    Size    Set ID                        Font Fallback      ButtonID    TextFieldID        */
  282.  
  283. resource 'Fnec' (FNEC_RESID, "Font definitation for every encoding", purgeable) {
  284.     {
  285.     "Western",                "Times",                "Courier",        12,        10,        CS_MAC_ROMAN,                smRoman,         4002,        4001;    
  286.     "Central European",        "Times CE",                "Courier CE",     12,        10,        CS_MAC_CE,                    smSlavic,          4006,        4005;
  287.     "Japanese",                "ì╫û╛Æ⌐æ╠",                 "Osakaü|ôÖò¥",    12,        12,        CS_SJIS,                    smJapanese,         4004,        4003;
  288.     "Traditional Chinese",    "Apple LiSung Light",    "Taipei",         16,        12,        CS_BIG5,                    smTradChinese,     4008,        4007;
  289.     "Simplified Chinese",    "Song",                    "*Beijing*",    16,        12,        CS_GB_8BIT,                    smSimpChinese,     4010,        4009;    
  290.     "Korean",                "AppleGothic",            "Seoul",        12,        12,        CS_KSC_8BIT,                smKorean,         4012,        4011;
  291.     "Cyrillic",                "Å≡▀∞εΘ Å≡ε∩",            "Å≡▀∞εΘ",        12,        12,        CS_MAC_CYRILLIC,            smCyrillic,         4016,        4015;
  292.     "Greek",                "GrTimes",                "GrCourier",    12,        12,        CS_MAC_GREEK,                smRoman,         4018,        4017;
  293.     "Turkish",                "Times",                "Courier",        12,        10,        CS_MAC_TURKISH,                smRoman,         4020,        4019;    
  294.     "Unicode",                "Times",                "Courier",        12,        10,        CS_UTF8,                    smRoman,         4024,        4023;        
  295.     "User-Defined",            "Times",                "Courier",         12,        10,        CS_USER_DEFINED_ENCODING,    smRoman,         4014,        4013;        
  296.     }
  297. };
  298.  
  299.  
  300. resource 'Csid' (cmd2csid_tbl_ResID, "csIDs", purgeable) {
  301.     {
  302.   /* win_csid         doc_csid            cmdNumber */
  303.     CS_MAC_ROMAN,     CS_ASCII,            cmd_ASCII,
  304.     CS_MAC_ROMAN,     CS_LATIN1,             cmd_LATIN1,
  305.     CS_SJIS,          CS_JIS,              cmd_JIS,
  306.     CS_SJIS,           CS_SJIS,             cmd_SJIS,
  307.     CS_SJIS,           CS_EUCJP,            cmd_EUCJP,
  308.     CS_SJIS,           CS_SJIS_AUTO,          cmd_SJIS_AUTO,
  309.     CS_MAC_ROMAN,     CS_MAC_ROMAN,          cmd_MAC_ROMAN,
  310.     CS_MAC_CE,        CS_LATIN2,             cmd_LATIN2,
  311.     CS_MAC_CE,        CS_MAC_CE,             cmd_MAC_CE,
  312.     CS_MAC_CE,        CS_CP_1250,             cmd_CP1250,
  313.     CS_BIG5,        CS_BIG5,             cmd_BIG5,
  314.     CS_BIG5,        CS_CNS_8BIT,           cmd_CNS_8BIT,
  315.     CS_GB_8BIT,       CS_GB_8BIT,            cmd_GB_8BIT,
  316.     CS_KSC_8BIT,      CS_KSC_8BIT_AUTO,      cmd_KSC_8BIT,
  317.     CS_KSC_8BIT,      CS_2022_KR,            cmd_2022_KR,
  318.     
  319.     CS_MAC_CYRILLIC,  CS_MAC_CYRILLIC,       cmd_MAC_CYRILLIC,
  320.     CS_MAC_CYRILLIC,  CS_8859_5,             cmd_8859_5,
  321.     CS_MAC_CYRILLIC,  CS_CP_1251,            cmd_CP1251,
  322.     CS_KOI8_R,        CS_KOI8_R,             cmd_KOI8R,
  323.     CS_MAC_GREEK,     CS_MAC_GREEK,          cmd_MAC_GREEK,
  324.     CS_MAC_GREEK,     CS_8859_7,             cmd_8859_7,
  325.     CS_MAC_GREEK,     CS_CP_1253,            cmd_CP1253,
  326.     CS_MAC_TURKISH,   CS_MAC_TURKISH,        cmd_MAC_TURKISH,
  327.     CS_MAC_TURKISH,   CS_8859_9,             cmd_8859_9,
  328.     CS_UTF8,            CS_UTF8,               cmd_UTF8,
  329.     CS_UTF8,            CS_UTF7,               cmd_UTF7,
  330.     CS_USER_DEFINED_ENCODING,CS_USER_DEFINED_ENCODING, cmd_USER_DEFINED_ENCODING
  331.  
  332.     }
  333. };
  334.  
  335.  
  336. /* -- 4.0 xp prefs --
  337.  * Default mime types have been removed from here and
  338.  * moved to xp initializers in libpref/src/init/all.js
  339.  */
  340.  
  341. resource 'STR ' ( mPREFS_UNSPECIFIED_ERR_ALERT, "Unspecified Error", purgeable ) {
  342.     "There was an error.  Preferences will not be saved.";
  343. };
  344.  
  345. resource 'STR ' ( mPREFS_CANNOT_OPEN_SECOND_ALERT, "Cant Open Second Prefs File", purgeable ) {
  346.     "You cannot open a second preferences file.";
  347. };
  348.  
  349. resource 'STR ' ( mPREFS_CANNOT_OPEN_SECOND_ALERT + 1, "-", purgeable ) {
  350.     "Quit Navigator and launch by double-clicking on the preferences file you wish to use.";
  351. };
  352.  
  353. resource 'STR ' ( mPREFS_CANNOT_CREATE, "Cant Create Prefs File", purgeable ) {
  354.     "The preferences file cannot be created.  Navigator will use the defaults.";
  355. };
  356.  
  357. resource 'STR ' ( mPREFS_CANNOT_CREATE_PREFS_FOLDER, "Cant Create Prefs Folder", purgeable ) {
  358.     "The preferences folder could not be created.  Navigator will use the defaults.";
  359. };
  360.  
  361. resource 'STR ' ( mPREFS_CANNOT_READ, "Cant Read Preferences", purgeable ) {
  362.     "The preferences file cannot be read.  Navigator will use the defaults.";
  363. };
  364.  
  365. resource 'STR ' ( mPREFS_CANNOT_WRITE, "Cant Write Preferences", purgeable ) {
  366.     "There was an error writing the preferences.  They will not be saved.";
  367. };
  368.  
  369. resource 'STR ' ( mPREFS_DUPLICATE_MIME, "Duplicate mimetype", purgeable ) {
  370.     "The specified MIME type already exists.";
  371. };
  372.  
  373.  
  374. // TRANSLATION RESOURCES
  375. /* les tables pour ISO 8859-1 : A. Pirard (ULg) - mai 1992 */
  376.  
  377. data 'xlat' (128, "ISO1 -> MACR", purgeable) {
  378. /*      translation ISO 8859-1 -> Macintosh                     */
  379. /*        x0x1 x2x3 x4x5 x6x7 x8x9 xAxB xCxD xExF       */
  380. /*8x*/  $"2A2A E2C4 E3C9 A0E0 F6E4 53DC CE2A 2A2A"
  381. /*9x*/  $"2AD4 D5D2 D3A5 D0D1 F7AA 73DD CF2A 2AD9"
  382. /*Ax*/  $"CAC1 A2A3 DBB4 7CA4 ACA9 BBC7 C2D0 A8F8"
  383. /*Bx*/  $"A1B1 3233 ABB5 A6E1 FC31 BCC8 2A2A 2AC0"
  384. /*Cx*/  $"CBE7 E5CC 8081 AE82 E983 E6E8 EDEA EBEC"
  385. /*Dx*/  $"DC84 F1EE EFCD 8578 AFF4 F2F3 86A0 DEA7"
  386. /*Ex*/  $"8887 898B 8A8C BE8D 8F8E 9091 9392 9495"
  387. /*Fx*/  $"DD96 9897 999B 9AD6 BF9D 9C9E 9FE0 DFD8"
  388. };
  389.  
  390.  
  391. data 'xlat' (129, "MACR -> ISO1", purgeable) {
  392. /*      translation Macintosh -> ISO 8859-1                     */
  393. /*        x0x1 x2x3 x4x5 x6x7 x8x9 xAxB xCxD xExF       */
  394. /*8x*/  $"C4C5 C7C9 D1D6 DCE1 E0E2 E4E3 E5E7 E9E8"
  395. /*9x*/  $"EAEB EDEC EEEF F1F3 F2F4 F6F5 FAF9 FBFC"
  396. /*Ax*/  $"DDB0 A2A3 A795 B6DF AEA9 99B4 A82A C6D8"
  397. /*Bx*/  $"2AB1 2A2A A5B5 2A2A 2A2A 2AAA BA2A E6F8"
  398. /*Cx*/  $"BFA1 AC2A 833D 2AAB BB85 A0C0 C3D5 8C9C"
  399. /*Dx*/  $"9697 9394 9192 F72A FF9F 2FA4 D0F0 DEFE"
  400. /*Ex*/  $"FDB7 8284 89C2 CAC1 CBC8 CDCE CFCC D3D4"
  401. /*Fx*/  $"2AD2 DADB D969 8898 AF2A B7B0 B82A 2A2A"
  402. };
  403.  
  404.  
  405. data 'xlat' (130, "ISO2 -> MACCE", purgeable) {
  406. /* translation 8859-2 -> MacCEuro */
  407. /*        x0x1 x2x3 x4x5 x6x7 x8x9 xAxB xCxD xExF    */
  408. /*8x*/  $"8081 8283 8485 8687 8889 8A8B 8C8D 8E8F"    /* ................ */
  409. /*9x*/  $"9091 9293 9495 9697 9899 9A9B 9C9D 9E9F"    /* ................ */
  410. /*Ax*/  $"CA84 FFFC A4BB E5A4 ACE1 53E8 8F2D EBFB"    /* áí.ú.Ѫº¿⌐.½¼.«» */
  411. /*Bx*/  $"A188 B2B8 27BC E6FF B8E4 73E9 90BD ECFD"    /* ░▒.│.╡╢╖.╣.╗╝.╛┐ */
  412. /*Cx*/  $"D9E7 4141 80BD 8C43 8983 A245 9DEA 4991"    /* └┴..─┼╞.╚╔╩.╠═.╧ */
  413. /*Dx*/  $"44C1 C5EE EFCC 8578 DBF1 F2F4 86F8 54A7"    /* .╤╥╙╘╒╓.╪┘┌█▄▌.▀ */
  414. /*Ex*/  $"DA87 6161 8ABE 8D63 8B8E AB65 9E92 6993"    /* αß..Σσµ.ΦΘΩ.∞φ.∩ */
  415. /*Fx*/  $"64C4 CB97 99CE 9AD6 DEF3 9CF5 9FF9 74A1"    /* .±≥≤⌠⌡÷≈°∙·√ⁿ².. */
  416. };
  417.  
  418. data 'xlat' (131, "MACCE -> ISO2", purgeable) {
  419. /* translation MacCEuro -> 8859-2 */
  420. /*        x0x1 x2x3 x4x5 x6x7 x8x9 xAxB xCxD xExF    */
  421. /*8x*/  $"C441 61C9 A1D6 DCE1 B1C8 E4E8 C6E6 E9AC"    /* Ç..âäàåçêëèïîìÄÅ */
  422. /*9x*/  $"BCCF EDEF 4565 45F3 65F4 F66F FACC ECFC"    /* ÉæÆô...ù.ÖÜ.£¥₧ƒ */
  423. /*Ax*/  $"A0B0 CA4C A72A A6DF 5263 54EA A8AD 6749"    /* .íó.ñ..º...½¼... */
  424. /*Bx*/  $"6949 B2B3 694B 6445 B34C 6CA5 B5C5 E54E"    /* ........╕..╗╝╜╛. */
  425. /*Cx*/  $"6ED1 2DC3 F1D2 C63D 3FC9 A0F2 D54F F54F"    /* .┴..─┼....╩╦╠.╬. */
  426. /*Dx*/  $"2D2D 2222 2727 F7D7 6FC0 E0D8 3D3F F852"    /* ......╓..┘┌█..▐. */
  427. /*Ex*/  $"72A9 2C2C B9A6 B6C1 ABBB CDAE BE55 D3D4"    /* .ß..ΣσµτΦΘΩδ∞.ε∩ */
  428. /*Fx*/  $"75D9 DAF9 DBFB 5575 DDFD 6BAF A3BF 47B7"    /* .±≥≤⌠⌡..°∙.√ⁿ².  */
  429. };
  430.  
  431.  
  432. /*
  433. read 'Tang' ( ABOUT_BIGLOGO_TANG, "biglogo.gif", purgeable) "biglogo.gif";    // Was splash.gif
  434. read 'Tang' ( ABOUT_JAVALOGO_TANG, "javalogo.gif", purgeable) "javalogo.gif";
  435. read 'Tang' ( ABOUT_RSALOGO_TANG, "rsalogo.gif", purgeable ) "rsalogo.gif";
  436. read 'Tang' ( ABOUT_HYPE_TANG, "hype.au", purgeable ) "hype.au";
  437. read 'Tang' ( ABOUT_QTLOGO_TANG, "qtlogo.gif", purgeable) "qt_logo.gif";
  438.  
  439. read 'Tang' ( ABOUT_INSOLOGO_TANG, "insologo.gif", purgeable) "insologo.gif";
  440. read 'Tang' ( ABOUT_LITRONIC_TANG, "litronic.gif", purgeable) "litronic.gif";
  441. read 'Tang' ( ABOUT_MCLOGO_TANG, "mclogo.gif", purgeable) "mclogo.gif";
  442. read 'Tang' ( ABOUT_MMLOGO_TANG, "mmlogo.gif", purgeable) "mmlogo.gif";
  443. read 'Tang' ( ABOUT_NCCLOGO_TANG, "ncclogo.gif", purgeable) "ncclogo.gif";
  444. read 'Tang' ( ABOUT_ODILOGO_TANG, "odilogo.gif", purgeable) "odilogo.gif";
  445. read 'Tang' ( ABOUT_SYMLOGO_TANG, "symlogo.gif", purgeable) "symlogo.gif";
  446. read 'Tang' ( ABOUT_TDLOGO_TANG, "tdlogo.gif", purgeable) "tdlogo.gif";
  447. read 'Tang' ( ABOUT_VISILOGO_TANG, "visilogo.gif", purgeable) "visilogo.gif";
  448. read 'Tang' ( ABOUT_COSLOGO_TANG, "coslogo.jpg", purgeable) "coslogo.jpg";
  449. */
  450.  
  451. read 'Tang' ( ABOUT_MOZILLA_FLAME, "flamer.gif", purgeable) "flamer.gif";
  452. read 'TEXT' ( ABOUT_ABOUTPAGE_TEXT, "about-all.html", purgeable ) "about-all.html";
  453. /*
  454. read 'TEXT' ( ABOUT_AUTHORS_TEXT, "authors.html", purgeable ) "authors2.html";
  455. */
  456. read 'TEXT' ( ABOUT_MOZILLA_TEXT, "mozilla.html", purgeable ) "mozilla.html";
  457. read 'TEXT' ( ABOUT_PLUGINS_TEXT, "aboutplg.html", purgeable ) "aboutplg.html";
  458. read 'TEXT' ( ABOUT_MAIL_TEXT, "mail.msg", purgeable ) "mail.msg";
  459.  
  460.  
  461. data 'TEXT' ( ABOUT_BLANK_TEXT, purgeable )
  462. {
  463.     " "
  464. };    // Gone is the glorious "Homey don't play dat!"
  465.