[LyX/2.4.x] Adv. F&R: strange dialog text

Kornel Benko kornel at lyx.org
Mon Jun 10 19:24:04 UTC 2024


commit 5fdbd2cf326189b9d26109a3297dc9685ce0aba6
Author: Kornel Benko <kornel at lyx.org>
Date:   Mon Jun 3 08:23:35 2024 +0200

    Adv. F&R: strange dialog text
    
    Fixes #12997
    Added 'Scope' to better indicate the searched area.
---
 src/frontends/qt/FindAndReplace.cpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/frontends/qt/FindAndReplace.cpp b/src/frontends/qt/FindAndReplace.cpp
index d61636af62..444c378fa6 100644
--- a/src/frontends/qt/FindAndReplace.cpp
+++ b/src/frontends/qt/FindAndReplace.cpp
@@ -298,11 +298,11 @@ docstring getQuestionString(FindAndReplaceOptions const & opt)
 		break;
 	}
 	docstring message = opt.forward ?
-		bformat(_("%1$s: the end was reached while searching forward.\n"
-			  "Continue searching from the beginning?"),
+		bformat(_("The end was reached while searching forward.\n"
+			  "Continue searching from the beginning? (Scope:%1$s)"),
 			scope) :
-		bformat(_("%1$s: the beginning was reached while searching backward.\n"
-			  "Continue searching from the end?"),
+		bformat(_("The beginning was reached while searching backward.\n"
+			  "Continue searching from the end? (Scope:%1$s)"),
 			scope);
 
 	return message;


More information about the lyx-cvs mailing list