From 0b7a106fec6d29c4046338a1eb0f426d2b682e1d Mon Sep 17 00:00:00 2001 From: laurent Date: Wed, 2 Apr 2008 20:44:09 +0000 Subject: [PATCH] ResourceStrings for Locals Dialog git-svn-id: trunk@14737 - --- debugger/localsdlg.pp | 7 ++++++- ide/lazarusidestrconsts.pas | 6 +++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/debugger/localsdlg.pp b/debugger/localsdlg.pp index 4c33882d0a..d573e084ed 100644 --- a/debugger/localsdlg.pp +++ b/debugger/localsdlg.pp @@ -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; diff --git a/ide/lazarusidestrconsts.pas b/ide/lazarusidestrconsts.pas index 68d01a671c..62ff1589fd 100644 --- a/ide/lazarusidestrconsts.pas +++ b/ide/lazarusidestrconsts.pas @@ -3728,7 +3728,11 @@ resourcestring lisRecordStruct = 'Record/Structure'; lisMemoryDump = 'Memory Dump'; - + // Locals Dialog + lisLocals = 'Locals'; + lisLocalsDlgName = 'Name'; + lisLocalsDlgValue = 'Value'; + implementation end.