Add missing ellipsis, in line with similar strings (#862)
This commit is contained in:
parent
4e39af1861
commit
1c59a3870d
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue