From 277940ed0fe49671cd2d4b4af13b3dbb756cddf2 Mon Sep 17 00:00:00 2001 From: Doug Massay Date: Thu, 5 Oct 2017 14:50:27 -0400 Subject: [PATCH] Clarify Find/Replace wording for the Selected option --- src/MainUI/FindReplace.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MainUI/FindReplace.cpp b/src/MainUI/FindReplace.cpp index fa1a956dad..b00911b991 100644 --- a/src/MainUI/FindReplace.cpp +++ b/src/MainUI/FindReplace.cpp @@ -1431,7 +1431,7 @@ void FindReplace::ExtendUI() look_tooltip += "
Current File
" + tr("Restrict the find or replace to the opened file. Hold the Ctrl key down while clicking any search buttons to temporarily restrict the search to the Current File.") + "
"; ui.cbLookWhere->addItem(tr("All HTML Files"), FindReplace::LookWhere_AllHTMLFiles); look_tooltip += "
All HTML Files
" + tr("Find or replace in all HTML files in Code View.") + "
"; - ui.cbLookWhere->addItem(tr("Selected Files"), FindReplace::LookWhere_SelectedHTMLFiles); + ui.cbLookWhere->addItem(tr("Selected HTML Files"), FindReplace::LookWhere_SelectedHTMLFiles); look_tooltip += "
Selected Files
" + tr("Restrict the find or replace to the HTML files selected in the Book Browser in Code View.") + "
"; look_tooltip += ""; look_tooltip += "

To restrict search to selected text, use Search→Mark Selected Text.

";