aboutsummaryrefslogtreecommitdiff
path: root/plugins/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/common.h')
-rw-r--r--plugins/common.h16
1 files changed, 2 insertions, 14 deletions
diff --git a/plugins/common.h b/plugins/common.h
index e3f150f9..e10586bc 100644
--- a/plugins/common.h
+++ b/plugins/common.h
@@ -184,20 +184,8 @@ enum {
* 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__