mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-29 22:51: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';
|
sCannotPlay = 'Cannot playback macro when recording';
|
||||||
sCannotPause = 'Can only pause when recording';
|
sCannotPause = 'Can only pause when recording';
|
||||||
sCannotResume = 'Can only resume when paused';
|
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
|
implementation
|
||||||
|
|
||||||
end.
|
end.
|
||||||
|
@ -5,7 +5,7 @@ unit SynPopupMenu;
|
|||||||
interface
|
interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
Classes, SysUtils, Menus, SynEdit;
|
Classes, SysUtils, Menus, SynEdit, SynEditStrConst;
|
||||||
|
|
||||||
type
|
type
|
||||||
TSynDefaultPopupMenu = (dpmDisabled, dpmBefore, dpmAfter);
|
TSynDefaultPopupMenu = (dpmDisabled, dpmBefore, dpmAfter);
|
||||||
@ -31,15 +31,6 @@ type
|
|||||||
TMenuEntry = (meNone, meUndo, meRedo, meCut, meCopy, mePaste,
|
TMenuEntry = (meNone, meUndo, meRedo, meCut, meCopy, mePaste,
|
||||||
meDelete, meSelectAll);
|
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 }
|
{ TSynPopupMenu }
|
||||||
|
|
||||||
constructor TSynPopupMenu.Create(AOwner: TComponent);
|
constructor TSynPopupMenu.Create(AOwner: TComponent);
|
||||||
|
Loading…
Reference in New Issue
Block a user