Changeset 91bd910 for protocols/oscar


Ignore:
Timestamp:
2006-10-21T20:56:21Z (17 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
2087159
Parents:
2a29eac
Message:

Fixed #139. (Wrong Gender description)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/oscar/oscar.c

    r2a29eac r91bd910  
    22972297        }
    22982298        info_string_append(str, "\n", _("Mobile Phone"), info->mobile);
    2299         info_string_append(str, "\n", _("Gender"), info->gender==1 ? _("Female") : _("Male"));
     2299        info_string_append(str, "\n", _("Gender"), info->gender==1 ? _("Female") : info->gender==2 ? _("Male") : _("Unknown"));
    23002300        if (info->birthyear || info->birthmonth || info->birthday) {
    23012301                char date[30];
Note: See TracChangeset for help on using the changeset viewer.