Mercurial > geeqie
view src/intl.h @ 639:8b95e1859fee
Rework read_*_option():
- read_u?int_option() now interpret a value of "true" as 1
- read_bool_option() now interpret any value different from 0 as true.
- make functions return TRUE on successful read, FALSE else
Theses changes will help to maintain compatibility when options are modified.
author | zas_ |
---|---|
date | Mon, 12 May 2008 08:52:17 +0000 |
parents | 4b2d7f9af171 |
children | 1646720364cf |
line wrap: on
line source
#ifndef __INTL_H__ #define __INTL_H__ #ifdef ENABLE_NLS # include <libintl.h> # define _(String) dgettext(PACKAGE,String) # ifdef gettext_noop # define N_(String) gettext_noop(String) # else # define N_(String) (String) # endif /* gettext_noop */ #else # define _(String) (String) # define N_(String) (String) # define textdomain(String) (String) # define gettext(String) (String) # define dgettext(Domain,String) (String) # define dcgettext(Domain,String,Type) (String) # define bindtextdomain(Domain,Directory) (Domain) # define bind_textdomain_codeset(Domain,String) (Domain) #endif /* ENABLE_NLS */ #endif