mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-22 01:59:12 +02:00
ResourceStrings for Locals Dialog
git-svn-id: trunk@14737 -
This commit is contained in:
parent
2b64b5513a
commit
0b7a106fec
@ -59,7 +59,9 @@ type
|
|||||||
|
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
uses
|
||||||
|
LazarusIDEStrConsts;
|
||||||
|
|
||||||
{ TLocalsDlg }
|
{ TLocalsDlg }
|
||||||
|
|
||||||
constructor TLocalsDlg.Create(AOwner: TComponent);
|
constructor TLocalsDlg.Create(AOwner: TComponent);
|
||||||
@ -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,7 +3728,11 @@ resourcestring
|
|||||||
lisRecordStruct = 'Record/Structure';
|
lisRecordStruct = 'Record/Structure';
|
||||||
lisMemoryDump = 'Memory Dump';
|
lisMemoryDump = 'Memory Dump';
|
||||||
|
|
||||||
|
// Locals Dialog
|
||||||
|
lisLocals = 'Locals';
|
||||||
|
lisLocalsDlgName = 'Name';
|
||||||
|
lisLocalsDlgValue = 'Value';
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
end.
|
end.
|
||||||
|
Loading…
Reference in New Issue
Block a user