# HG changeset patch # User Luke Schierer # Date 1086456539 0 # Node ID 39fa2dd6097e99a2b74cc9127b7d9e6273cc7602 # Parent b7490533d29d15e9673227c282cc362a41b13c88 [gaim-migrate @ 9978] Bjoern Voigt noticed this for last release, but i got all confused which string he was talking about. committer: Tailor Script diff -r b7490533d29d -r 39fa2dd6097e src/protocols/silc/util.c --- 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);