ardour
i18n.h
Go to the documentation of this file.
1 #ifndef __i18n_h__
2 #define __i18n_h__
3 
4 #include <pbd/compose.h>
5 #include <pbd/convert.h>
6 #include "gettext.h"
7 
8 #define _(Text) dgettext (PACKAGE, Text)
9 #define N_(Text) gettext_noop (Text)
10 #define X_(Text) (Text)
11 
14 #define S_(Text) PBD::sgettext (PACKAGE, Text)
15 
16 #endif // __i18n_h__