summaryrefslogtreecommitdiff
path: root/src/zenity.h
diff options
context:
space:
mode:
authorLogan Rathbone <poprocks@gmail.com>2021-06-08 22:55:49 -0400
committerLogan Rathbone <poprocks@gmail.com>2021-06-08 22:55:49 -0400
commitae51b769019ea5e4c32ec6e386f3d2183562c1cb (patch)
tree7944059592bcd59a662a35c18705c6c242263217 /src/zenity.h
parentRemove superfluous MAINTAINERS file. (diff)
downloadzenity-ae51b769019ea5e4c32ec6e386f3d2183562c1cb.tar.gz
zenity-ae51b769019ea5e4c32ec6e386f3d2183562c1cb.tar.bz2
zenity-ae51b769019ea5e4c32ec6e386f3d2183562c1cb.zip
Port build system from autotools to meson.
Diffstat (limited to 'src/zenity.h')
-rw-r--r--src/zenity.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/zenity.h b/src/zenity.h
index b86a264d..404eec77 100644
--- a/src/zenity.h
+++ b/src/zenity.h
@@ -5,7 +5,6 @@
G_BEGIN_DECLS
-#ifdef ENABLE_NLS
#include <libintl.h>
#define _(String) dgettext (GETTEXT_PACKAGE, String)
#ifdef gettext_noop
@@ -13,15 +12,6 @@ G_BEGIN_DECLS
#else
#define N_(String) (String)
#endif
-#else /* NLS is disabled */
-#define _(String) (String)
-#define N_(String) (String)
-#define textdomain(String) (String)
-#define gettext(String) (String)
-#define dgettext(Domain, String) (String)
-#define dcgettext(Domain, String, Type) (String)
-#define bindtextdomain(Domain, Directory) (Domain)
-#endif
typedef struct {
gchar *dialog_title;
bgstack15