mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-04 01:43:24 +00:00
14 lines
313 B
C
14 lines
313 B
C
![]() |
#include "libgimp/gimpintl.h"
|
||
|
|
||
|
#ifdef HAVE_LC_MESSAGES
|
||
|
#define INIT_I18N() \
|
||
|
setlocale(LC_MESSAGES, ""); \
|
||
|
bindtextdomain("gimp-std-plugins", LOCALEDIR); \
|
||
|
textdomain("gimp-std-plugins")
|
||
|
|
||
|
#else
|
||
|
#define INIT_I18N() \
|
||
|
bindtextdomain("gimp-std-plugins", LOCALEDIR); \
|
||
|
textdomain("gimp-std-plugins")
|
||
|
#endif
|