home *** CD-ROM | disk | FTP | other *** search
/ Tools / WinSN5.0Ver.iso / NETSCAP.50 / WIN1998.ZIP / ns / cmd / macfe / restext / exception_str.r < prev    next >
Encoding:
Text File  |  1998-04-08  |  2.0 KB  |  58 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. ////////////////////////////////////////////////////////////////////////////////////////
  18. //
  19. //     exception_str.r
  20. // 
  21. //    This file contains the strings used by our exception system. Each
  22. //    string has a corresponding code associated with it in the file "exception_codes.h".
  23. //    These two files should always be in synch.
  24. //
  25. //    These strings are used in an alert where the default text is :
  26. //    "Your last command could not be completed because ^0.  Error number ^1".
  27. //    The strings are substituted for the first argument ( ^0 ).
  28. //
  29. //////////////////////////////////////////////////////////////////////////
  30. //
  31. //    When        Who            What
  32. //    -----        ----        -----
  33. //
  34. //    1/6/97        piro        Genesis
  35. //
  36. //////////////////////////////////////////////////////////////////////////
  37.  
  38. #include "Types.r"
  39. #include "SysTypes.r"
  40. #include "exception_codes.h"
  41.  
  42. // Ñ╩generic exceptions
  43. resource 'STR#' ( genericExStringsID, "Generic exceptions" ) {{
  44.     "of an unknown error",            // 1
  45.     "a missing resource"            // 2
  46. }};
  47.  
  48. // Ñ╩browser exceptions
  49. resource 'STR#' ( browserExStringsID, "Browser exceptions" ) {{
  50.     "of an unknown browser error"     // 1
  51. }};
  52.  
  53. // Ñ╩mail exceptions
  54. resource 'STR#' ( mailExStringsID, "Mail exceptions" ) {{
  55.     "of an unknown mail error",         // 1
  56.     "the preference is missing"            // 2
  57. }};
  58.