mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-11 05:49:18 +03:00
8c34e0837f
fix a bug in the panel-widget selection. i18n changes from Andrej Borsenkow. Menus renamed, better texts -- thanks Havoc. lav's fixes for curses compilation. Miguel
29 lines
794 B
C
29 lines
794 B
C
/* GNOME already handles the intenrationalization issues */
|
|
#ifndef _MC_I18N_H_
|
|
#define _MC_I18N_H_
|
|
|
|
#ifdef HAVE_GNOME
|
|
# include <gnome.h>
|
|
#else
|
|
# ifdef ENABLE_NLS
|
|
# include <libintl.h>
|
|
# define _(String) gettext (String)
|
|
# ifdef gettext_noop
|
|
# define N_(String) gettext_noop (String)
|
|
# else
|
|
# define N_(String) (String)
|
|
# endif
|
|
# else
|
|
/* Stubs that do something close enough. */
|
|
# define textdomain(String) (String)
|
|
# define gettext(String) (String)
|
|
# define dgettext(Domain,Message) (Message)
|
|
# define dcgettext(Domain,Message,Type) (Message)
|
|
# define bindtextdomain(Domain,Directory) (Domain)
|
|
# define _(String) (String)
|
|
# define N_(String) (String)
|
|
# endif
|
|
#endif
|
|
|
|
#endif /* _MC_I18N_H_ */
|