mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-10-30 21:21:30 +01:00
ResourceStrings for Locals Dialog
git-svn-id: trunk@14737 -
This commit is contained in:
parent
2b64b5513a
commit
0b7a106fec
@ -59,6 +59,8 @@ type
|
|||||||
|
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
uses
|
||||||
|
LazarusIDEStrConsts;
|
||||||
|
|
||||||
{ TLocalsDlg }
|
{ TLocalsDlg }
|
||||||
|
|
||||||
@ -68,6 +70,9 @@ begin
|
|||||||
FLocalsNotification := TIDELocalsNotification.Create;
|
FLocalsNotification := TIDELocalsNotification.Create;
|
||||||
FLocalsNotification.AddReference;
|
FLocalsNotification.AddReference;
|
||||||
FLocalsNotification.OnChange := @LocalsChanged;
|
FLocalsNotification.OnChange := @LocalsChanged;
|
||||||
|
Caption:= lisLocals;
|
||||||
|
lvLocals.Columns[0].Caption:= lisDebugOptionsFrmName;
|
||||||
|
lvLocals.Columns[1].Caption:= dlgValueColor;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
destructor TLocalsDlg.Destroy;
|
destructor TLocalsDlg.Destroy;
|
||||||
|
|||||||
@ -3728,6 +3728,10 @@ resourcestring
|
|||||||
lisRecordStruct = 'Record/Structure';
|
lisRecordStruct = 'Record/Structure';
|
||||||
lisMemoryDump = 'Memory Dump';
|
lisMemoryDump = 'Memory Dump';
|
||||||
|
|
||||||
|
// Locals Dialog
|
||||||
|
lisLocals = 'Locals';
|
||||||
|
lisLocalsDlgName = 'Name';
|
||||||
|
lisLocalsDlgValue = 'Value';
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user