Vasco Almeida <vascomalmeida@xxxxxxx> writes: > @@ -70,6 +72,8 @@ Git::I18N - Perl interface to Git's Gettext localizations > > printf __("The following error occurred: %s\n"), $error; > > + printf __n("commited %d file", "commited %d files", $files), $files; > + A micronit: the existing example above prints a whole line, i.e. terminated with a LF. The new one probably should match.