Ignore:
Timestamp:
Sep 14, 2007, 8:39:54 PM (18 years ago)
Author:
RBRi
Message:

small text updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NewView/MainForm.pas

    r228 r236  
    690690    NoPrinterError: string;
    691691    SelectWindowToPrintError: string;
     692    PrintingComplete : string;
    692693    PrintingError: string;
    693694    StoppingPrintMsg: string;
     
    14231424  Language.LL( Apply, NoPrinterError, tmpPrefix + 'NoPrinterError', 'You don''t have a printer configured.' );
    14241425  Language.LL( Apply, SelectWindowToPrintError, tmpPrefix + 'SelectWindowToPrintError', 'You must select the window you want to print.' );
     1426  Language.LL( Apply, PrintingComplete, tmpPrefix + 'PrintingComplete', 'Printing complete' );
    14251427  Language.LL( Apply, PrintingError, tmpPrefix + 'PrintingError', 'Error while printing: ' );
    14261428  Language.LL( Apply, StoppingPrintMsg, tmpPrefix + 'StoppingPrintMsg', 'Stopping print...' );
     
    20512053procedure TMainForm.OnPrintComplete( Dummy: TObject );
    20522054begin
    2053   SetStatus( 'Printing complete' );
     2055  SetStatus(PrintingComplete);
    20542056  ResetProgress;
    20552057end;
Note: See TracChangeset for help on using the changeset viewer.