From f7f7c0dd85cf8d05f86a3d15cc20ea3de32a9e85 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A1n=20Kupec?= Date: Thu, 23 Apr 2009 09:56:26 +0200 Subject: [PATCH] Grrr.. 'no for yes' --- src/utils/prompt.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/prompt.cc b/src/utils/prompt.cc index cbab44b..1fef1e4 100644 --- a/src/utils/prompt.cc +++ b/src/utils/prompt.cc @@ -337,9 +337,9 @@ unsigned int get_prompt_reply(Zypper & zypper, if (poptions.isYesNoPrompt()) { s << " " << format( - // translators: the %s are: 'y', 'n', 'yes' (translated), and 'no' (translated). + // translators: the %s are: 'y', 'yes' (translated), 'n', and 'no' (translated). _("Enter '%s' for '%s' or '%s' for '%s' if nothing else works for you.")) - % "y" % "n" % _("yes") % _("no"); + % "y" % _("yes") % "n" % _("no"); } zypper.out().prompt(pid, s.str(), poptions); -- 2.7.4