summaryrefslogtreecommitdiff
path: root/i18n.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2010-11-04 17:45:26 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2010-11-04 17:45:26 (GMT)
commitc1ff0021b42fb5738a0cb31da15c12eb6dfac816 (patch)
tree5ada2aaf5f8bbf7df2ae4d851235b1ab4a0d5c82 /i18n.h
parenta3e238eb03fc52845e7a8930feb384a0ad33233e (diff)
Introduced translations.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@188 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'i18n.h')
-rw-r--r--i18n.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/i18n.h b/i18n.h
new file mode 100644
index 0000000..56bd2da
--- /dev/null
+++ b/i18n.h
@@ -0,0 +1,38 @@
+
+/* OpenIDA - Outil d'analyse de fichiers binaires
+ * i18n.h - facilités pour la traduction des messages
+ *
+ * Copyright (C) 2010 Cyrille Bagard
+ *
+ * This file is part of OpenIDA.
+ *
+ * OpenIDA 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 3 of the License, or
+ * (at your option) any later version.
+ *
+ * OpenIDA 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 Foobar. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+#ifndef _I18N_H
+#define _I18N_H
+
+
+#include <config.h>
+#include <gettext.h>
+
+
+#ifndef _
+# define _(str) gettext(str)
+#endif
+
+
+
+#endif /* _I18N_H */