repo.or.cz
/
cinelerra_cv.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
r1053: Add Russian translation.
[cinelerra_cv.git]
/
guicast
/
language.h
blob
50c2c2a36a9522d8e2e86ea8d7ded185cb42ecd5
1
#ifndef LANGUAGE_H
2
#define LANGUAGE_H
3
4
5
6
#include <libintl.h>
7
8
9
#define _(String) gettext(String)
10
#define gettext_noop(String) String
11
#define N_(String) gettext_noop (String)
12
13
14
15
#endif
16
17
18
19
20
21
22