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

View File

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