Commit 61f82083 61f82083550a148ae7db92d7e137c4f6e1582fa1 by Wojciech Polak

NLS main code

1 parent 9ea2b205
1 /* GNU Mailutils -- a suite of utilities for electronic mail
2 Copyright (C) 2002 Free Software Foundation, Inc.
3
4 GNU Mailutils is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Library Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
7 any later version.
8
9 GNU Mailutils is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU Library General Public License for more details.
13
14 You should have received a copy of the GNU Library General Public License
15 along with GNU Mailutils; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
17
18 #if HAVE_CONFIG_H
19 # include <config.h>
20 #endif
21
22 #include <mailutils/nls.h>
23
24 /* Initialize Native Language Support */
25
26 void
27 mu_init_nls (void)
28 {
29 #ifdef ENABLE_NLS
30 /* Set locale via LC_ALL. */
31 #ifdef HAVE_SETLOCALE
32 setlocale(LC_ALL, "");
33 #endif /* HAVE_SETLOCALE */
34 bindtextdomain(PACKAGE, LOCALEDIR);
35 textdomain(PACKAGE);
36 #endif /* ENABLE_NLS */
37 return;
38 }
39