diff src/protocols/oscar/oscar.c @ 8902:cb3dd3a4c71c

[gaim-migrate @ 9671] Show "not specified" as a gender instead of defaulting to male. I thought about using "inhuman" or "unknown"... but I didn't. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sat, 08 May 2004 07:19:33 +0000
parents 60cc86a15eed
children 00138e366ef8
line wrap: on
line diff
--- a/src/protocols/oscar/oscar.c	Fri May 07 03:57:30 2004 +0000
+++ b/src/protocols/oscar/oscar.c	Sat May 08 07:19:33 2004 +0000
@@ -4235,7 +4235,8 @@
 		}
 	}
 	oscar_string_append(str, "\n<br>", _("Mobile Phone"), info->mobile);
-	oscar_string_append(str, "\n<br>", _("Gender"), info->gender==1 ? _("Female") : _("Male"));
+	oscar_string_append(str, "\n<br>", _("Gender"), info->gender == 0 ? _("Not specified") :
+													info->gender == 1 ? _("Female") : _("Male"));
 	if (info->birthyear || info->birthmonth || info->birthday) {
 		char date[30];
 		struct tm tm;