aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorG.Balaji <balajig81@gmail.com>2010-01-18 23:10:02 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-01-18 23:16:58 +0800
commit8a8ebfdbb3f7caf4a05d75a7530052d19ececabf (patch)
treef07ac4178da39dccfd509398b36a9dee3972ffbd
parentabe61c3e3f10ceeb911cfe6ee1ae16617adfac70 (diff)
downloadgsoc2013-empathy-8a8ebfdbb3f7caf4a05d75a7530052d19ececabf.tar
gsoc2013-empathy-8a8ebfdbb3f7caf4a05d75a7530052d19ececabf.tar.gz
gsoc2013-empathy-8a8ebfdbb3f7caf4a05d75a7530052d19ececabf.tar.bz2
gsoc2013-empathy-8a8ebfdbb3f7caf4a05d75a7530052d19ececabf.tar.lz
gsoc2013-empathy-8a8ebfdbb3f7caf4a05d75a7530052d19ececabf.tar.xz
gsoc2013-empathy-8a8ebfdbb3f7caf4a05d75a7530052d19ececabf.tar.zst
gsoc2013-empathy-8a8ebfdbb3f7caf4a05d75a7530052d19ececabf.zip
Changed the return string of empathy_presence_get_default_message to Invisible so that we display Invisible to the user.
This fix bug #603472
-rw-r--r--libempathy/empathy-utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-utils.c b/libempathy/empathy-utils.c
index b721f5cfa..b748726c5 100644
--- a/libempathy/empathy-utils.c
+++ b/libempathy/empathy-utils.c
@@ -242,7 +242,7 @@ empathy_presence_get_default_message (TpConnectionPresenceType presence)
case TP_CONNECTION_PRESENCE_TYPE_EXTENDED_AWAY:
return _("Away");
case TP_CONNECTION_PRESENCE_TYPE_HIDDEN:
- return _("Hidden");
+ return _("Invisible");
case TP_CONNECTION_PRESENCE_TYPE_OFFLINE:
return _("Offline");
case TP_CONNECTION_PRESENCE_TYPE_UNSET: