From 685ef4c995b1ffd35b21391f156b6cca5373bcd9 Mon Sep 17 00:00:00 2001 From: Michael Andres Date: Tue, 15 Oct 2013 18:36:45 +0200 Subject: [PATCH] Improve prompt with more options hidden behind '?' (bnc#844373) --- src/utils/prompt.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/utils/prompt.cc b/src/utils/prompt.cc index db5cada..220b156 100644 --- a/src/utils/prompt.cc +++ b/src/utils/prompt.cc @@ -83,6 +83,8 @@ const string PromptOptions::optionString() const if (shown_count) option_str << "/"; fprint_color(option_str, "?", COLOR_CONTEXT_PROMPT_OPTION); + // translators: Press '?' to see all options embedded in this prompt: "Continue? [y/n/? shows all options] (y):" + option_str << " " << _("shows all options"); } if (!_options.empty() && shown_count) -- 2.7.4