From 0e3e7e6ddfdb9546a82ae7ff8cdf547b9f66816e Mon Sep 17 00:00:00 2001 From: paul Date: Tue, 21 Jul 2009 12:10:00 +0000 Subject: [PATCH] ide, debugger: evaluate/modify dialog: add resource strings git-svn-id: trunk@20913 - --- debugger/evaluatedlg.pp | 5 +++++ ide/lazarusidestrconsts.pas | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/debugger/evaluatedlg.pp b/debugger/evaluatedlg.pp index 282ea21f17..c8be80c371 100644 --- a/debugger/evaluatedlg.pp +++ b/debugger/evaluatedlg.pp @@ -90,6 +90,11 @@ begin IDEDialogLayoutList.ApplyLayout(Self, 400, 290); cmbExpression.Items.Assign(InputHistories.HistoryLists.GetList(ClassName, True)); + tbEvaluate.Caption := lisEvaluate; + tbModify.Caption := lisModify; + tbWatch.Caption := lisWatch; + tbInspect.Caption := lisInspect; + ToolBar1.Images := IDEImages.Images_16; tbInspect.ImageIndex := IDEImages.LoadImage(16, 'debugger_inspect'); tbWatch.ImageIndex := IDEImages.LoadImage(16, 'debugger_watches'); diff --git a/ide/lazarusidestrconsts.pas b/ide/lazarusidestrconsts.pas index 1d6fd651de..9691f4ca3a 100644 --- a/ide/lazarusidestrconsts.pas +++ b/ide/lazarusidestrconsts.pas @@ -4067,6 +4067,12 @@ resourcestring lisOff = '? (Off)'; lisOn = '? (On)'; + // Evaluate/Modify Dialog + lisEvaluate = 'E&valuate'; + lisModify = '&Modify'; + lisWatch = '&Watch'; + lisInspect = '&Inspect'; + // Designer Size Components Dialog lisShrinkToSmal = 'Shrink to smallest'; lisGrowToLarges = 'Grow to Largest';