Fixed i18n

This commit is contained in:
Marek Černocký 2020-11-27 17:56:31 +01:00
parent 69bcdec9b2
commit 6023aac70e

View file

@ -257,7 +257,7 @@ public class ConversationMessage : Gtk.Grid, Geary.BaseInterface {
// too many email addresses to be shown by default in
// an email's header. The string substitution is the
// number of extra email to be shown.
_("%d more…").printf(this.children - SHORT_RESULTS)
ngettext("%d more…", "%d more…", this.children - SHORT_RESULTS).printf(this.children - SHORT_RESULTS)
);
}