[svn] GnuPG - r4183 - trunk/g10
svn author wk
cvs at cvs.gnupg.org
Wed Jun 28 21:33:16 CEST 2006
Author: wk
Date: 2006-06-28 21:33:14 +0200 (Wed, 28 Jun 2006)
New Revision: 4183
Modified:
trunk/g10/ChangeLog
trunk/g10/import.c
Log:
i18n fix
Modified: trunk/g10/ChangeLog
===================================================================
--- trunk/g10/ChangeLog 2006-06-28 17:54:35 UTC (rev 4182)
+++ trunk/g10/ChangeLog 2006-06-28 19:33:14 UTC (rev 4183)
@@ -16,6 +16,9 @@
2006-06-28 Werner Koch <wk at g10code.com>
+ * import.c (check_prefs_warning): Fix change for better
+ translatability.
+
* app-openpgp.c (do_writekey): Fixed computation of memmove
length. This led to garbled keys if E was larger than one byte.
Thanks to Achim Pietig for hinting at the garbled E.
Modified: trunk/g10/import.c
===================================================================
--- trunk/g10/import.c 2006-06-28 17:54:35 UTC (rev 4182)
+++ trunk/g10/import.c 2006-06-28 19:33:14 UTC (rev 4183)
@@ -563,8 +563,13 @@
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
More information about the Gnupg-commits
mailing list