changeset 9183:39fa2dd6097e

[gaim-migrate @ 9978] Bjoern Voigt noticed this for last release, but i got all confused which string he was talking about. committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sat, 05 Jun 2004 17:28:59 +0000
parents b7490533d29d
children 3bc41e843afb
files src/protocols/silc/util.c
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/protocols/silc/util.c	Sat Jun 05 17:26:53 2004 +0000
+++ b/src/protocols/silc/util.c	Sat Jun 05 17:28:59 2004 +0000
@@ -286,8 +286,9 @@
 	if (ident->country)
 		g_string_append_printf(s, "%s: \t%s\n", _("Country"), ident->country);
 	g_string_append_printf(s, "%s: \t\t%s\n", _("Algorithm"), public_key->name);
-	g_string_append_printf(s, "%s: \t%d bits\n", _("Key Length"), (int)key_len);
-	g_string_append_printf(s, "\n");
+	g_string_append_printf(s, "%s: \t", _("Key Length"));
+	g_string_append_printf(s, _("%d bits"), (int)key_len);
+	g_string_append_printf(s, "\n\n");
 	g_string_append_printf(s, "%s:\n%s\n\n", _("Public Key Fingerprint"), fingerprint);
 	g_string_append_printf(s, "%s:\n%s", _("Public Key Babbleprint"), babbleprint);