From 7787ca1fdde48991d1d8c0a59748acf14d7f11a1 Mon Sep 17 00:00:00 2001 From: wp Date: Sat, 24 Feb 2018 11:45:10 +0000 Subject: [PATCH] LCL/ValuelistEditor: Change column titles from "Key"/"Name" to "Key"/"Value" git-svn-id: trunk@57355 - --- lcl/valedit.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lcl/valedit.pas b/lcl/valedit.pas index 2718b48770..d8f48399f8 100644 --- a/lcl/valedit.pas +++ b/lcl/valedit.pas @@ -308,7 +308,7 @@ const rsVLEDuplicateKey = 'Duplicate Key:'+LineEnding+'A key with name "%s" already exists at column %d'; //ToDo: Make this a resourcestring in lclstrconsts unit, once we are satisfied with ShowColumnTitles rsVLEKey = 'Key'; - rsVLEName = 'Name'; + rsVLEValue = 'Value'; rsVLEInvalidRowColOperation = 'The operation %s is not allowed on a TValueListEditor%s.'; procedure Register; @@ -1069,7 +1069,7 @@ begin if (doColumnTitles in DisplayOptions) then begin KeyCap := rsVLEKey; - ValCap := rsVLEName; + ValCap := rsVLEValue; if (TitleCaptions.Count > 0) then KeyCap := TitleCaptions[0]; if (TitleCaptions.Count > 1) then ValCap := TitleCaptions[1]; //Columns[0].Title.Caption := KeyCap;