Mercurial > pidgin
comparison src/protocols/silc/util.c @ 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 | bf4ecb0ae208 |
| children | ac4480944fc3 |
comparison
equal
deleted
inserted
replaced
| 9182:b7490533d29d | 9183:39fa2dd6097e |
|---|---|
| 284 if (ident->org) | 284 if (ident->org) |
| 285 g_string_append_printf(s, "%s: \t%s\n", _("Organization"), ident->org); | 285 g_string_append_printf(s, "%s: \t%s\n", _("Organization"), ident->org); |
| 286 if (ident->country) | 286 if (ident->country) |
| 287 g_string_append_printf(s, "%s: \t%s\n", _("Country"), ident->country); | 287 g_string_append_printf(s, "%s: \t%s\n", _("Country"), ident->country); |
| 288 g_string_append_printf(s, "%s: \t\t%s\n", _("Algorithm"), public_key->name); | 288 g_string_append_printf(s, "%s: \t\t%s\n", _("Algorithm"), public_key->name); |
| 289 g_string_append_printf(s, "%s: \t%d bits\n", _("Key Length"), (int)key_len); | 289 g_string_append_printf(s, "%s: \t", _("Key Length")); |
| 290 g_string_append_printf(s, "\n"); | 290 g_string_append_printf(s, _("%d bits"), (int)key_len); |
| 291 g_string_append_printf(s, "\n\n"); | |
| 291 g_string_append_printf(s, "%s:\n%s\n\n", _("Public Key Fingerprint"), fingerprint); | 292 g_string_append_printf(s, "%s:\n%s\n\n", _("Public Key Fingerprint"), fingerprint); |
| 292 g_string_append_printf(s, "%s:\n%s", _("Public Key Babbleprint"), babbleprint); | 293 g_string_append_printf(s, "%s:\n%s", _("Public Key Babbleprint"), babbleprint); |
| 293 | 294 |
| 294 buf = g_string_free(s, FALSE); | 295 buf = g_string_free(s, FALSE); |
| 295 | 296 |
