From: Jürgen Spitzmüller Date: Fri, 29 Jan 2010 08:59:09 +0000 (+0000) Subject: * FindAndReplace.cpp: X-Git-Tag: 2.0.0~4202 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=676aca028ddde69abaa6d3172e3c5b304a0ed7fd;p=features.git * FindAndReplace.cpp: - correct strings, following the attempt at r33252. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33255 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/qt4/FindAndReplace.cpp b/src/frontends/qt4/FindAndReplace.cpp index fd36f45f4c..50f3641b57 100644 --- a/src/frontends/qt4/FindAndReplace.cpp +++ b/src/frontends/qt4/FindAndReplace.cpp @@ -335,10 +335,10 @@ docstring question_string(FindAndReplaceOptions const & opt) } docstring message = opt.forward ? bformat(_("End of %1$s reached while searching forward.\n" - "Continue searching from begin?"), + "Continue searching from the beginning?"), scope) : - bformat(_("Beginning of %1$s reached while searching backwards.\n" - "Continue searching from end?"), + bformat(_("Beginning of %1$s reached while searching backward.\n" + "Continue searching from the end?"), scope); return message;