Mercurial > geeqie.yaz
view src/intl.h @ 684:9f00d0d874fa
Save order of Properties dialog tabs to rc file.
Users of GTK+ <2.10 can set tabs order directly in the rc file,
others can move tabs using drag'n drop.
The option is named properties.tabs_order, its default value
is "123" which is General, Keywords, Exif tabs (left to right).
author | zas_ |
---|---|
date | Sun, 18 May 2008 21:14:01 +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