Revert "scd: Nitpicks on the improved card prompts"

--
This reverts commit 143ca039e1.

I have a more improved version in the works.
This commit is contained in:
Werner Koch 2017-02-22 18:49:43 +01:00
parent 468dbc74d2
commit 7ccabbc26a
No known key found for this signature in database
GPG Key ID: E3FDFF218E45B72B
1 changed files with 7 additions and 7 deletions

View File

@ -1986,17 +1986,17 @@ get_prompt_info (app_t app, int chvno, unsigned long sigcount, int remaining)
disp_name = get_disp_name (app);
if (chvno == 1)
{
result = xtryasprintf (_("Number:\t%s%%0A"
"Holder:\t%s%%0A"
"Signatures:\t%lu"),
result = xtryasprintf (_("Card number:\t%s%%0A"
"Signatures:\t%lu%%0A"
"Cardholder:\t%s"),
serial,
disp_name? disp_name:"",
sigcount);
sigcount,
disp_name? disp_name:"");
}
else
{
result = xtryasprintf (_("Number:\t%s%%0A"
"Holder:\t%s"),
result = xtryasprintf (_("Card number:\t%s%%0A"
"Cardholder:\t%s"),
serial,
disp_name? disp_name:"");
}