IDE: compiler options: renamed Messages to Verbosity and Compiler Messages to Messages

git-svn-id: trunk@19183 -
This commit is contained in:
mattias 2009-04-01 12:52:23 +00:00
parent 16a4cefdd3
commit 2375155c81
2 changed files with 7 additions and 7 deletions

View File

@ -261,7 +261,7 @@ type
procedure SetupParsingTab(Page: integer);
procedure SetupCodeGenerationTab(Page: integer);
procedure SetupLinkingTab(Page: integer);
procedure SetupMessagesTab(Page: integer);
procedure SetupVerbosityTab(Page: integer);
procedure SetupConfigMsgTab(Page: integer);
procedure SetupOtherTab(Page: integer);
procedure SetupConditionalTab(Page: integer);
@ -413,7 +413,7 @@ begin
inc(Page);
SetupLinkingTab(Page);
inc(Page);
SetupMessagesTab(Page);
SetupVerbosityTab(Page);
inc(Page);
SetupConfigMsgTab(Page);
inc(Page);
@ -1408,12 +1408,12 @@ begin
end;
{------------------------------------------------------------------------------
TfrmCompilerOptions SetupMessagesTab
TfrmCompilerOptions SetupVerbosityTab
------------------------------------------------------------------------------}
procedure TfrmCompilerOptions.SetupMessagesTab(Page: integer);
procedure TfrmCompilerOptions.SetupVerbosityTab(Page: integer);
begin
// Setup the Messages Tab
MainNoteBook.Page[Page].Caption:= dlgCOMessages;
MainNoteBook.Page[Page].Caption:= dlgCOVerbosity;
with grpVerbosity do begin
Caption := dlgVerbosity;

View File

@ -1276,8 +1276,8 @@ resourcestring
dlgCOParsing = 'Parsing';
dlgCodeGeneration = 'Code';
dlgCOLinking = 'Linking';
dlgCOMessages = 'Messages';
dlgCOCfgCmpMessages = 'Compiler Messages';
dlgCOVerbosity = 'Verbosity';
dlgCOCfgCmpMessages = 'Messages';
dlgCOOther = 'Other';
dlgCOInherited = 'Inherited';
dlgCOCompilation = 'Compilation';