13
0

add missing file

git-svn-id: svn://localhost/trunk/ardour2@470 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2006-04-25 01:21:22 +00:00
parent 39f32134de
commit 4aa14bd682

11
libs/pbd3/i18n.h Normal file
View File

@ -0,0 +1,11 @@
#ifndef __i18n_h__
#define __i18n_h__
#include <pbd/compose.h>
#include "gettext.h"
#define _(Text) dgettext (PACKAGE, Text)
#define N_(Text) gettext_noop (Text)
#define X_(Text) (Text)
#endif // __i18n_h__