ignore unpaired noteoff's when writing part of a MidiModel to a new source. in realit...
[ardour2.git] / libs / surfaces / powermate / i18n.h
blobdcbbfcf52efe7f586d6a962dfeff633344eda83c
1 #ifndef __i18n_h__
2 #define __i18n_h__
4 #include "pbd/compose.h"
5 #include "pbd/convert.h"
6 #include "gettext.h"
8 #include <vector>
9 #include <string>
11 #define _(Text) dgettext (PACKAGE,Text)
12 #define N_(Text) gettext_noop (Text)
13 #define X_(Text) Text
14 #define I18N(Array) PBD::internationalize (PACKAGE, Array)
16 #endif // __i18n_h__