Mercurial > pidgin.yaz
changeset 3538:9431b31f8f62
[gaim-migrate @ 3612]
compare to _("string") instead of "string" so that comparisons with i18n work
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Sat, 21 Sep 2002 17:38:34 +0000 |
parents | d49f2c77ee63 |
children | 88a0068fc048 |
files | src/protocols/msn/msn.c |
diffstat | 1 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- 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;