mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-26 08:22:37 +01:00
19 lines
257 B
C
19 lines
257 B
C
|
|
|
|
#ifndef WINGS_CONFIG_H_
|
|
#define WINGS_CONFIG_H_
|
|
|
|
|
|
#include "../src/config.h"
|
|
|
|
#if defined(HAVE_LIBINTL_H) && defined(I18N)
|
|
# include <libintl.h>
|
|
# define _(text) dgettext("WINGs", text)
|
|
#else
|
|
# define _(text) (text)
|
|
#endif
|
|
|
|
|
|
#endif /* WINGS_CONFIG_H_ */
|
|
|