2005-09-25 14:42:24 -04:00
|
|
|
#ifndef __i18n_h__
|
|
|
|
#define __i18n_h__
|
|
|
|
|
|
|
|
#include <pbd/compose.h>
|
2006-11-19 11:45:16 -05:00
|
|
|
#include <pbd/convert.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
#include "gettext.h"
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#define _(Text) dgettext (PACKAGE,Text)
|
|
|
|
#define N_(Text) gettext_noop (Text)
|
|
|
|
#define X_(Text) Text
|
2006-11-19 11:45:16 -05:00
|
|
|
#define I18N(Array) PBD::internationalize (PACKAGE, Array)
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#endif // __i18n_h__
|