repo.or.cz
/
cinelerra_cv
/
ct.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'ct' of git.pipapo.org:cinelerra-ct into ct
[cinelerra_cv/ct.git]
/
guicast
/
language.h
blob
c6244879f96b01f71a4d4f9ed082dadc05de07a9
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
23
/*
24
// Local Variables:
25
// mode: C++
26
// c-file-style: "linux"
27
// End:
28
*/