Jean-Noël Avila [off-list ref] writes:
Le 12/09/2016 à 13:29, Vasco Almeida a écrit :
quoted
- warning("Cannot handle more than %d bases. "
- "Ignoring %s.",
+ warning(_("cannot handle more than %d bases. "
+ "Ignoring %s."),
(int)ARRAY_SIZE(bases)-1, argv[i]);
}
This one is also missing the plural form.
That is technically correct, but I do not think it matters, as we
won't be making bases[] array smaller than it currently is, so the
"more than %d bases" part of the message will always be in the
plural form and never be singular.
Thanks.