summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2006-04-25 01:21:22 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2006-04-25 01:21:22 +0000
commit4aa14bd682e242b82117730d8e6df1aac28d1735 (patch)
tree5579a3bfcb1e5228d1d3c2073c249e9b53d447d3 /libs
parent39f32134debeb64b1f1cea7f9d00e7074b4f71fa (diff)
add missing file
git-svn-id: svn://localhost/trunk/ardour2@470 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/pbd3/i18n.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/libs/pbd3/i18n.h b/libs/pbd3/i18n.h
new file mode 100644
index 0000000000..7c79d2eb53
--- /dev/null
+++ b/libs/pbd3/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__