summaryrefslogtreecommitdiff
path: root/gtk2_ardour/i18n.h
blob: 3ace2504192fc540986dc3975a86b3d4a8802775 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __i18n_h__
#define __i18n_h__

#include <pbd/compose.h>
#include "gettext.h"

#include <vector>
#include <string>

std::vector<std::string> internationalize (const char **);

#define _(Text)  dgettext (PACKAGE,Text)
#define N_(Text) gettext_noop (Text)
#define X_(Text) Text

#endif // __i18n_h__