From 143ca039e1e81140ae520cc1025f8e25c01acc80 Mon Sep 17 00:00:00 2001 From: Andre Heinecke Date: Wed, 22 Feb 2017 16:57:58 +0100 Subject: scd: Nitpicks on the improved card prompts * src/app-openpgp.c (get_prompt_info): Change wording and order slightly. -- The word "Card" was repeated too much in the prompt and moving signatures to the bottom results in a more consistent layout between the prompts with signcount and the prompts without. Signed-off-by: Andre Heinecke --- scd/app-openpgp.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/scd/app-openpgp.c b/scd/app-openpgp.c index 90c26612c..f68d8bb1e 100644 --- a/scd/app-openpgp.c +++ b/scd/app-openpgp.c @@ -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 (_("Card number:\t%s%%0A" - "Signatures:\t%lu%%0A" - "Cardholder:\t%s"), + result = xtryasprintf (_("Number:\t%s%%0A" + "Holder:\t%s%%0A" + "Signatures:\t%lu"), serial, - sigcount, - disp_name? disp_name:""); + disp_name? disp_name:"", + sigcount); } else { - result = xtryasprintf (_("Card number:\t%s%%0A" - "Cardholder:\t%s"), + result = xtryasprintf (_("Number:\t%s%%0A" + "Holder:\t%s"), serial, disp_name? disp_name:""); } -- cgit v1.2.3