1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-20 01:02:44 +02:00

Chnage key edit prompts.

This commit is contained in:
Werner Koch 2010-02-02 14:10:32 +00:00
parent 5f5091ed79
commit 8e680ea7f5
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2010-02-02 Werner Koch <wk@g10code.com>
* card-util.c (card_edit): Change prompt to "gpg/card".
* keyedit.c (keyedit_menu): Change prompt to "gpg".
2010-01-11 Werner Koch <wk@g10code.com>
* gpg.c: Add option --passwd.

View File

@ -1817,7 +1817,7 @@ card_edit (strlist_t commands)
if (!have_commands)
{
tty_enable_completion (card_edit_completion);
answer = cpr_get_no_help("cardedit.prompt", _("Command> "));
answer = cpr_get_no_help("cardedit.prompt", _("gpg/card> "));
cpr_kill_prompt();
tty_disable_completion ();
}

View File

@ -1651,7 +1651,7 @@ keyedit_menu( const char *username, strlist_t locusr,
#ifdef HAVE_LIBREADLINE
tty_enable_completion(keyedit_completion);
#endif
answer = cpr_get_no_help("keyedit.prompt", _("Command> "));
answer = cpr_get_no_help("keyedit.prompt", "gpg> ");
cpr_kill_prompt();
tty_disable_completion();
}