diff src/protocols/silc/util.c @ 9039:bf4ecb0ae208

[gaim-migrate @ 9815] i18n string updates from Bjoern Voigt, someone tell me if anything here is objectionable, i lost track of that thread. also he updated his translation committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sun, 23 May 2004 20:06:10 +0000
parents 26c9b8761707
children 39fa2dd6097e
line wrap: on
line diff
--- a/src/protocols/silc/util.c	Sun May 23 19:40:55 2004 +0000
+++ b/src/protocols/silc/util.c	Sun May 23 20:06:10 2004 +0000
@@ -274,22 +274,22 @@
 
 	s = g_string_new("");
 	if (ident->realname)
-		g_string_append_printf(s, "Real Name: \t%s\n", ident->realname);
+		g_string_append_printf(s, "%s: \t%s\n", _("Real Name"), ident->realname);
 	if (ident->username)
-		g_string_append_printf(s, "User Name: \t%s\n", ident->username);
+		g_string_append_printf(s, "%s: \t%s\n", _("User Name"), ident->username);
 	if (ident->email)
-		g_string_append_printf(s, "EMail: \t\t%s\n", ident->email);
+		g_string_append_printf(s, "%s: \t\t%s\n", _("EMail"), ident->email);
 	if (ident->host)
-		g_string_append_printf(s, "Host Name: \t%s\n", ident->host);
+		g_string_append_printf(s, "%s: \t%s\n", _("Host Name"), ident->host);
 	if (ident->org)
-		g_string_append_printf(s, "Organization: \t%s\n", ident->org);
+		g_string_append_printf(s, "%s: \t%s\n", _("Organization"), ident->org);
 	if (ident->country)
-		g_string_append_printf(s, "Country: \t%s\n", ident->country);
-	g_string_append_printf(s, "Algorithm: \t\t%s\n", public_key->name);
-	g_string_append_printf(s, "Key Length: \t%d bits\n", (int)key_len);
+		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, "Public Key Fingerprint:\n%s\n\n", fingerprint);
-	g_string_append_printf(s, "Public Key Babbleprint:\n%s", babbleprint);
+	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);
 
 	buf = g_string_free(s, FALSE);