Mercurial > geeqie.yaz
annotate src/intl.h @ 1683:30eb78c26e9b
do not process sidecar files in bar_gps
patch by Colin Clark
author | nadvornik |
---|---|
date | Tue, 28 Jul 2009 22:14:26 +0000 |
parents | de25b265ab64 |
children |
rev | line source |
---|---|
1 | 1 #ifndef __INTL_H__ |
2 #define __INTL_H__ | |
3 | |
4 #ifdef ENABLE_NLS | |
1666 | 5 # include <libintl.h> |
1 | 6 # define _(String) dgettext(PACKAGE,String) |
7 # ifdef gettext_noop | |
8 # define N_(String) gettext_noop(String) | |
9 # else | |
10 # define N_(String) (String) | |
11 # endif /* gettext_noop */ | |
12 #else | |
13 # define _(String) (String) | |
14 # define N_(String) (String) | |
15 # define textdomain(String) (String) | |
16 # define gettext(String) (String) | |
17 # define dgettext(Domain,String) (String) | |
18 # define dcgettext(Domain,String,Type) (String) | |
442 | 19 # define bindtextdomain(Domain,Directory) (Domain) |
9 | 20 # define bind_textdomain_codeset(Domain,String) (Domain) |
1 | 21 #endif /* ENABLE_NLS */ |
22 | |
9 | 23 #endif |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
442
diff
changeset
|
24 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |