aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-11-27 23:25:54 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-11-27 23:29:54 +0800
commit09fa4f08f6477da1b4b371d50e9ddaa48b3eafa7 (patch)
treeb9534e7bcf29b64f660ea726941e1858f29b3b8d
parentc925d2a550ebbe3e90eac80cf3340714c2c9cb4b (diff)
downloadgsoc2013-empathy-09fa4f08f6477da1b4b371d50e9ddaa48b3eafa7.tar
gsoc2013-empathy-09fa4f08f6477da1b4b371d50e9ddaa48b3eafa7.tar.gz
gsoc2013-empathy-09fa4f08f6477da1b4b371d50e9ddaa48b3eafa7.tar.bz2
gsoc2013-empathy-09fa4f08f6477da1b4b371d50e9ddaa48b3eafa7.tar.lz
gsoc2013-empathy-09fa4f08f6477da1b4b371d50e9ddaa48b3eafa7.tar.xz
gsoc2013-empathy-09fa4f08f6477da1b4b371d50e9ddaa48b3eafa7.tar.zst
gsoc2013-empathy-09fa4f08f6477da1b4b371d50e9ddaa48b3eafa7.zip
change 'unread from everyone' to 'unread from all'
-rw-r--r--src/empathy-chat-window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c
index 07a3535e8..b9e1e1bf3 100644
--- a/src/empathy-chat-window.c
+++ b/src/empathy-chat-window.c
@@ -429,8 +429,8 @@ get_window_title_name (EmpathyChatWindowPriv *priv)
else {
/* unread messages are in all the tabs */
return g_strdup_printf (ngettext (
- "%s (%d unread from everyone)",
- "%s (%d unread from everyone)",
+ "%s (%d unread from all)",
+ "%s (%d unread from all)",
all_unread_msgs),
active_name, all_unread_msgs);
}