Merge branch 'better-than-par'
[hex-a-hop.git] / i18n.cpp
blob517eabb98913e8032e12447ba5f48da5b7bff657
1 // (c) 2007 Miriam Ruiz <little_miry@yahoo.es>
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Library General Public
5 // License as published by the Free Software Foundation; either
6 // version 2 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Library General Public License for more details.
13 // You should have received a copy of the GNU Library General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
16 // USA.
18 #ifdef USE_GETTEXT
20 #include "i18n.h"
22 #include <libintl.h>
23 #include <locale.h>
24 #include <langinfo.h>
26 GetTextInit::GetTextInit()
28 if (!IsInit)
30 IsInit = true;
31 setlocale (LC_MESSAGES, "");
32 setlocale (LC_CTYPE, "");
33 setlocale (LC_COLLATE, "");
34 textdomain ("hex-a-hop");
35 bindtextdomain ("hex-a-hop", NULL);
39 bool GetTextInit::IsInit = false;
41 const char *GetTextInit::GetEncoding() const
43 // See http://svn.xiph.org/trunk/vorbis-tools/intl/localcharset.c
44 // if nl_langinfo isn't found
45 char *locale_enc = nl_langinfo(CODESET);
46 return locale_enc;
49 #endif