* 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
This commit is contained in:
Jürgen Spitzmüller 2010-01-29 08:59:09 +00:00
parent d907d5421e
commit 676aca028d

View File

@ -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;