summaryrefslogtreecommitdiff
path: root/libs/ardour/i18n.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/i18n.h')
-rw-r--r--libs/ardour/i18n.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/libs/ardour/i18n.h b/libs/ardour/i18n.h
new file mode 100644
index 0000000000..7c79d2eb53
--- /dev/null
+++ b/libs/ardour/i18n.h
@@ -0,0 +1,11 @@
+#ifndef __i18n_h__
+#define __i18n_h__
+
+#include <pbd/compose.h>
+#include "gettext.h"
+
+#define _(Text) dgettext (PACKAGE, Text)
+#define N_(Text) gettext_noop (Text)
+#define X_(Text) (Text)
+
+#endif // __i18n_h__