IDEIntf: localized TToolBar designer menu entries

git-svn-id: trunk@28358 -
This commit is contained in:
maxim 2010-11-19 23:55:37 +00:00
parent c6791a4c61
commit f3363d1270
2 changed files with 8 additions and 4 deletions

View File

@ -1213,10 +1213,10 @@ end;
function TToolBarComponentEditor.GetVerb(Index: Integer): string;
begin
case Index of
0: Result := 'New Button';
1: Result := 'New Checkbutton';
2: Result := 'New Separator';
3: Result := 'New Divider';
0: Result := tbceNewButton;
1: Result := tbceNewCheckbutton;
2: Result := tbceNewSeparator;
3: Result := tbceNewDivider;
else
Result := '';
end;

View File

@ -190,6 +190,10 @@ resourcestring
tccesDeleteTab = 'Delete tab';
tccesMoveTabLeft = 'Move tab left';
tccesMoveTabRight = 'Move tab right';
tbceNewButton = 'New Button';
tbceNewCheckbutton = 'New CheckButton';
tbceNewSeparator = 'New Separator';
tbceNewDivider = 'New Divider';
//checklistbox editor
clbCheckListBoxEditor = 'CheckListBox Editor';