All included libraries now link dynamically instead of statically.
[ardour.git] / libs / ardour / i18n.h
1 #ifndef __i18n_h__
2 #define __i18n_h__
3
4 #include <pbd/compose.h>
5 #include "gettext.h"
6
7 #include <vector>
8 #include <string>
9
10 #define _(Text)  dgettext (PACKAGE,Text)
11 #define N_(Text) gettext_noop (Text)
12 #define X_(Text) Text
13
14 #endif // __i18n_h__