comparison src/protocols/silc/util.c @ 9274:f5c08be60098

[gaim-migrate @ 10077] Bjoern Voigt writes "i18n62.patch: - display "Public Key Information" display contains an ASCII table with tabulators (after some discussion in gaim-i18n I reverted parts of my last patch) " he continues "i18n64.patch: - spelling in src/protocols/irc/parse.c and src/protocols/silc/silc.c - added a missing i18n string in src/protocols/irc/msgs.c" committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sun, 13 Jun 2004 17:26:45 +0000
parents ac4480944fc3
children b8138f3959dc
comparison
equal deleted inserted replaced
9273:227d3d6c6565 9274:f5c08be60098
281 silc_pkcs_free(pkcs); 281 silc_pkcs_free(pkcs);
282 } 282 }
283 283
284 s = g_string_new(""); 284 s = g_string_new("");
285 if (ident->realname) 285 if (ident->realname)
286 g_string_append_printf(s, "%s: \t%s\n", _("Real Name"), ident->realname); 286 /* Hint for translators: Please check the tabulator width here and in
287 the next strings (short strings: 2 tabs, longer strings 1 tab,
288 sum: 3 tabs or 24 characters) */
289 g_string_append_printf(s, _("Real Name: \t%s\n"), ident->realname);
287 if (ident->username) 290 if (ident->username)
288 g_string_append_printf(s, "%s: \t%s\n", _("User Name"), ident->username); 291 g_string_append_printf(s, _("User Name: \t%s\n"), ident->username);
289 if (ident->email) 292 if (ident->email)
290 g_string_append_printf(s, "%s: \t\t%s\n", _("EMail"), ident->email); 293 g_string_append_printf(s, _("EMail: \t\t%s\n"), ident->email);
291 if (ident->host) 294 if (ident->host)
292 g_string_append_printf(s, "%s: \t%s\n", _("Host Name"), ident->host); 295 g_string_append_printf(s, _("Host Name: \t%s\n"), ident->host);
293 if (ident->org) 296 if (ident->org)
294 g_string_append_printf(s, "%s: \t%s\n", _("Organization"), ident->org); 297 g_string_append_printf(s, _("Organization: \t%s\n"), ident->org);
295 if (ident->country) 298 if (ident->country)
296 g_string_append_printf(s, "%s: \t%s\n", _("Country"), ident->country); 299 g_string_append_printf(s, _("Country: \t%s\n"), ident->country);
297 g_string_append_printf(s, "%s: \t\t%s\n", _("Algorithm"), public_key->name); 300 g_string_append_printf(s, _("Algorithm: \t\t%s\n"), public_key->name);
298 g_string_append_printf(s, "%s: \t", _("Key Length")); 301 g_string_append_printf(s, _("Key Length: \t%d bits\n"), (int)key_len);
299 g_string_append_printf(s, _("%d bits"), (int)key_len); 302 g_string_append_printf(s, "\n");
300 g_string_append_printf(s, "\n\n"); 303 g_string_append_printf(s, _("Public Key Fingerprint:\n%s\n\n"), fingerprint);
301 g_string_append_printf(s, "%s:\n%s\n\n", _("Public Key Fingerprint"), fingerprint); 304 g_string_append_printf(s, _("Public Key Babbleprint:\n%s"), babbleprint);
302 g_string_append_printf(s, "%s:\n%s", _("Public Key Babbleprint"), babbleprint);
303 305
304 buf = g_string_free(s, FALSE); 306 buf = g_string_free(s, FALSE);
305 307
306 gaim_request_action(NULL, _("Public Key Information"), 308 gaim_request_action(NULL, _("Public Key Information"),
307 _("Public Key Information"), 309 _("Public Key Information"),