replaced up/down with more meaningful forward/backward search

git-svn-id: trunk@6568 -
This commit is contained in:
mattias 2005-01-13 18:44:01 +00:00
parent 3e8ff569bb
commit d1d89f1a92
2 changed files with 5 additions and 3 deletions

View File

@ -160,7 +160,7 @@ begin
ReplaceWithLabel:=TLabel.Create(Self); ReplaceWithLabel:=TLabel.Create(Self);
with ReplaceWithLabel do begin with ReplaceWithLabel do begin
Name:='ReplaceWithLabel'; Name:='ReplaceWithLabel';
Parent:=Self; Parent:=Self;
SetBounds(x,y+3,ComboX-x,Height); SetBounds(x,y+3,ComboX-x,Height);
Caption:=dlgReplaceWith; Caption:=dlgReplaceWith;
FocusControl:= ReplaceTextComboBox; FocusControl:= ReplaceTextComboBox;
@ -289,8 +289,8 @@ begin
with Items do begin with Items do begin
BeginUpdate; BeginUpdate;
Clear; Clear;
Add(dlgUpWord); Add(lisFRForwardSearch);
Add(dlgDownWord); Add(lisFRBackwardSearch);
EndUpdate; EndUpdate;
end; end;
ItemIndex:=1; ItemIndex:=1;

View File

@ -1060,6 +1060,8 @@ resourcestring
dlgGlobal = 'Global'; dlgGlobal = 'Global';
dlgSelectedText = 'Selected Text'; dlgSelectedText = 'Selected Text';
dlgDirection = 'Direction'; dlgDirection = 'Direction';
lisFRForwardSearch = 'Forward search';
lisFRBackwardSearch = 'Backward search';
dlgUpWord = 'Up'; dlgUpWord = 'Up';
dlgDownWord = 'Down'; dlgDownWord = 'Down';
dlgReplaceAll = 'Replace All'; dlgReplaceAll = 'Replace All';