Add missing ellipsis, in line with similar strings (#862)

This commit is contained in:
Jordi Mallach 2020-05-27 22:26:03 +02:00 committed by GitHub
parent 4e39af1861
commit 1c59a3870d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -107,7 +107,7 @@ private class MetaChatStateItem : Plugins.MetaConversationItem {
} }
string new_text = ""; string new_text = "";
if (jids.size > 3) { 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) { } else if (jids.size == 3) {
new_text = _("%s, %s and %s are typing…").printf(display_names[0], display_names[1], display_names[2]); new_text = _("%s, %s and %s are typing…").printf(display_names[0], display_names[1], display_names[2]);
} else if (jids.size == 2) { } else if (jids.size == 2) {