This setting and binding were lost a year ago, in commit 2180ecc81b. Signed-off-by: Benno Schulenberg <bensberg@xxxxxxxxxx> --- misc-utils/hardlink.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/misc-utils/hardlink.c b/misc-utils/hardlink.c index 932048622..49515c10b 100644 --- a/misc-utils/hardlink.c +++ b/misc-utils/hardlink.c @@ -1329,8 +1329,9 @@ int main(int argc, char *argv[]) sigaction(SIGINT, &sa, NULL); sigaction(SIGUSR1, &sa, NULL); - /* Pretty print numeric output */ - setlocale(LC_NUMERIC, ""); + setlocale(LC_ALL, ""); + bindtextdomain(PACKAGE, LOCALEDIR); + textdomain(PACKAGE); if (atexit(to_be_called_atexit) != 0) err(EXIT_FAILURE, _("cannot register exit handler")); -- 2.34.1