Changeset 05bcd20


Ignore:
Timestamp:
2007-04-28T05:20:56Z (17 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
f7b44f2
Parents:
c737ba7
Message:

s/Gender: Unknown in OSCAR profile info. If we don't know, just don't
mention it, like the other vars.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/oscar/oscar.c

    rc737ba7 r05bcd20  
    22552255        }
    22562256        info_string_append(str, "\n", _("Mobile Phone"), info->mobile);
    2257         info_string_append(str, "\n", _("Gender"), info->gender==1 ? _("Female") : info->gender==2 ? _("Male") : _("Unknown"));
     2257        if (info->gender != 0)
     2258                info_string_append(str, "\n", _("Gender"), info->gender==1 ? _("Female") : _("Male"));
    22582259        if (info->birthyear || info->birthmonth || info->birthday) {
    22592260                char date[30];
Note: See TracChangeset for help on using the changeset viewer.