mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 16:38:02 +02:00
SynEdit: moved SynPopupMenu resource strings to the correct file
This commit is contained in:
parent
a39463e7a6
commit
dd1fd8a028
@ -401,6 +401,16 @@ resourcestring
|
||||
sCannotPlay = 'Cannot playback macro when recording';
|
||||
sCannotPause = 'Can only pause when recording';
|
||||
sCannotResume = 'Can only resume when paused';
|
||||
|
||||
//SynPopupMenu
|
||||
SYNS_Undo = '&Undo';
|
||||
SYNS_Redo = '&Redo';
|
||||
SYNS_Cut = 'C&ut';
|
||||
SYNS_Copy = '&Copy';
|
||||
SYNS_Paste = '&Paste';
|
||||
SYNS_Delete = '&Delete';
|
||||
SYNS_SelectAll = 'Select &all';
|
||||
|
||||
implementation
|
||||
|
||||
end.
|
||||
|
@ -5,7 +5,7 @@ unit SynPopupMenu;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils, Menus, SynEdit;
|
||||
Classes, SysUtils, Menus, SynEdit, SynEditStrConst;
|
||||
|
||||
type
|
||||
TSynDefaultPopupMenu = (dpmDisabled, dpmBefore, dpmAfter);
|
||||
@ -31,15 +31,6 @@ type
|
||||
TMenuEntry = (meNone, meUndo, meRedo, meCut, meCopy, mePaste,
|
||||
meDelete, meSelectAll);
|
||||
|
||||
resourcestring
|
||||
SYNS_Undo = '&Undo';
|
||||
SYNS_Redo = '&Redo';
|
||||
SYNS_Cut = 'C&ut';
|
||||
SYNS_Copy = '&Copy';
|
||||
SYNS_Paste = '&Paste';
|
||||
SYNS_Delete = '&Delete';
|
||||
SYNS_SelectAll = 'Select &all';
|
||||
|
||||
{ TSynPopupMenu }
|
||||
|
||||
constructor TSynPopupMenu.Create(AOwner: TComponent);
|
||||
|
Loading…
Reference in New Issue
Block a user