repo.or.cz
/
xiph-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add Russian translation provided by Валерий Крувялис <valkru@mail.ru>
[xiph-mirror.git]
/
vorbis-tools
/
include
/
i18n.h
blob
86248307d31a92c69c94a769913d4dc2b8470b4f
1
#ifndef VORBIS_TOOLS_I18N_H
2
#define VORBIS_TOOLS_I18N_H
3
4
#ifdef ENABLE_NLS
5
#include <libintl.h>
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