Changeset e900442 for protocols/oscar
- Timestamp:
- 2007-07-05T23:39:47Z (17 years ago)
- Branches:
- master
- Children:
- c9c7ca7
- Parents:
- 9da0bbf (diff), 19a8088 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- protocols/oscar
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/oscar/Makefile
r9da0bbf re900442 18 18 all: oscar_mod.o 19 19 check: all 20 lcov: 20 21 gcov: 21 22 gcov *.c -
protocols/oscar/oscar.c
r9da0bbf re900442 2256 2256 } 2257 2257 info_string_append(str, "\n", _("Mobile Phone"), info->mobile); 2258 info_string_append(str, "\n", _("Gender"), info->gender==1 ? _("Female") : info->gender==2 ? _("Male") : _("Unknown")); 2258 if (info->gender != 0) 2259 info_string_append(str, "\n", _("Gender"), info->gender==1 ? _("Female") : _("Male")); 2259 2260 if (info->birthyear || info->birthmonth || info->birthday) { 2260 2261 char date[30];
Note: See TracChangeset
for help on using the changeset viewer.