diff options
author | Werner Koch <[email protected]> | 2006-06-28 19:33:14 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2006-06-28 19:33:14 +0000 |
commit | d91c7a06ff289aa32c5eed25d83674917715a3da (patch) | |
tree | 3b7bb141adcbd03f763907faab086f83f12503a9 /g10/import.c | |
parent | * keydb.h, pkclist.c (select_algo_from_prefs, algo_available): Pass a (diff) | |
download | gnupg-d91c7a06ff289aa32c5eed25d83674917715a3da.tar.gz gnupg-d91c7a06ff289aa32c5eed25d83674917715a3da.zip |
i18n fix
Diffstat (limited to '')
-rw-r--r-- | g10/import.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/g10/import.c b/g10/import.c index eeacb58d1..6e581cfab 100644 --- a/g10/import.c +++ b/g10/import.c @@ -563,8 +563,13 @@ print_import_check (PKT_public_key * pk, PKT_user_id * id) static void check_prefs_warning(PKT_public_key *pk) { - log_info(_("WARNING: key %s contains preferences for unavailable\n" - "algorithms on these user IDs:\n"), keystr_from_pk(pk)); + log_info(_("WARNING: key %s contains preferences for unavailable\n"), + keystr_from_pk(pk)); + /* TRANSLATORS: This string is belongs to the previous one. They are + only split up to allow printing of a common prefix. The + check_prefs_warning tag is a hack to make this string unique. */ + log_info(_(" algorithms on these user IDs:\n" + "\0" "check_prefs_warning")); } static void |