From: Luke S. <lsc...@us...> - 2002-09-21 17:38:37
|
Update of /cvsroot/gaim/gaim/src/protocols/msn In directory usw-pr-cvs1:/tmp/cvs-serv13226/src/protocols/msn Modified Files: msn.c Log Message: compare to _("string") instead of "string" so that comparisons with i18n work Index: msn.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/msn/msn.c,v retrieving revision 1.96 retrieving revision 1.97 diff -u -d -r1.96 -r1.97 --- msn.c 14 Sep 2002 07:28:10 -0000 1.96 +++ msn.c 21 Sep 2002 17:38:34 -0000 1.97 @@ -1947,17 +1947,17 @@ } else if (state) { gc->away = ""; - if (!strcmp(state, "Away From Computer")) + if (!strcmp(state, _("Away From Computer"))) away = "AWY"; - else if (!strcmp(state, "Be Right Back")) + else if (!strcmp(state, _("Be Right Back"))) away = "BRB"; - else if (!strcmp(state, "Busy")) + else if (!strcmp(state, _("Busy"))) away = "BSY"; - else if (!strcmp(state, "On The Phone")) + else if (!strcmp(state, _("On The Phone"))) away = "PHN"; - else if (!strcmp(state, "Out To Lunch")) + else if (!strcmp(state, _("Out To Lunch"))) away = "LUN"; - else if (!strcmp(state, "Hidden")) + else if (!strcmp(state, _("Hidden"))) away = "HDN"; else { gc->away = NULL; |