summaryrefslogtreecommitdiff
path: root/gtk2_ardour/i18n.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/i18n.h')
-rw-r--r--gtk2_ardour/i18n.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/gtk2_ardour/i18n.h b/gtk2_ardour/i18n.h
new file mode 100644
index 0000000000..3ace250419
--- /dev/null
+++ b/gtk2_ardour/i18n.h
@@ -0,0 +1,16 @@
+#ifndef __i18n_h__
+#define __i18n_h__
+
+#include <pbd/compose.h>
+#include "gettext.h"
+
+#include <vector>
+#include <string>
+
+std::vector<std::string> internationalize (const char **);
+
+#define _(Text) dgettext (PACKAGE,Text)
+#define N_(Text) gettext_noop (Text)
+#define X_(Text) Text
+
+#endif // __i18n_h__