From: Kornel Benko Date: Mon, 3 Jun 2024 06:23:35 +0000 (+0200) Subject: Adv. F&R: strange dialog text X-Git-Tag: 2.4.1~60 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=5fdbd2cf326189b9d26109a3297dc9685ce0aba6;p=lyx.git Adv. F&R: strange dialog text Fixes #12997 Added 'Scope' to better indicate the searched area. --- 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;