diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-08-10 20:37:22 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-08-10 20:37:22 -0600 |
commit | 843fbb7fac79d1e0340fe489e8e78e4a41b3da43 (patch) | |
tree | c3a108ac14f883120561a2044a720b145e7c0843 /src/utils | |
parent | 1b13d8557c8666e1017fd70a455830dbdcb9f46c (diff) | |
download | mana-843fbb7fac79d1e0340fe489e8e78e4a41b3da43.tar.gz mana-843fbb7fac79d1e0340fe489e8e78e4a41b3da43.tar.bz2 mana-843fbb7fac79d1e0340fe489e8e78e4a41b3da43.tar.xz mana-843fbb7fac79d1e0340fe489e8e78e4a41b3da43.zip |
Move libintl from localplayer to gettext
Better for future use.
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/gettext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/gettext.h b/src/utils/gettext.h index 55e72555..4f85952c 100644 --- a/src/utils/gettext.h +++ b/src/utils/gettext.h @@ -26,10 +26,10 @@ #include "config.h" #endif -#if ENABLE_NLS - #include <libintl.h> +#if ENABLE_NLS + #define _(s) ((char const *)gettext(s)) #define N_(s) ((char const *)s) |