mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-23 09:19:40 +02:00
IDEIntf: added resourcestrings
git-svn-id: trunk@23020 -
This commit is contained in:
parent
a533956c13
commit
b0f209cfa3
@ -753,9 +753,9 @@ begin
|
||||
OldAction:=nil;
|
||||
except
|
||||
on E: Exception do begin
|
||||
MessageDlg('Error deleting action',
|
||||
'Error while deleting action:'#13
|
||||
+E.Message,mtError,[mbOk],0);
|
||||
MessageDlg(oisErrorDeletingAction,
|
||||
Format(oisErrorWhileDeletingAction, [#13, E.Message]), mtError, [mbOk
|
||||
], 0);
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
@ -828,6 +828,7 @@ begin
|
||||
SBShowMenuNewActions.Hint := cActionListEditorNewAction;
|
||||
mItemToolBarNewAction.Caption := cActionListEditorNewAction;
|
||||
mItemToolBarNewStdAction.Caption := cActionListEditorNewStdAction;
|
||||
mItemActListNewAction.Caption := cActionListEditorNewAction;
|
||||
mItemActListNewStdAction.Caption := cActionListEditorNewStdAction;
|
||||
mItemActListMoveDownAction.Caption := cActionListEditorMoveDownAction;
|
||||
mItemActListMoveUpAction.Caption := cActionListEditorMoveUpAction;
|
||||
|
@ -224,6 +224,8 @@ resourcestring
|
||||
|
||||
oisEditActionList = 'Edit action list...';
|
||||
oisActionListEditor = 'Action List Editor';
|
||||
oisErrorDeletingAction = 'Error deleting action';
|
||||
oisErrorWhileDeletingAction = 'Error while deleting action:%s%s';
|
||||
cActionListEditorNewAction = 'New Action';
|
||||
cActionListEditorNewStdAction = 'New Standard Action';
|
||||
cActionListEditorMoveDownAction = 'Move Down';
|
||||
|
Loading…
Reference in New Issue
Block a user