From d3e58291e73d5cf57fa209cac050d8f23ba49cae Mon Sep 17 00:00:00 2001 From: Translations Date: Sat, 11 Apr 2020 00:28:51 +0200 Subject: Update translations --- main/src/ui/conversation_content_view/chat_state_populator.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main/src/ui/conversation_content_view') 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 545d2c6d..484ee0c4 100644 --- a/main/src/ui/conversation_content_view/chat_state_populator.vala +++ b/main/src/ui/conversation_content_view/chat_state_populator.vala @@ -107,13 +107,13 @@ private class MetaChatStateItem : Plugins.MetaConversationItem { } string new_text = ""; if (jids.size > 3) { - new_text = _("%s, %s and %i others").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) { new_text =_("%s and %s are typing…").printf(display_names[0], display_names[1]); } else { - new_text = "%s is typing…".printf(display_names[0]); + new_text = _("%s is typing…").printf(display_names[0]); } label.label = new_text; -- cgit v1.2.3-54-g00ecf