blob: 88f5cfed5489703ce2511574a42fa71ed2e098b2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- src/labels.h.orig 2018-11-23 02:16:45 UTC
+++ src/labels.h
@@ -30,11 +30,17 @@
#ifndef LABELS_H_INCLUDED
#define LABELS_H_INCLUDED
+#ifdef ENABLE_NLS
#include <libintl.h>
#define _(String) dgettext (PACKAGE , String)
#define gettext_noop(String) String
#define N_(String) gettext_noop (String)
+#else
+#define _(String) String
+#define gettext_noop(String) String
+#define N_(String) String
+#endif
/* global lang attribute */
#define DOC_LANG _( "en")
|