]> 4ch.mooo.com Git - 16.git/blob - src/lib/dl/ext/vorbtool/i18n.h
refresh wwww
[16.git] / src / lib / dl / ext / vorbtool / i18n.h
1 #ifndef VORBIS_TOOLS_I18N_H
2 #define VORBIS_TOOLS_I18N_H
3
4 #ifdef ENABLE_NLS
5 # error NO
6 #define _(X) gettext(X)
7 #else
8 #define _(X) (X)
9 #define textdomain(X)
10 #define bindtextdomain(X, Y)
11 #endif
12 #ifdef gettext_noop
13 #define N_(X) gettext_noop(X)
14 #else
15 #define N_(X) (X)
16 #endif
17
18 #endif