2005-09-25 14:42:24 -04:00
|
|
|
#ifndef __i18n_h__
|
|
|
|
#define __i18n_h__
|
|
|
|
|
|
|
|
#include <pbd/compose.h>
|
2006-10-24 11:38:46 -04: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-10-24 11:41:46 -04:00
|
|
|
#define I18N(Array) PBD::internationalize (PACKAGE, Array)
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#endif // __i18n_h__
|