diff options
Diffstat (limited to 'main')
-rw-r--r-- | main/src/ui/conversation_content_view/chat_state_populator.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/ui/conversation_content_view/chat_state_populator.vala b/main/src/ui/conversation_content_view/chat_state_populator.vala index 484ee0c4..9b782959 100644 --- a/main/src/ui/conversation_content_view/chat_state_populator.vala +++ b/main/src/ui/conversation_content_view/chat_state_populator.vala @@ -107,7 +107,7 @@ private class MetaChatStateItem : Plugins.MetaConversationItem { } string new_text = ""; if (jids.size > 3) { - new_text = _("%s, %s and %i others are typing").printf(display_names[0], display_names[1], jids.size - 2); + new_text = _("%s, %s and %i others are typing…").printf(display_names[0], display_names[1], jids.size - 2); } else if (jids.size == 3) { new_text = _("%s, %s and %s are typing…").printf(display_names[0], display_names[1], display_names[2]); } else if (jids.size == 2) { |