mirror of
git://git.gnupg.org/gnupg.git
synced 2025-02-01 16:33:02 +01:00
* pkclist.c (do_edit_ownertrust): Add a note to translators.
* keygen.c (ask_user_id): Ditto. * helptext.c: Typo fix.
This commit is contained in:
parent
e4b885e1d7
commit
450f0d770b
@ -1,3 +1,10 @@
|
|||||||
|
2004-10-15 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
|
* pkclist.c (do_edit_ownertrust): Add a note to translators.
|
||||||
|
* keygen.c (ask_user_id): Ditto.
|
||||||
|
|
||||||
|
* helptext.c: Typo fix.
|
||||||
|
|
||||||
2004-10-14 David Shaw <dshaw@jabberwocky.com>
|
2004-10-14 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
* keylist.c (list_keyblock_print): Show the fingerprint after the
|
* keylist.c (list_keyblock_print): Show the fingerprint after the
|
||||||
|
@ -182,7 +182,7 @@ static struct helptexts { const char *key; const char *help; } helptexts[] = {
|
|||||||
)},
|
)},
|
||||||
|
|
||||||
{ "keyedit.sign_all.okay", N_(
|
{ "keyedit.sign_all.okay", N_(
|
||||||
"Answer \"yes\" is you want to sign ALL the user IDs"
|
"Answer \"yes\" if you want to sign ALL the user IDs"
|
||||||
)},
|
)},
|
||||||
|
|
||||||
{ "keyedit.remove.uid.okay", N_(
|
{ "keyedit.remove.uid.okay", N_(
|
||||||
|
11
g10/keygen.c
11
g10/keygen.c
@ -1713,6 +1713,17 @@ ask_user_id( int mode )
|
|||||||
}
|
}
|
||||||
|
|
||||||
for(;;) {
|
for(;;) {
|
||||||
|
/* Note to translators: These are the allowed answers in
|
||||||
|
lower and uppercase. Below you will find the matching
|
||||||
|
string which should be translated accordingly and the
|
||||||
|
letter changed to match the one in the answer string.
|
||||||
|
|
||||||
|
n = Change name
|
||||||
|
c = Change comment
|
||||||
|
e = Change email
|
||||||
|
o = Okay (ready, continue)
|
||||||
|
q = Quit
|
||||||
|
*/
|
||||||
const char *ansstr = _("NnCcEeOoQq");
|
const char *ansstr = _("NnCcEeOoQq");
|
||||||
|
|
||||||
if( strlen(ansstr) != 10 )
|
if( strlen(ansstr) != 10 )
|
||||||
|
@ -190,7 +190,18 @@ do_edit_ownertrust (PKT_public_key *pk, int mode,
|
|||||||
|
|
||||||
keyid_from_pk (pk, keyid);
|
keyid_from_pk (pk, keyid);
|
||||||
for(;;) {
|
for(;;) {
|
||||||
/* a string with valid answers */
|
/* A string with valid answers.
|
||||||
|
|
||||||
|
Note to translators: These are the allowed answers in lower and
|
||||||
|
uppercase. Below you will find the matching strings which
|
||||||
|
should be translated accordingly and the letter changed to
|
||||||
|
match the one in the answer string.
|
||||||
|
|
||||||
|
i = please show me more information
|
||||||
|
m = back to the main menu
|
||||||
|
s = skip this key
|
||||||
|
q = quit
|
||||||
|
*/
|
||||||
const char *ans = _("iImMqQsS");
|
const char *ans = _("iImMqQsS");
|
||||||
|
|
||||||
if( !did_help )
|
if( !did_help )
|
||||||
|
Loading…
x
Reference in New Issue
Block a user