home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Examples / AppKit / Graph / English.lproj / Graph.strings next >
Encoding:
Text File  |  1992-06-21  |  1.7 KB  |  62 lines

  1.  
  2. /*
  3.  * This is the source file for the localizable strings in Graph.  The strings
  4.  * in this file are loaded on demand into the NXStringTable instance managed
  5.  * by the GraphApp object.
  6.  */
  7.  
  8.  
  9. /* Button title for the common OK and Cancel buttons */
  10. "ok button"            = "OK";
  11. "cancel button"            = "Cancel";
  12.  
  13.  
  14. /* Name of untitled documents */
  15. "untitled doc"            = "UNTITLED";
  16.  
  17.  
  18. /*
  19.  * The title and message shown in the Alert that appears when a file
  20.  * cannot be opened.
  21.  */
  22. "open alert title"        = "Open";
  23. "open alert message"        = "The file %s could not be opened.";
  24.  
  25.  
  26. /*
  27.  * The title and message shown in the Alert that appears when a file
  28.  * cannot be saved.
  29.  */
  30. "save alert title"        = "Save";
  31. "save alert message"        = "The file %s could not be created.";
  32.  
  33.  
  34. /*
  35.  * The title, message and buttons in the Alert that appears when a file
  36.  * with unsaved changes is closed.
  37.  */
  38. "close alert title"        = "Close";
  39. "close alert message"        = "%s has unsaved changes.  Save them?";
  40. "save button"            = "Save";
  41. "dont save button"        = "Don't Save";
  42.  
  43.  
  44. /*
  45.  * The title, message and buttons in the Alert that appears when the user
  46.  * quits with unsaved changes in documents.
  47.  */
  48. "quit alert title"        = "Quit";
  49. "quit alert message"        = "Some documents have unsaved changes";
  50. "review button"            = "Review Unsaved";
  51. "quit button"            = "Quit Anyway";
  52.  
  53.  
  54. /*
  55.  * The title and message shown in the Alert that appears when the text of
  56.  * an expression cannot be parsed.
  57.  */
  58. "parse alert title"        = "Invalid Expression";
  59. "parse alert message"        = "The expresion you entered is not valid.  Please type in an expression in terms of the variable 'x'.";
  60. "3D parse alert message"    = "The expresion you entered is not valid.  Please type in an expression in terms of the variables 'u' and 'v'.";
  61.  
  62.