trivial: Use plural form for an ambiguous translatable string

In pt_BR there are plural form of both words firmware and approved.
This commit is contained in:
Richard Hughes 2019-03-27 09:30:54 +00:00
parent 12a021d2d2
commit 7eb1e92837

View File

@ -2091,7 +2091,9 @@ fu_util_get_approved_firmware (FuUtilPrivate *priv, gchar **values, GError **err
} else {
/* TRANSLATORS: approved firmware has been checked by
* the domain administrator */
g_print ("%s\n", _("Approved firmware:"));
g_print ("%s\n", ngettext ("Approved firmware:",
"Approved firmware:",
g_strv_length (checksums)));
for (guint i = 0; checksums[i] != NULL; i++)
g_print (" * %s\n", checksums[i]);
}