summaryrefslogtreecommitdiff
path: root/src/resources
diff options
context:
space:
mode:
authorGuillaume Melquiond <guillaume.melquiond@gmail.com>2007-08-05 16:21:56 +0000
committerGuillaume Melquiond <guillaume.melquiond@gmail.com>2007-08-05 16:21:56 +0000
commit1828eee6a6d91fd385ad1e69d93044516493aa91 (patch)
tree9e7e86955e2d79f4f21daacf009312efd90dc70e /src/resources
parent52abf02fb5521a00e78903addda6f8a20896f18f (diff)
downloadmana-client-1828eee6a6d91fd385ad1e69d93044516493aa91.tar.gz
mana-client-1828eee6a6d91fd385ad1e69d93044516493aa91.tar.bz2
mana-client-1828eee6a6d91fd385ad1e69d93044516493aa91.tar.xz
mana-client-1828eee6a6d91fd385ad1e69d93044516493aa91.zip
Added support for internationalization. Tested by translating a few gui strings to french.
Diffstat (limited to 'src/resources')
-rw-r--r--src/resources/gettext.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/resources/gettext.h b/src/resources/gettext.h
new file mode 100644
index 00000000..4b893a6f
--- /dev/null
+++ b/src/resources/gettext.h
@@ -0,0 +1,44 @@
+/*
+ * The Mana World
+ * Copyright 2007 The Mana World Development Team
+ *
+ * This file is part of The Mana World.
+ *
+ * The Mana World is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * The Mana World is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with The Mana World; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ * $Id$
+ */
+
+#ifndef _TMW_RESOURCES_GETTEXT_H
+#define _TMW_RESOURCES_GETTEXT_H
+
+#include "../../config.h"
+
+#if ENABLE_NLS
+
+#include <libintl.h>
+
+#define _(s) ((char const *)gettext(s))
+#define N_(s) ((char const *)s)
+
+#else
+
+#define gettext(s) ((char const *)s)
+#define _(s) ((char const *)s)
+#define N_(s) ((char const *)s)
+
+#endif
+
+#endif