1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
$NetBSD: patch-ad,v 1.5 2003/04/09 17:19:14 drochner Exp $
--- mp_msg.c.orig 2002-12-27 17:17:57.000000000 +0100
+++ mp_msg.c 2003-04-09 19:12:49.000000000 +0200
@@ -33,13 +33,17 @@
#ifdef USE_I18N
fprintf(stdout, "Using GNU internationalization\n");
fprintf(stdout, "Original domain: %s\n", textdomain(NULL));
+#if 0
fprintf(stdout, "Original dirname: %s\n", bindtextdomain(textdomain(NULL),NULL));
+#endif
setlocale(LC_ALL, ""); /* set from the environment variables */
bindtextdomain("mplayer", PREFIX"/share/locale");
textdomain("mplayer");
fprintf(stdout, "Current domain: %s\n", textdomain(NULL));
+#if 0
fprintf(stdout, "Current dirname: %s\n", bindtextdomain(textdomain(NULL),NULL));
#endif
+#endif
mp_msg_set_level(MSGL_STATUS);
}
|