# HG changeset patch # User Luke Schierer # Date 1032629914 0 # Node ID 9431b31f8f6249d6c9b4b91096f6a8198fe688bd # Parent d49f2c77ee635045228d3b3a9eb27125da602c06 [gaim-migrate @ 3612] compare to _("string") instead of "string" so that comparisons with i18n work committer: Tailor Script diff -r d49f2c77ee63 -r 9431b31f8f62 src/protocols/msn/msn.c --- a/src/protocols/msn/msn.c Thu Sep 19 17:06:18 2002 +0000 +++ b/src/protocols/msn/msn.c Sat Sep 21 17:38:34 2002 +0000 @@ -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;