home *** CD-ROM | disk | FTP | other *** search
/ Tools / WinSN5.0Ver.iso / NETSCAP.50 / WIN1998.ZIP / ns / cmd / macfe / restext / mailnewsfe.r < prev    next >
Encoding:
Text File  |  1998-04-08  |  33.9 KB  |  1,049 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 <Types.r>
  18. #undef BETA
  19. #undef ALPHA
  20. #include <SysTypes.r>
  21.  
  22. #include "resae.h"                    // Apple event constants
  23. #include "resgui.h"                    // main window constants
  24. #include "mversion.h"                // version numbers, application name, etc
  25. #include "csid.h"
  26.  
  27. #include "PowerPlant.r"
  28.  
  29. // Use the Mercutio MDEF
  30. #define    nsMenuProc    19999
  31.  
  32. resource 'MENU' ( 666, "Mercutio Menu" )
  33.     666, nsMenuProc, 0, 0, "View", {}
  34. };
  35.  
  36.  
  37. type 'LONG' {
  38.     array LongEntries {
  39.         longint;    /* Just an int32 */
  40.     };
  41. };
  42.  
  43. // contain boolean values
  44. type 'BOOL' {
  45.     array BooleanEntries {
  46.         byte;        /* boolean values */
  47.     };
  48. };
  49.  
  50. type 'MIME' {
  51.     literal longint;    /* Application signature */
  52.     literal longint;    /* File type */
  53.     byte;                /* User action - Save = 0, Launch = 1, Internal = 2, Unknown = 3 */
  54.     pstring;            /* Application name */
  55.     pstring;            /* Mime type */
  56.     pstring;            /* extension */
  57. };
  58.  
  59. type 'SMIM' {
  60.     literal longint;    /* Application signature */
  61.     literal longint;    /* File Type */
  62.     byte;                /* User action - Save = 0, Launch = 1, Internal = 2, Unknown = 3 */
  63.     pstring;            /* Application name */
  64.     pstring;            /* Mime type */
  65.     pstring;            /* extension */
  66. };
  67.  
  68.  
  69.  
  70. type 'Fnec' {
  71.     integer = $$CountOf(FnecEntries);
  72.     wide array FnecEntries    {
  73.         pstring[31];        /* Language Group Name */
  74.         pstring[31];        /* proportional font name */
  75.         pstring[31];        /* fixed font name */
  76.         unsigned integer;    /* proportional font size */
  77.         unsigned integer;    /* fixed font size */
  78.         unsigned integer;    /* character set encoding ID */
  79.         integer Script;        /* script id of font fallback */
  80.         unsigned integer;    /* res id for Txtr Button */
  81.         unsigned integer;    /* res id for Txtr Text Field */
  82.     };
  83. };
  84.  
  85. /* maps command numbers to cs id's */
  86. type 'Csid' {
  87.     integer = $$CountOf(table);
  88.     wide array table    {
  89.         unsigned integer;    /* win_csid  */
  90.         unsigned integer;    /* doc_csid  */
  91.         longint;            /* CmdNum */
  92.     };
  93. };
  94.  
  95.  
  96.  
  97. #include "custom.r"
  98.  
  99. /*-----------------------------------------------------------------------------
  100.     These are all standard PowerPlant resources which we are modifying.
  101.     Anything which we add which is not a replacement is in a different file.
  102. -----------------------------------------------------------------------------*/
  103.  
  104. resource 'STR#' (200, "Standards", purgeable) {{
  105.     APPLICATION_NAME, // used in Alert boxes
  106.     "Save File As:",
  107.     "Can╒t Undo"
  108. }};
  109.  
  110.  
  111. // Ñ╩Other stuff
  112. resource 'STR#' ( HELP_URLS_MENU_STRINGS, "Help URL Menu Entries", purgeable ) {{
  113.     "About Netscape",
  114.     "About Plugins",
  115.     "Registration Information",
  116.     "(-",
  117.     "Handbook",
  118.     "Release Notes",
  119.     "Frequently Asked Questions",
  120.     "On Security",
  121.     "(-",
  122.     "How to Give Feedback",
  123.     "How to Get Support",
  124.     "How to Create Web Services",
  125. }};
  126.  
  127. resource 'STR#' ( HELP_URLS_RESID, "Help URLs", purgeable ) {{
  128.     ABOUT_LOCATION,
  129.     ABOUT_PLUGINS_LOCATION,
  130.     REGISTRATION_LOCATION,
  131.     "",
  132.     MANUAL_LOCATION,            // 
  133.     VERSION_LOCATION,            // release notes
  134.     FAQ_LOCATION,                // FAQ
  135.     HELPONSEC_LOCATION,
  136.     "",
  137.     FEEDBACK_LOCATION,    // FEEDBACK
  138.     SUPPORT_LOCATION,
  139.     WEBSERVICES_LOCATION,
  140. }};
  141.  
  142. resource 'STR#' ( WINDOW_TITLES_RESID, "" ) {{
  143.     "Mail",
  144.     "News",
  145.     "Editor",
  146. }};
  147.  
  148. // Ñ╩news group column headers (i18n)
  149. resource 'STR#' ( 4010, "" ) {{
  150.     "News Server",
  151.     "#3080",                        // subscribed icon
  152.     "Unread",
  153.     "Total",
  154. }};
  155.  
  156. // Ñ news and mail article column headers (i18n)
  157. resource 'STR#' ( 4011, "" ) {{
  158.     "Subject",
  159.     "#3082",                        // flag icon
  160.     "#3079",                        // read icon
  161.     "Sender",
  162.     "Date",
  163.     "Recipient",                    
  164. }};
  165.  
  166. // Ñ╩mail folder column headers (i18n)
  167. resource 'STR#' ( 6010, "" ) {{
  168.     "Folder",
  169.     "",
  170.     "Unread",
  171.     "Total",
  172. }};
  173.  
  174.         // central/mailmac.cp user messages
  175.   resource 'STR '    ( MAIL_WIN_ERR_RESID + 0, "Create mail window error", purgeable ) {
  176.       "Unexpected error while creating Mail/News window"
  177.   };
  178.   resource 'STR '    ( MAIL_TOO_LONG_RESID + 0, "Mail text too long", purgeable ) {
  179.       "Included text is too long.\rIt has been truncated."
  180.   };
  181.   resource 'STR '    ( MAIL_TMP_ERR_RESID + 0, "Mail tmp file error", purgeable ) {
  182.       "Could not create a temporary mail file"
  183.   };
  184.   resource 'STR '    ( NO_EMAIL_ADDR_RESID + 0, "No email address1", purgeable ) {
  185.       "You have not set your email address in \"Preferences\"."
  186.   };
  187.   resource 'STR '    ( NO_EMAIL_ADDR_RESID + 1, "No email address2", purgeable ) {
  188.       " The recipient of your message will not be able to reply"
  189.   };
  190.   resource 'STR '    ( NO_EMAIL_ADDR_RESID + 2, "No email address3", purgeable ) {
  191.       " to your mail without it. Please do so before mailing."
  192.   };
  193.   resource 'STR '    ( NO_SRVR_ADDR_RESID + 0, "Create Mail Tmp File1", purgeable ) {
  194.       "You have not set mail server address in \"Preferences\"."
  195.   };
  196.   resource 'STR '    ( NO_SRVR_ADDR_RESID + 1, "Create Mail Tmp File2", purgeable ) {
  197.       " You cannot send mail without it.\n"
  198.   };
  199.   resource 'STR '    ( NO_SRVR_ADDR_RESID + 2, "Create Mail Tmp File3", purgeable ) {
  200.       " Please set it before mailing."
  201.   };
  202.   resource 'STR '    ( MAIL_SUCCESS_RESID + 0, "Mail succeeded", purgeable ) {
  203.       "Mail was successful"
  204.   };
  205.   resource 'STR '    ( MAIL_NOT_SENT_RESID + 0, "Mail not sent", purgeable ) {
  206.       "Mail was not sent"
  207.   };
  208.   resource 'STR '    ( MAIL_SENDING_RESID + 0, "Mail sending", purgeable ) {
  209.       "Sending mail╔"
  210.   };
  211.   resource 'STR '    ( NEWS_POST_RESID + 0, "News post", purgeable ) {
  212.       "newspost:"
  213.   };
  214.   resource 'STR '    ( MAIL_SEND_ERR_RESID + 0, "Sending mail error", purgeable ) {
  215.       "Unexpected error while sending mail"
  216.   };
  217.   resource 'STR '    ( MAIL_DELIVERY_ERR_RESID + 0, "Mail delivery error", purgeable ) {
  218.       "Mail delivery failed"
  219.   };
  220.   resource 'STR '    ( DISCARD_MAIL_RESID + 0, "Discard mail?", purgeable ) {
  221.       "Mail has not been sent yet.\rAre you sure that you want to discard your mail message?"
  222.   };
  223.   resource 'STR '    ( SECURITY_LEVEL_RESID + 0, "Security level", purgeable ) {
  224.       "This version supports %s security with %s."
  225.   };
  226.   resource 'STR '    ( NO_MEM_LOAD_ERR_RESID + 0, "No memory on load", purgeable ) {
  227.       "Load has been interrupted because Netscape has run out of memory. You might want to increase its memory partition, or quit other applications to alleviate this problem."
  228.   };
  229.   resource 'STR '    ( EXT_PROGRESS_RESID + 0, "Progress via ext app", purgeable ) {
  230.       "Progress displayed in external application"
  231.   };
  232.   resource 'STR '    ( REVERT_PROGRESS_RESID + 0, "Revert progress to Netscape", purgeable ) {
  233.       "Reverting progress to Netscape"
  234.   };
  235.   resource 'STR '    ( START_LOAD_RESID + 0, "Start load", purgeable ) {
  236.       "Start loading"
  237.   };
  238.   resource 'STR '    ( NO_XACTION_RESID + 0, "No transaction ID", purgeable ) {
  239.       "Did not get the transaction ID: "
  240.   };
  241.   resource 'STR '    ( LAUNCH_TELNET_RESID + 0, "Launch telnet", purgeable ) {
  242.       "Launching Telnet application"
  243.   };
  244.   resource 'STR '    ( LAUNCH_TN3720_RESID + 0, "Launch TN3720", purgeable ) {
  245.       "Launching TN3270 application"
  246.   };
  247.   resource 'STR '    ( TELNET_ERR_RESID + 0, "Telnet launch error", purgeable ) {
  248.       "Telnet launch failed"
  249.   };
  250.   resource 'STR '    ( SAVE_AS_RESID + 0, "Save as", purgeable ) {
  251.       "Save this document as:"
  252.   };
  253.   resource 'STR '    ( NETSITE_RESID     + 0, "Netsite:", purgeable ) {
  254.       "Netsite:"
  255.   };
  256.   resource 'STR '    ( LOCATION_RESID + 0, "Location:", purgeable ) {
  257.       "Location:"
  258.   };
  259.   resource 'STR '    ( GOTO_RESID + 0, "Go To:", purgeable ) {
  260.       "Go To:"
  261.   };
  262.   resource 'STR '    ( DOCUMENT_DONE_RESID + 0, "Document done", purgeable ) {
  263.       "Document: Done."
  264.   };
  265.   resource 'STR '    ( LAYOUT_COMPLETE_RESID + 0, "Layout complete", purgeable ) {
  266.       "Layout: Complete."
  267.   };
  268.   resource 'STR '    ( CONFORM_ABORT_RESID + 0, "Confirm abort", purgeable ) {
  269.       "Are you sure that you want to abort the current download?"
  270.   };
  271.   resource 'STR '    ( SUBMIT_FORM_RESID + 0, "Submit form", purgeable ) {
  272.       "Submit form:%d,%d"
  273.   };
  274.   resource 'STR '    ( SAVE_IMAGE_RESID + 0, "Save image as", purgeable ) {
  275.       "Save Image as:"
  276.   };
  277.   resource 'STR '    ( SAVE_QUOTE_RESID + 0, "Save╔", purgeable ) {
  278.       "Save ╥"
  279.   };
  280.   resource 'STR '    ( WILL_OPEN_WITH_RESID + 0, "Will open with╔", purgeable ) {
  281.       "Will open with ╥"
  282.   };
  283.   resource 'STR '    ( SAVE_AS_A_RESID + 0, "Save as a╔", purgeable ) {
  284.       "Saving as a ╥"
  285.   };
  286.   resource 'STR '    ( FILE_RESID + 0, "file", purgeable ) {
  287.           "╙ file."
  288.   };
  289.   resource 'STR '    ( COULD_NOT_SAVE_RESID + 0, "Could not save", purgeable ) {
  290.       "Could not save "
  291.   };
  292.   resource 'STR '    ( DISK_FULL_RESID + 0, "Disk full", purgeable ) {
  293.       " because the disk is full."
  294.   };
  295.   resource 'STR '    ( DISK_ERR_RESID + 0, "Disk error", purgeable ) {
  296.               " because of a disk error."
  297.   };
  298.   resource 'STR '    ( BOOKMARKS_RESID + 0, "Bookmarks", purgeable ) {
  299.       "Bookmarks"
  300.   };
  301.   resource 'STR '    ( NOT_VISITED_RESID + 0, "Not visited", purgeable ) {
  302.       "Not visited"
  303.   };
  304.   resource 'STR '    ( NO_FORM2HOTLIST_RESID + 0, "No add form to hotlist", purgeable ) {
  305.       "Cannot add the result of a form submission to the hotlist"
  306.   };
  307.   resource 'STR '    ( NEW_ITEM_RESID + 0, "New item", purgeable ) {
  308.       "New Item"
  309.   };
  310.   resource 'STR '    ( NEW_HEADER_RESID + 0, "New Folder", purgeable ) {
  311.       "New Folder"
  312.   };
  313.   resource 'STR '    ( CONFIRM_RM_HDR_RESID + 0, "Confirm Remove Folder", purgeable ) {
  314.       "Are you sure that you want to remove the folder \""
  315.   };
  316.   resource 'STR '    ( AND_ITEMS_RESID + 0, "Add items", purgeable ) {
  317.       "\" and its items?"
  318.   };
  319.   resource 'STR '    ( SAVE_BKMKS_AS_RESID + 0, "Save bookmark as", purgeable ) {
  320.       "Save bookmarks as:"
  321.   };
  322.   resource 'STR '    ( END_LIST_RESID + 0, "End of list", purgeable ) {
  323.       "End of List"
  324.   };
  325.   resource 'STR '    ( ENTIRE_LIST_RESID + 0, "Entire list", purgeable ) {
  326.       "Entire List"
  327.   };
  328.   resource 'STR '    ( NEW_RESID + 0, "new", purgeable ) {
  329.       "new"
  330.   };
  331.   resource 'STR '    ( OTHER_RESID + 0, "Other", purgeable ) {
  332.       "Other"
  333.   };
  334.   resource 'STR '    ( MEM_AVAIL_RESID + 0, "Memory available", purgeable ) {
  335.       "M available"
  336.   };
  337.   resource 'STR '    ( SAVE_RESID + 0, "Save", purgeable ) {
  338.       "Save to disk"
  339.   };
  340.   resource 'STR '    ( LAUNCH_RESID + 0, "Launch", purgeable ) {
  341.       "Launch"
  342.   };
  343.   resource 'STR '    ( INTERNAL_RESID + 0, "Internal", purgeable ) {
  344.       "Netscape (internal)"
  345.   };
  346.   resource 'STR '    ( UNKNOWN_RESID + 0, "", purgeable ) {
  347.       "Unknown: Prompt user"
  348.   };
  349.   resource 'STR '    ( MEGA_RESID + 0, "", purgeable ) {
  350.       "M"
  351.   };
  352.   resource 'STR '    ( KILO_RESID + 0, "", purgeable ) {
  353.       "K"
  354.   };
  355.   
  356.   resource 'STR '    ( PICK_COLOR_RESID + 0, "Pick color", purgeable ) {
  357.       "Pick a color"
  358.   };
  359.   resource 'STR '    ( BAD_APP_LOCATION_RESID + 0, "Bad app location", purgeable ) {
  360.       "Finder desktop database reported improper location of the application \"",
  361.   };
  362.   resource 'STR '    ( REBUILD_DESKTOP_RESID + 0, "Rebuild desktop", purgeable ) {
  363.       "\" to Netscape. Next time you start up, please rebuild your desktop."
  364.   };
  365.   resource 'STR '    ( UNTITLED_RESID + 0, "Untitled", purgeable ) {
  366.       "(untitled)"
  367.   };
  368.   resource 'STR '    ( REG_EVENT_ERR_RESID + 0, "Reg. Event Handling Err", purgeable ) {
  369.       "Error in handling RegisterEvent"
  370.   };
  371.   resource 'STR '    ( APP_NOT_REG_RESID + 0, "App not registered", purgeable ) {
  372.       "This app was not registered"
  373.   };
  374.   resource 'STR '    ( UNREG_EVENT_ERR_RESID + 0, "Unreg. Event Handling Err", purgeable ) {
  375.       "Error in handling UnregisterEvent"
  376.   };
  377.   resource 'STR '    ( BOOKMARK_HTML_RESID + 0, "Bookmarks HTML", purgeable ) {
  378.       "MCOM-bookmarks.html"
  379.   };
  380.   resource 'STR '    ( NO_DISKCACHE_DIR_RESID + 0, "No disk cache folder", purgeable ) {
  381.       "Preset disk cache folder could not be found.\r Default folder in Preferences will be used."
  382.   };
  383.   resource 'STR '    ( NO_SIGFILE_RESID + 0, "No signature file", purgeable ) {
  384.       "The signature file specified in your preferences could not be found."
  385.   };
  386.   resource 'STR '    ( NO_BACKDROP_RESID + 0, "No backdrop for prefs", purgeable ) {
  387.       "The backdrop file specified in your preferences could not be found."
  388.   };
  389.   resource 'STR '    ( SELECT_RESID + 0, "Select", purgeable ) {
  390.       "Select "
  391.   };
  392.   resource 'STR '    ( AE_ERR_RESID + 0, "AE error reply", purgeable ) {
  393.       "Netscape received AppleEvent error reply: "
  394.   };
  395.   resource 'STR ' ( CHARSET_RESID, "Message Charset", purgeable ) {
  396.       "x-mac-roman"
  397.   };
  398.   resource 'STR ' ( BROWSE_RESID, "Browse", purgeable ) {
  399.       "Browse╔"
  400.   };
  401.   
  402.   resource 'STR ' ( ENCODING_CAPTION_RESID, "", purgeable ) {
  403.       "Encoding For "
  404.   };
  405.  
  406.   resource 'STR ' ( NO_TWO_NETSCAPES_RESID, "", purgeable ) {
  407.       "You cannot run two versions of Netscape at once. "
  408.     "This copy will quit now."
  409.   };
  410.  
  411. resource 'STR ' ( PG_NUM_FORM_RESID, "", purgeable ) {
  412.     "Page: %d"
  413. };
  414.  
  415. resource 'STR ' ( REPLY_FORM_RESID, "", purgeable ) {
  416.     "Re: "
  417. };
  418.  
  419. resource 'STR ' ( MENU_SEND_NOW, "", purgeable ) {
  420.     "Send Mail Now"
  421. };
  422.  
  423. resource 'STR ' ( QUERY_SEND_OUTBOX, "", purgeable ) {
  424.     "Your Outbox folder contains %d unsent messages. Send them now ?"
  425. };
  426.  
  427. resource 'STR ' ( QUERY_SEND_OUTBOX_SINGLE, "", purgeable ) {
  428.     "Your Outbox folder contains an unsent message. Send it now ?"
  429. };
  430.  
  431. resource 'STR ' ( MENU_SEND_LATER, "", purgeable ) {
  432.     "Send Mail Later"
  433. };
  434.  
  435. resource 'STR ' ( MENU_SAVE_AS, "", purgeable ) {
  436.     "Save as╔"
  437. };
  438. resource 'STR ' ( MENU_SAVE_FRAME_AS, "", purgeable ) {
  439.     "Save Frame as╔"
  440. };
  441. resource 'STR ' ( MENU_PRINT, "", purgeable ) {
  442.     "Print╔"
  443. };
  444. resource 'STR ' ( MENU_PRINT_FRAME, "", purgeable ) {
  445.     "Print Frame╔"
  446. };
  447. resource 'STR ' ( MENU_RELOAD, "", purgeable ) {
  448.     "Reload"
  449. };
  450. resource 'STR ' ( MENU_SUPER_RELOAD, "", purgeable ) {
  451.     "Super Reload"
  452. };
  453. resource 'STR ' ( MAC_PROGRESS_NET, "", purgeable ) {
  454.  "Initializing network╔"
  455. };
  456. resource 'STR ' ( MAC_PROGRESS_PREFS, "", purgeable ) {
  457.     "Reading Preferences╔"
  458. };
  459. resource 'STR ' ( MAC_PROGRESS_BOOKMARK, "", purgeable ) {
  460.     "Reading Bookmarks╔"
  461. };
  462. resource 'STR ' ( MAC_PROGRESS_ADDRESS, "", purgeable ) {
  463.     "Reading Address Book╔"
  464. };
  465. resource 'STR ' ( MAC_PROGRESS_JAVAINIT, "", purgeable ) {
  466.     "Initializing Java╔"
  467. };
  468. resource 'STR ' ( MAC_UPLOAD_TO_FTP, "MAC_UPLOAD_TO_FTP", purgeable ) {
  469.     "Are you sure that  want to upload the dragged files to the FTP server?"
  470. };    /*    JJE    */
  471. resource 'STR ' ( POP_USERNAME_ONLY, "POP_USERNAME_ONLY", purgeable ) {
  472.     "Your POP User Name is just your user name (e.g. user), not your full POP address (e.g. user@internet.com)."
  473. };    /*    JJE    */
  474. resource 'STR ' ( MAC_PLUGIN, "MAC_PLUGIN", purgeable ) {
  475.     "Plugin:"
  476. };    /*    JJE    */
  477. resource 'STR ' ( MAC_NO_PLUGIN, "MAC_NO_PLUGIN", purgeable ) {
  478.     "No plugins"
  479. };    /*    JJE    */
  480. resource 'STR ' ( MAC_REGISTER_PLUGINS, "MAC_REGISTER_PLUGINS", purgeable ) {
  481.     "Registering plugins"
  482. };    /*    JJE    */
  483. resource 'STR ' ( DOWNLD_CONT_IN_NEW_WIND, "DOWNLD_CONT_IN_NEW_WIND", purgeable ) {
  484.     "Download continued in a new window."
  485. };    /*    JJE    */
  486. resource 'STR ' ( ATTACH_NEWS_MESSAGE, "ATTACH_NEWS_MESSAGE", purgeable ) {
  487.     "News message"
  488. };    /*    JJE    */
  489. resource 'STR ' ( ATTACH_MAIL_MESSAGE, "ATTACH_MAIL_MESSAGE", purgeable ) {
  490.     "Mail message"
  491. };    /*    JJE    */
  492. resource 'STR ' ( MBOOK_NEW_ENTRY, "MBOOK_NEW_ENTRY", purgeable ) {
  493.     "New entry"
  494. };    /*    JJE    */
  495. resource 'STR ' ( MCLICK_BACK_IN_FRAME, "MCLICK_BACK_IN_FRAME", purgeable ) {
  496.     "Back in Frame"
  497. };    /*    JJE    */
  498. resource 'STR ' ( MCLICK_BACK, "MCLICK_BACK", purgeable ) {
  499.     "Back"
  500. };    /*    JJE    */
  501. resource 'STR ' ( MCLICK_FWRD_IN_FRAME, "MCLICK_FWRD_IN_FRAME", purgeable ) {
  502.     "Forward in Frame"
  503. };    /*    JJE    */
  504. resource 'STR ' ( MCLICK_FORWARD, "MCLICK_FORWARD", purgeable ) {
  505.     "Forward"
  506. };    /*    JJE    */
  507. resource 'STR ' ( MCLICK_SAVE_IMG_AS, "MCLICK_SAVE_IMG_AS", purgeable ) {
  508.     "Save Image as:"
  509. };    /*    JJE    */
  510. resource 'STR ' ( SUBMIT_FILE_WITH_DATA_FK, "SUBMIT_FILE_WITH_DATA_FK", purgeable ) {
  511.     "You can only submit a file that has a data fork."
  512. };    /*    JJE    */
  513. resource 'STR ' ( ABORT_CURR_DOWNLOAD, "ABORT_CURR_DOWNLOAD", purgeable ) {
  514.     "Are you sure that you want to abort the current download?"
  515. };    /*    JJE    */
  516. resource 'STR ' ( MACDLG_SAVE_AS, "MACDLG_SAVE_AS", purgeable ) {
  517.     "Save as: "
  518. };    /*    JJE    */
  519. resource 'STR ' ( THE_ERROR_WAS, "THE_ERROR_WAS", purgeable ) {
  520.     "The error was:"
  521. };    /*    JJE    */
  522. resource 'STR ' ( MBOOK_NEW_BOOKMARK, "MBOOK_NEW_BOOKMARK", purgeable ) {
  523.     "New Bookmark"
  524. };    /*    JJE    */
  525.  
  526. resource 'STR ' ( MENU_MAIL_DOCUMENT, "", purgeable ) {
  527.     "Mail Document╔"
  528. };    
  529.  
  530. resource 'STR ' ( MENU_MAIL_FRAME, "", purgeable ) {
  531.     "Mail Frame╔"
  532. };    
  533.  
  534. resource 'STR ' ( DEFAULT_PLUGIN_URL, "", purgeable ) {
  535.     "http://cgi.netscape.com/eng/mozilla/2.0/extensions/info.cgi"
  536. };    
  537.  
  538. /* Bookmark Seperate string, For Japanese, please change to something like ---- */
  539. resource 'STR ' ( MBOOK_SEPARATOR_STR, "MBOOK_SEPARATOR_STR", purgeable ) {
  540.     "╤╤╤╤╤╤╤╤╤╤╤╤╤╤╤╤╤╤╤╤"
  541. };    
  542.  
  543. resource 'STR ' ( RECIPIENT, "", purgeable ) {
  544.     "Recipient"
  545. };
  546.  
  547. resource 'STR ' ( DELETE_MIMETYPE, "", purgeable ) {
  548.     "Are you sure you want to delete this type? Netscape will not be able to display information of this type if you proceed."
  549. };
  550.  
  551. /* mail attachments are given a content-description string,
  552.  like "Microsoft Word Document".  This suffix comes after
  553.  the application name */
  554.  
  555. resource 'STR ' ( DOCUMENT_SUFFIX, "", purgeable ) {
  556.     "Document"
  557. };
  558.  
  559. resource 'STR ' ( PASSWORD_CHANGE_STRING, "", purgeable ) {
  560.     "Change Password"
  561. };
  562.  
  563. resource 'STR ' ( PASSWORD_SET_STRING, "", purgeable ) {
  564.     "Set Password"
  565. };
  566.  
  567.  
  568. /*-----------------------------------------------------------------------------
  569.     Common Stuff
  570. -----------------------------------------------------------------------------*/
  571. /*
  572. #define Script        smRoman=0, smJapanese, smTradChinese, smKorean,        \
  573.                     smArabic, smHebrew, smGreek, smCyrillic, smRSymbol,    \
  574.                     smDevanagari, smGurmukhi, smGujarati, smOriya,        \
  575.                     smBengali, smTamil, smTelugu, smKannada,            \
  576.                     smMalayalam, smSinhalese, smBurmese, smKhmer,        \
  577.                     smThai, smLaotian, smGeorgian, smArmenian,            \
  578.                     smSimpChinese, smTibetan, smMongolian, smGeez,        \
  579.                     smSlavic, smVietnamese, smExtArabic, smUninterp        \
  580. */
  581. /*     Language Group            Proportional            Fixed         ProportionalFixed    Character                    ScriptID for      Txtr        Txtr            */
  582. /*     Name                       Font Name                    Font Name        Size    Size    Set ID                        Font Fallback      ButtonID    TextFieldID        */
  583.  
  584. resource 'Fnec' (FNEC_RESID, "Font definitation for every encoding", purgeable) {
  585.     {
  586.     "Western",                "Times",                "Courier",        12,        10,        CS_MAC_ROMAN,                smRoman,         4002,        4001;    
  587.     "Japanese",                "ì╫û╛Æ⌐æ╠",                 "Osakaü|ôÖò¥",    12,        12,        CS_SJIS,                    smJapanese,         4004,        4003;
  588.     "Central European",        "Times CE",                "Courier CE",     12,        10,        CS_MAC_CE,                    smSlavic,          4006,        4005;
  589.     "Traditional Chinese",    "Apple LiSung Light",    "Taipei",         16,        12,        CS_BIG5,                    smTradChinese,     4008,        4007;
  590.     "Simplified Chinese",    "Song",                    "*Beijing*",    16,        12,        CS_GB_8BIT,                    smSimpChinese,     4010,        4009;    
  591.     "Korean",                "AppleGothic",            "Seoul",        12,        12,        CS_KSC_8BIT,                smKorean,         4012,        4011;
  592.     "Cyrillic",                "Å≡▀∞εΘ Å≡ε∩",            "Å≡▀∞εΘ",        12,        12,        CS_MAC_CYRILLIC,            smCyrillic,         4016,        4015;
  593.     "Greek",                "GrTimes",                "GrCourier",    12,        12,        CS_MAC_GREEK,                smRoman,         4018,        4017;
  594.     "Turkish",                "Times",                "Courier",        12,        10,        CS_MAC_TURKISH,                smRoman,         4020,        4019;    
  595.     "User-Defined",            "Times",                "Courier",         12,        10,        CS_USER_DEFINED_ENCODING,    smRoman,         4014,        4013;        
  596.     }
  597. };
  598.  
  599.  
  600. resource 'Csid' (cmd2csid_tbl_ResID, "csIDs", purgeable) {
  601.     {
  602.   /* win_csid         doc_csid            cmdNumber */
  603.     CS_MAC_ROMAN,     CS_ASCII,            cmd_ASCII,
  604.     CS_MAC_ROMAN,     CS_LATIN1,             cmd_LATIN1,
  605.     CS_SJIS,          CS_JIS,              cmd_JIS,
  606.     CS_SJIS,           CS_SJIS,             cmd_SJIS,
  607.     CS_SJIS,           CS_EUCJP,            cmd_EUCJP,
  608.     CS_SJIS,           CS_SJIS_AUTO,          cmd_SJIS_AUTO,
  609.     CS_MAC_ROMAN,     CS_MAC_ROMAN,          cmd_MAC_ROMAN,
  610.     CS_MAC_CE,        CS_LATIN2,             cmd_LATIN2,
  611.     CS_MAC_CE,        CS_MAC_CE,             cmd_MAC_CE,
  612.     CS_MAC_CE,        CS_CP_1250,             cmd_CP1250,
  613.     CS_BIG5,        CS_BIG5,             cmd_BIG5,
  614.     CS_BIG5,        CS_CNS_8BIT,           cmd_CNS_8BIT,
  615.     CS_GB_8BIT,       CS_GB_8BIT,            cmd_GB_8BIT,
  616.     CS_KSC_8BIT,      CS_KSC_8BIT,           cmd_KSC_8BIT,
  617.     CS_KSC_8BIT,      CS_2022_KR,            cmd_2022_KR,
  618.     
  619.     CS_MAC_CYRILLIC,  CS_MAC_CYRILLIC,       cmd_MAC_CYRILLIC,
  620.     CS_MAC_CYRILLIC,  CS_8859_5,             cmd_8859_5,
  621.     CS_MAC_CYRILLIC,  CS_CP_1251,            cmd_CP1251,
  622.     CS_MAC_CYRILLIC,  CS_KOI8_R,             cmd_KOI8R,
  623.     CS_MAC_GREEK,     CS_MAC_GREEK,          cmd_MAC_GREEK,
  624.     CS_MAC_GREEK,     CS_8859_7,             cmd_8859_7,
  625.     CS_MAC_TURKISH,   CS_MAC_TURKISH,        cmd_MAC_TURKISH,
  626.     CS_MAC_TURKISH,   CS_8859_9,             cmd_8859_9,
  627.     CS_USER_DEFINED_ENCODING,CS_USER_DEFINED_ENCODING, cmd_USER_DEFINED_ENCODING
  628.  
  629.     }
  630. };
  631.  
  632.  
  633. resource 'MIME' ( MIME_PREFS_FIRST_RESID, "image/gif", purgeable ) {
  634.     'JVWR',
  635.     'GIFf',
  636.     2,                
  637.     "JPEGView",
  638.     "image/gif",
  639.     "gif"
  640. };
  641.  
  642. resource 'MIME' ( MIME_PREFS_FIRST_RESID + 1, "image/jpeg", purgeable ) {
  643.     'JVWR',
  644.     'JPEG',
  645.     2,                /* User action - Save = 0, Launch = 1, Internal = 2, Unknown = 3 */
  646.     "JPEGView",
  647.     "image/jpeg",
  648.     "jpg,jpeg,jpe"
  649. };
  650.  
  651. resource 'MIME' ( MIME_PREFS_FIRST_RESID + 2, "image/pict", purgeable ) {
  652.     'ttxt',
  653.     'PICT',
  654.     1,                /* User action - Save = 0, Launch = 1, Internal = 2, Unknown = 3 */
  655.     "TeachText",
  656.     "image/pict",
  657.     "pic,pict"
  658. };
  659.  
  660. resource 'MIME' ( MIME_PREFS_FIRST_RESID + 3, "image/tiff", purgeable ) {
  661.     'JVWR',
  662.     'TIFF',
  663.     1,                /* User action - Save = 0, Launch = 1, Internal = 2, Unknown = 3 */
  664.     "JPEGView",
  665.     "image/tiff",
  666.     "tif,tiff"
  667. };
  668.  
  669. resource 'MIME' ( MIME_PREFS_FIRST_RESID + 4, "image/x-xbitmap", purgeable ) {
  670.     '????',
  671.     'ttxt', 
  672.     2,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  673.     "Unknown", 
  674.     "image/x-xbitmap",
  675.     "xbm"
  676. };
  677.  
  678.  
  679. resource 'MIME' ( MIME_PREFS_FIRST_RESID + 5, "audio/basic", purgeable ) {
  680.     'SNDM',
  681.     'ULAW',
  682.     1,                /* User action - Save = 0, Launch = 1, Internal = 2, Unknown = 3 */
  683.     "Sound Machine",
  684.     "audio/basic",
  685.     "au,snd"
  686. };
  687.  
  688. resource 'MIME' ( MIME_PREFS_FIRST_RESID + 6, "audio/aiff", purgeable ) {
  689.     'SNDM',
  690.     'AIFF',
  691.     1,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  692.     "Sound Machine",
  693.     "audio/aiff",
  694.     "aiff,aif"
  695. };
  696.  
  697. resource 'MIME' ( MIME_PREFS_FIRST_RESID + 7, "audio/x-wav", purgeable ) {
  698.     'SCPL',
  699.     'WAVE', 
  700.     1,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  701.     "SoundApp", 
  702.     "audio/x-wav",
  703.     "wav"
  704. };
  705.  
  706.  
  707. resource 'MIME' ( MIME_PREFS_FIRST_RESID + 8, "video/quicktime", purgeable ) {
  708.     'TVOD',
  709.     'MooV',
  710.     1,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  711.     "Simple Player",
  712.     "video/quicktime",
  713.     "qt,mov"
  714. };
  715.  
  716. resource 'MIME' ( MIME_PREFS_FIRST_RESID + 9, "video/mpeg", purgeable ) {
  717.     'mMPG',
  718.     'MPEG',
  719.     1,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  720.     "Sparkle",
  721.     "video/mpeg",
  722.     "mpg,mpeg,mpe"
  723. };
  724.  
  725. resource 'MIME' ( MIME_PREFS_FIRST_RESID + 10, "video/x-msvideo", purgeable ) {
  726.     'AVIC',
  727.     '????',
  728.     1,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  729.     "AVI to QT Utility",
  730.     "video/x-msvideo",
  731.     "avi"
  732. };
  733.  
  734. resource 'MIME' ( MIME_PREFS_FIRST_RESID + 11, "video/x-qtc", purgeable ) {
  735.     'mtwh',
  736.     '.qtc',
  737.     1,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  738.     "Conferencing Helper Application",
  739.     "video/x-qtc",
  740.     "qtc"
  741. };
  742.  
  743.  
  744. resource 'MIME' ( MIME_PREFS_FIRST_RESID + 12, "application/mac-binhex40", purgeable ) {
  745.     'SITx',
  746.     'TEXT', 
  747.     1,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  748.     "Stuffit Expander", 
  749.     "application/mac-binhex40",
  750.     "hqx"
  751. };
  752.  
  753. resource 'MIME' ( MIME_PREFS_FIRST_RESID + 13, "application/x-stuffit", purgeable ) {
  754.     'SITx',
  755.     'SITD', 
  756.     1,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  757.     "Stuffit Expander", 
  758.     "application/x-stuffit",
  759.     "sit"
  760. };
  761.  
  762. resource 'MIME' ( MIME_PREFS_FIRST_RESID + 14, "application/x-macbinary", purgeable ) {
  763.     'MB2P',
  764.     'TEXT', 
  765.     1,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  766.     "Mac BinaryII+", 
  767.     "application/x-macbinary",
  768.     "bin"
  769. };
  770.  
  771. resource 'MIME' ( MIME_PREFS_FIRST_RESID + 15, "application/zip", purgeable ) {
  772.     'ZIP ',
  773.     'ZIP ', 
  774.     1,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  775.     "ZipIt", 
  776.     "application/x-zip",
  777.     "z,zip"
  778. };
  779.  
  780. resource 'MIME' ( MIME_PREFS_FIRST_RESID + 16, "application/gzip", purgeable ) {
  781.     'Gzip',
  782.     'Gzip', 
  783.     1,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  784.     "MacGzip", 
  785.     "application/x-gzip",
  786.     "gz"
  787. };
  788.  
  789. resource 'MIME' ( MIME_PREFS_FIRST_RESID + 17, "application/msword", purgeable ) {
  790.     'MSWD',
  791.     'WDBN', 
  792.     0,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  793.     "MS Word", 
  794.     "application/msword",
  795.     "doc"
  796. };
  797.  
  798. resource 'MIME' ( MIME_PREFS_FIRST_RESID + 18, "application/x-excel", purgeable ) {
  799.     'XCEL',
  800.     'XLS5', 
  801.     0,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  802.     "MS Excel", 
  803.     "application/x-excel",
  804.     "xls"
  805. };
  806.  
  807.  
  808. /* Crappy mimes are those mime types that will never ever be seen by the user */
  809. #define CRAPPY_MIME 19
  810.  
  811. resource 'MIME' ( MIME_PREFS_FIRST_RESID + CRAPPY_MIME, "application/octet-stream", purgeable ) {
  812.     'ttxt',
  813.     'TEXT', 
  814.     3,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  815.     "TeachText", 
  816.     "application/octet-stream",
  817.     "exe"
  818. };
  819.  
  820. resource 'MIME' ( MIME_PREFS_FIRST_RESID + CRAPPY_MIME+1, "application/postscript", purgeable ) {
  821.     'ttxt',
  822.     'TEXT', 
  823.     3,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  824.     "TeachText", 
  825.     "application/postscript",
  826.     "ai,eps,ps"
  827. };
  828.  
  829. resource 'MIME' ( MIME_PREFS_FIRST_RESID + CRAPPY_MIME+2, "application/rtf", purgeable ) {
  830.     'MSWD',
  831.     'TEXT', 
  832.     0,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  833.     "MS Word", 
  834.     "application/rtf",
  835.     "rtf"
  836. };
  837.  
  838. resource 'MIME' ( MIME_PREFS_FIRST_RESID + CRAPPY_MIME+3, "application/x-compressed", purgeable ) {
  839.     'LZIV',
  840.     'ZIVM', 
  841.     1,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  842.     "MacCompress", 
  843.     "application/x-compress",
  844.     ".Z"
  845. };
  846.  
  847. resource 'MIME' ( MIME_PREFS_FIRST_RESID + CRAPPY_MIME+4, "application/x-tar", purgeable ) {
  848.     'TAR ',
  849.     'TARF', 
  850.     1,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  851.     "tar", 
  852.     "application/x-tar",
  853.     "tar"
  854. };
  855.  
  856. resource 'MIME' ( MIME_PREFS_FIRST_RESID + CRAPPY_MIME+5, "image/x-cmu-raster", purgeable ) {
  857.     '????',
  858.     'ttxt', 
  859.     3,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  860.     "Unknown", 
  861.     "image/x-cmu-raster",
  862.     "ras"
  863. };
  864.  
  865. resource 'MIME' ( MIME_PREFS_FIRST_RESID + CRAPPY_MIME+6, "image/x-portable-anymap", purgeable ) {
  866.     '????',
  867.     'ttxt', 
  868.     3,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  869.     "Unknown", 
  870.     "image/x-portable-anymap",
  871.     "pnm"
  872. };
  873.  
  874. resource 'MIME' ( MIME_PREFS_FIRST_RESID + CRAPPY_MIME+7, "image/x-portable-anymap", purgeable ) {
  875.     '????',
  876.     'ttxt', 
  877.     3,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  878.     "Unknown", 
  879.     "image/x-portable-bitmap",
  880.     "pbm"
  881. };
  882.  
  883.  
  884. resource 'MIME' ( MIME_PREFS_FIRST_RESID + CRAPPY_MIME+8, "image/x-portable-bitmap", purgeable ) {
  885.     '????',
  886.     'ttxt', 
  887.     3,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  888.     "Unknown", 
  889.     "image/x-portable-graymap",
  890.     "pgm"
  891. };
  892.  
  893. resource 'MIME' ( MIME_PREFS_FIRST_RESID + CRAPPY_MIME+9, "image/x-portable-graymap", purgeable ) {
  894.     '????',
  895.     'ttxt', 
  896.     3,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  897.     "Unknown", 
  898.     "image/x-portable-graymap",
  899.     "pgm"
  900. };
  901.  
  902. resource 'MIME' ( MIME_PREFS_FIRST_RESID + CRAPPY_MIME+10, "image/x-rgb", purgeable ) {
  903.     '????',
  904.     'ttxt', 
  905.     3,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  906.     "Unknown", 
  907.     "image/x-rgb",
  908.     "rgb"
  909. };
  910.  
  911. resource 'MIME' ( MIME_PREFS_FIRST_RESID + CRAPPY_MIME+11, "image/x-xpixmap", purgeable ) {
  912.     '????',
  913.     'ttxt', 
  914.     2,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  915.     "Unknown", 
  916.     "image/x-xpixmap",
  917.     "xpm"
  918. };
  919.  
  920.  
  921. resource 'SMIM' ( 1, "Netscape/Source", purgeable ) {
  922.     'ttxt',
  923.     'TEXT', 
  924.     1,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  925.     "Teach Text", 
  926.     PREF_SOURCE,
  927.     ""
  928. };
  929.  
  930. resource 'SMIM' ( 2, "Netscape/Telnet", purgeable ) {
  931.     'NCSA',
  932.     'CONF', 
  933.     1,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  934.     "NCSA Telnet", 
  935.     TELNET_APPLICATION_MIME_TYPE,
  936.     "",
  937. };
  938.  
  939. resource 'SMIM' ( 3, "Netscape/tn3270", purgeable ) {
  940.     'GFTM',
  941.     'GFTS', 
  942.     1,                /* User action - Save = 0, Launch = 1, Internal =2, Unknown=3 */
  943.     "tn3270", 
  944.     TN3270_VIEWER_APPLICATION_MIME_TYPE,
  945.     ""
  946. };
  947.  
  948. resource 'STR ' ( mPREFS_UNSPECIFIED_ERR_ALERT, "Unspecified Error", purgeable ) {
  949.     "There was an error.  Preferences will not be saved.";
  950. };
  951.  
  952. resource 'STR ' ( mPREFS_CANNOT_OPEN_SECOND_ALERT, "Cant Open Second Prefs File", purgeable ) {
  953.     "You cannot open a second preferences file.";
  954. };
  955.  
  956. resource 'STR ' ( mPREFS_CANNOT_OPEN_SECOND_ALERT + 1, "-", purgeable ) {
  957.     "Quit Netscape and launch by double-clicking on the preferences file you wish to use.";
  958. };
  959.  
  960. resource 'STR ' ( mPREFS_CANNOT_CREATE, "Cant Create Prefs File", purgeable ) {
  961.     "The preferences file cannot be created.  Netscape will use the defaults.";
  962. };
  963.  
  964. resource 'STR ' ( mPREFS_CANNOT_CREATE_PREFS_FOLDER, "Cant Create Prefs Folder", purgeable ) {
  965.     "The preferences folder could not be created.  Netscape will use the defaults.";
  966. };
  967.  
  968. resource 'STR ' ( mPREFS_CANNOT_READ, "Cant Read Preferences", purgeable ) {
  969.     "The preferences file cannot be read.  Netscape will use the defaults.";
  970. };
  971.  
  972. resource 'STR ' ( mPREFS_CANNOT_WRITE, "Cant Write Preferences", purgeable ) {
  973.     "There was an error writing the preferences.  They will not be saved.";
  974. };
  975.  
  976.  
  977.  
  978. // TRANSLATION RESOURCES
  979. /* les tables pour ISO 8859-1 : A. Pirard (ULg) - mai 1992 */
  980.  
  981. data 'xlat' (128, "ISO1 -> MACR", purgeable) {
  982. /*        translation ISO 8859-1 -> Macintosh            */
  983. /*          x0x1 x2x3 x4x5 x6x7 x8x9 xAxB xCxD xExF    */
  984. /*8x*/    $"A5AA E2C4 E3C9 A0E0 F6E4 C9DC CED9 DAB6"    /* Ñ¬¡░│╖║╜├┼╔╤╘┘┌╢ */
  985. /*9x*/    $"C6D4 D5D2 D3A5 D0D1 F7AA FBDD CFFF F5D9"    /* ╞╬ΓπΣ≡÷≈∙·√²■ ⌡─ */
  986. /*Ax*/    $"CAC1 A2A3 DBB4 7CA4 ACA9 BBC7 C2D0 A8F8"    /* ╩┴óú█┤╧ñ¼⌐╗╟┬╨¿° */
  987. /*Bx*/    $"A1B1 3233 ABB5 A6E1 FC31 BCC8 B9B8 B2C0"    /* í▒╙╥½╡ªßⁿ╒╝╚╣╕▓└ */
  988. /*Cx*/    $"CBE7 E5CC 8081 AE82 E983 E6E8 EDEA EBEC"    /* ╦τσ╠Çü«éΘâµΦφΩδ∞ */
  989. /*Dx*/    $"DC84 F1EE EFCD 8578 AFF4 F2F3 86A0 DEA7"    /* ▄ä±ε∩═à╫»⌠≥≤åá▐º */
  990. /*Ex*/    $"8887 898B 8A8C BE8D 8F8E 9091 9392 9495"    /* êçëïèî╛ìÅÄÉæôÆöò */
  991. /*Fx*/    $"DD96 9897 999B 9AD6 BF9D 9C9E 9FE0 DFD8"    /* ▌ûÿùÖ¢Ü╓┐¥£₧ƒα▀╪ */
  992. };
  993.  
  994. data 'xlat' (129, "MACR -> ISO1", purgeable) {
  995. /*        translation Macintosh -> ISO 8859-1            */
  996. /*          x0x1 x2x3 x4x5 x6x7 x8x9 xAxB xCxD xExF    */
  997. /*8x*/    $"C4C5 C7C9 D1D6 DCE1 E0E2 E4E3 E5E7 E9E8"    /* ÇüéâäàåçêëèïîìÄÅ */
  998. /*9x*/    $"EAEB EDEC EEEF F1F3 F2F4 F6F5 FAF9 FBFC"    /* ÉæÆôöòûùÿÖÜ¢£¥₧ƒ */
  999. /*Ax*/    $"DDB0 A2A3 A780 B6DF AEA9 99B4 A882 C6D8"    /* áíóúñѪº¿⌐¬½¼¡«» */
  1000. /*Bx*/    $"83B1 BE84 A5B5 8F85 BDBC 86AA BA87 E6F8"    /* ░▒▓│┤╡╢╖╕╣║╗╝╜╛┐ */
  1001. /*Cx*/    $"BFA1 AC88 9F89 90AB BB8A A0C0 C3D5 91A6"    /* └┴┬├─┼╞╟╚╔╩╦╠═╬╧ */
  1002. /*Dx*/    $"AD8B B3B2 8CB9 F7D7 FF8D 8EA4 D0F0 DEFE"    /* ╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀ */
  1003. /*Ex*/    $"FDB7 9293 94C2 CAC1 CBC8 CDCE CFCC D3D4"    /* αßΓπΣσµτΦΘΩδ∞φε∩ */
  1004. /*Fx*/    $"95D2 DADB D99E 9697 AF98 999A B89B 9C9D"    /* ≡±≥≤⌠⌡÷≈°∙·√ⁿ²■  */
  1005. };
  1006.  
  1007.  
  1008. data 'xlat' (130, "ISO2 -> MACCE", purgeable) {
  1009. /* translation 8859-2 -> MacCEuro */
  1010. /*        x0x1 x2x3 x4x5 x6x7 x8x9 xAxB xCxD xExF    */
  1011. /*8x*/  $"8081 8283 8485 8687 8889 8A8B 8C8D 8E8F"    /* ................ */
  1012. /*9x*/  $"9091 9293 9495 9697 9899 9A9B 9C9D 9E9F"    /* ................ */
  1013. /*Ax*/  $"CA84 FFFC A4BB E5A4 ACE1 53E8 8F2D EBFB"    /* áí.ú.Ѫº¿⌐.½¼.«» */
  1014. /*Bx*/  $"A188 B2B8 27BC E6FF B8E4 73E9 90BD ECFD"    /* ░▒.│.╡╢╖.╣.╗╝.╛┐ */
  1015. /*Cx*/  $"D9E7 4141 80BD 8C43 8983 A245 9DEA 4991"    /* └┴..─┼╞.╚╔╩.╠═.╧ */
  1016. /*Dx*/  $"44C1 C5EE EFCC 8578 DBF1 F2F4 86F8 54A7"    /* .╤╥╙╘╒╓.╪┘┌█▄▌.▀ */
  1017. /*Ex*/  $"DA87 6161 8ABE 8D63 8B8E AB65 9E92 6993"    /* αß..Σσµ.ΦΘΩ.∞φ.∩ */
  1018. /*Fx*/  $"64C4 CB97 99CE 9AD6 DEF3 9CF5 9FF9 74A1"    /* .±≥≤⌠⌡÷≈°∙·√ⁿ².. */
  1019. };
  1020.  
  1021. data 'xlat' (131, "MACCE -> ISO2", purgeable) {
  1022. /* translation MacCEuro -> 8859-2 */
  1023. /*        x0x1 x2x3 x4x5 x6x7 x8x9 xAxB xCxD xExF    */
  1024. /*8x*/  $"C441 61C9 A1D6 DCE1 B1C8 E4E8 C6E6 E9AC"    /* Ç..âäàåçêëèïîìÄÅ */
  1025. /*9x*/  $"BCCF EDEF 4565 45F3 65F4 F66F FACC ECFC"    /* ÉæÆô...ù.ÖÜ.£¥₧ƒ */
  1026. /*Ax*/  $"A0B0 CA4C A72A A6DF 5263 54EA A8AD 6749"    /* .íó.ñ..º...½¼... */
  1027. /*Bx*/  $"6949 B2B3 694B 6445 B34C 6CA5 B5C5 E54E"    /* ........╕..╗╝╜╛. */
  1028. /*Cx*/  $"6ED1 2DC3 F1D2 C63D 3FC9 A0F2 D54F F54F"    /* .┴..─┼....╩╦╠.╬. */
  1029. /*Dx*/  $"2D2D 2222 2727 F7D7 6FC0 E0D8 3D3F F852"    /* ......╓..┘┌█..▐. */
  1030. /*Ex*/  $"72A9 2C2C B9A6 B6C1 ABBB CDAE BE55 D3D4"    /* .ß..ΣσµτΦΘΩδ∞.ε∩ */
  1031. /*Fx*/  $"75D9 DAF9 DBFB 5575 DDFD 6BAF A3BF 47B7"    /* .±≥≤⌠⌡..°∙.√ⁿ².  */
  1032. };
  1033.  
  1034.  
  1035. read 'Tang' ( ABOUT_BIGLOGO_TANG, "biglogo.gif", purgeable) "biglogo.gif";    // Was splash.gif
  1036. read 'Tang' ( ABOUT_JAVALOGO_TANG, "javalogo.gif", purgeable) "javalogo.gif";
  1037. read 'Tang' ( ABOUT_RSALOGO_TANG, "rsalogo.gif", purgeable ) "rsalogo.gif";
  1038. read 'Tang' ( ABOUT_HYPE_TANG, "hype.au", purgeable ) "hype.au";
  1039. read 'Tang' ( ABOUT_QTLOGO_TANG, "qtlogo.gif", purgeable) "qt_logo.gif";
  1040.  
  1041. read 'TEXT' ( ABOUT_ABOUTPAGE_TEXT, "about-all.html", purgeable ) "about-all.html";
  1042. read 'TEXT' ( ABOUT_AUTHORS_TEXT, "authors.html", purgeable ) "authors.html";
  1043. read 'TEXT' ( ABOUT_MAIL_TEXT, "mail.msg", purgeable ) "mail.msg";
  1044. read 'TEXT' ( ABOUT_MOZILLA_TEXT, "mozilla.html", purgeable ) "mozilla.html";
  1045. read 'TEXT' ( ABOUT_PLUGINS_TEXT, "aboutplg.html", purgeable ) "aboutplg.html";
  1046.  
  1047.  
  1048.