mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
17 lines
305 B
C
17 lines
305 B
C
|
|
#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__
|