summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b59f6b2)
raw | patch | inline | side by side (parent: b59f6b2)
author | Ton Voon <tonvoon@users.sourceforge.net> | |
Fri, 10 Dec 2004 00:13:43 +0000 (00:13 +0000) | ||
committer | Ton Voon <tonvoon@users.sourceforge.net> | |
Fri, 10 Dec 2004 00:13:43 +0000 (00:13 +0000) |
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1016 f882894a-f735-0410-b71e-b25c423dba1c
plugins/common.h | patch | blob | history |
diff --git a/plugins/common.h b/plugins/common.h
index e3f150f9116047e3dd61f9dc38ce0dc1009e1ff2..e10586bc8f4c7f077ed4de0fa6fd80537e50228b 100644 (file)
--- a/plugins/common.h
+++ b/plugins/common.h
* Internationalization
*
*/
-
-#ifdef ENABLE_NLS
-# include "gettext.h"
-# define _(String) gettext (String)
-# define S_(String) gettext (String)
-# define gettext_noop(String) String
-# define N_(String) gettext_noop String
-#else
-# define _(String) (String)
-# define S_(String) (String)
-# define N_(String) String
-# define textdomain(Domain)
-# define bindtextdomain(Package, Directory)
-#endif
+#include "gettext.h"
+#define _(String) gettext (String)
/* For non-GNU compilers to ignore __attribute__ */
#ifndef __GNUC__