diff options
author | Translations <translations@dino.im> | 2020-04-11 00:28:51 +0200 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2020-04-11 00:28:51 +0200 |
commit | d3e58291e73d5cf57fa209cac050d8f23ba49cae (patch) | |
tree | 3734af577afca25119c3e2ec01bcb681b58e9c0f /main/src/ui | |
parent | ff4403fb21ea5a3575a7a3f7cafcf83a7fb46bf9 (diff) | |
download | dino-d3e58291e73d5cf57fa209cac050d8f23ba49cae.tar.gz dino-d3e58291e73d5cf57fa209cac050d8f23ba49cae.zip |
Update translations
Diffstat (limited to 'main/src/ui')
-rw-r--r-- | main/src/ui/conversation_content_view/chat_state_populator.vala | 4 |
1 files changed, 2 insertions, 2 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 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; |