diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-11-26 18:40:31 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-11-27 23:29:51 +0800 |
commit | c925d2a550ebbe3e90eac80cf3340714c2c9cb4b (patch) | |
tree | a0111ed008ee847679c28d82c8e678a553343e7b | |
parent | 9764ef80a02af7894a38c396d5d57e8b760a8f2a (diff) | |
download | gsoc2013-empathy-c925d2a550ebbe3e90eac80cf3340714c2c9cb4b.tar gsoc2013-empathy-c925d2a550ebbe3e90eac80cf3340714c2c9cb4b.tar.gz gsoc2013-empathy-c925d2a550ebbe3e90eac80cf3340714c2c9cb4b.tar.bz2 gsoc2013-empathy-c925d2a550ebbe3e90eac80cf3340714c2c9cb4b.tar.lz gsoc2013-empathy-c925d2a550ebbe3e90eac80cf3340714c2c9cb4b.tar.xz gsoc2013-empathy-c925d2a550ebbe3e90eac80cf3340714c2c9cb4b.tar.zst gsoc2013-empathy-c925d2a550ebbe3e90eac80cf3340714c2c9cb4b.zip |
fix typo in comments
-rw-r--r-- | src/empathy-chat-window.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c index 5f07203b5..07a3535e8 100644 --- a/src/empathy-chat-window.c +++ b/src/empathy-chat-window.c @@ -418,7 +418,7 @@ get_window_title_name (EmpathyChatWindowPriv *priv) } else if (current_unread_msgs == 0) { - /* unread messages are in others tab */ + /* unread messages are in other tabs */ return g_strdup_printf (ngettext ( "%s (%d unread from others)", "%s (%d unread from others)", @@ -1195,8 +1195,7 @@ chat_window_new_message_cb (EmpathyChat *chat, } if (has_focus && priv->current_chat == chat) { - /* window and tab are focused so consider than the message is - * read */ + /* window and tab are focused so consider the message to be read */ empathy_chat_messages_read (chat); return; } |