From: Pavel Sanda Date: Sat, 27 Nov 2010 03:04:56 +0000 (+0000) Subject: This string composition badly fails on some languages since as a translator X-Git-Tag: 2.0.0~1660 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=84356604103fff3898c5956119dab3830fb6e7e0;p=features.git This string composition badly fails on some languages since as a translator you have no clue about the context for the proper grammatical case. I'm not particularly happy about the fix, but didn't see much better alternatives. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36532 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/qt4/FindAndReplace.cpp b/src/frontends/qt4/FindAndReplace.cpp index 6834851cbf..a42c9e097a 100644 --- a/src/frontends/qt4/FindAndReplace.cpp +++ b/src/frontends/qt4/FindAndReplace.cpp @@ -272,23 +272,23 @@ docstring getQuestionString(FindAndReplaceOptions const & opt) docstring scope; switch (opt.scope) { case FindAndReplaceOptions::S_BUFFER: - scope = _("file[[scope]]"); + scope = _("File"); break; case FindAndReplaceOptions::S_DOCUMENT: - scope = _("master document[[scope]]"); + scope = _("Master document"); break; case FindAndReplaceOptions::S_OPEN_BUFFERS: - scope = _("open files[[scope]]"); + scope = _("Open files"); break; case FindAndReplaceOptions::S_ALL_MANUALS: - scope = _("manuals[[scope]]"); + scope = _("Manuals"); break; } docstring message = opt.forward ? - bformat(_("End of %1$s reached while searching forward.\n" + bformat(_("%1$s: the end was reached while searching forward.\n" "Continue searching from the beginning?"), scope) : - bformat(_("Beginning of %1$s reached while searching backward.\n" + bformat(_("%1$s: the beginning was reached while searching backward.\n" "Continue searching from the end?"), scope);