From 5fdbd2cf326189b9d26109a3297dc9685ce0aba6 Mon Sep 17 00:00:00 2001 From: Kornel Benko Date: Mon, 3 Jun 2024 08:23:35 +0200 Subject: [PATCH] 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; -- 2.39.5