home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Examples / AppKit / Draw / undo.subproj / LocalizableStringsForUndo.h < prev    next >
Text File  |  1996-08-12  |  864b  |  11 lines

  1. #import <Foundation/Foundation.h>
  2.  
  3. /* Localization strings for the undo subproject */
  4.  
  5. #define UNDO_OPERATION  NSLocalizedStringFromTable(@"&Undo", @"Operations", "The operation of undoing the last thing the user did.")
  6. #define UNDO_SOMETHING_OPERATION  NSLocalizedStringFromTable(@"&Undo %@", @"Operations", "The operation of undoing the last %@ operation the user did--all the entries in the Operations and TextOperations .strings files are the %@ of this or Redo.")
  7. #define REDO_OPERATION  NSLocalizedStringFromTable(@"&Redo", @"Operations", "The operation of redoing the last thing the user undid.")
  8. #define REDO_SOMETHING_OPERATION  NSLocalizedStringFromTable(@"&Redo %@", @"Operations", "The operation of redoing the last %@ operation the user undid--all the entries in the Operations and TextOperations .strings files are the %@ of either this or Undo.")
  9.  
  10.  
  11.