commit: 943eb812b612dfef3facaef54cc86b457ff3b2d9
Author: Kerin Millar <kfm <AT> plushkava <DOT> net>
AuthorDate: Mon Aug 18 01:35:30 2025 +0000
Commit: Kerin Millar <kfm <AT> plushkava <DOT> net>
CommitDate: Mon Aug 18 01:35:30 2025 +0000
URL: https://gitweb.gentoo.org/proj/locale-gen.git/commit/?id=943eb812
Claim to be compiling "locales" rather than "locale definition files"
To count locales as "locale definition files" isn't strictly correct.
For instance, to compile the en_US.UTF-8 and en_US.ISO-8859-1 locales
would entail opening the /usr/share/i18n/locales/en_US file both times.
Use the term, locales, instead.
Signed-off-by: Kerin Millar <kfm <AT> plushkava.net>
locale-gen | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/locale-gen b/locale-gen
index 56ab9f3..3f21196 100755
--- a/locale-gen
+++ b/locale-gen
@@ -424,7 +424,7 @@ sub generate_locales ($workers, @locales) {
my $total = scalar @locales;
$workers = min($workers, $total);
- printf "Compiling %d locale definition file%s with %d worker%s ...\n",
+ printf "Compiling %d locale%s with %d worker%s ...\n",
$total, plural($total), $workers, plural($workers);
my $num_width = length $total;