ResourceStrings for Locals Dialog

git-svn-id: trunk@14737 -
This commit is contained in:
laurent 2008-04-02 20:44:09 +00:00
parent 2b64b5513a
commit 0b7a106fec
2 changed files with 11 additions and 2 deletions

View File

@ -59,7 +59,9 @@ type
implementation
uses
LazarusIDEStrConsts;
{ TLocalsDlg }
constructor TLocalsDlg.Create(AOwner: TComponent);
@ -68,6 +70,9 @@ begin
FLocalsNotification := TIDELocalsNotification.Create;
FLocalsNotification.AddReference;
FLocalsNotification.OnChange := @LocalsChanged;
Caption:= lisLocals;
lvLocals.Columns[0].Caption:= lisDebugOptionsFrmName;
lvLocals.Columns[1].Caption:= dlgValueColor;
end;
destructor TLocalsDlg.Destroy;

View File

@ -3728,7 +3728,11 @@ resourcestring
lisRecordStruct = 'Record/Structure';
lisMemoryDump = 'Memory Dump';
// Locals Dialog
lisLocals = 'Locals';
lisLocalsDlgName = 'Name';
lisLocalsDlgValue = 'Value';
implementation
end.