Mercurial > geeqie
annotate src/intl.h @ 15:3263965d5f9e
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
##### an offical release when making enhancements and translation updates. #####
Thu Mar 3 14:24:58 2005 John Ellis <johne@verizon.net>
* filelist.c, info.c, preferences.c, utilops.c: Use doubles instead of
floats whenever possible.
* ui_utildlg.c (generic_dialog_add_message): Enable line wrap for
message body so specifying newlines is no longer needed.
* pan-view.c: Display info dialog when thumbnail caching settings are
not optimal.
author | gqview |
---|---|
date | Thu, 03 Mar 2005 19:32:48 +0000 |
parents | d907d608745f |
children | 4b2d7f9af171 |
rev | line source |
---|---|
1 | 1 #ifndef __INTL_H__ |
2 #define __INTL_H__ | |
3 | |
4 #ifdef ENABLE_NLS | |
5 # include <libintl.h> | |
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) | |
19 # define bindtextdomain(Domain,Directory) (Domain) | |
9 | 20 # define bind_textdomain_codeset(Domain,String) (Domain) |
1 | 21 #endif /* ENABLE_NLS */ |
22 | |
9 | 23 #endif |