From 10c96c43ac7f6465fef64f5d46797853bdc0b155 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 12 Mar 1996 03:08:30 +0000 Subject: (main): Initialize for internationalized message support: call setlocale, bindtextdomain, and textdomain. --- src/dd.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/dd.c') diff --git a/src/dd.c b/src/dd.c index f56e55446..2c59bdaa2 100644 --- a/src/dd.c +++ b/src/dd.c @@ -327,6 +327,9 @@ main (int argc, char **argv) int i; program_name = argv[0]; + setlocale (LC_ALL, ""); + bindtextdomain (PACKAGE, LOCALEDIR); + textdomain (PACKAGE); /* Initialize translation table to identity translation. */ for (i = 0; i < 256; i++) -- cgit v1.2.3-54-g00ecf