Sat, 05 Jun 2004 17:28:59 +0000
[gaim-migrate @ 9978]
Bjoern Voigt noticed this for last release, but i got all confused which
string he was talking about.
committer: Luke Schierer <lschiere@pidgin.im>
| src/protocols/silc/util.c | file | annotate | diff | comparison | revisions |
--- 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);