00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00029 #ifndef GIMP_PRINT_INTL_H
00030 #define GIMP_PRINT_INTL_H
00031
00032 #ifdef __cplusplus
00033 extern "C" {
00034 #endif
00035
00048 #ifdef INCLUDE_LOCALE_H
00049 INCLUDE_LOCALE_H
00050 #else
00051 #include <locale.h>
00052 #endif
00053
00054 #ifdef ENABLE_NLS
00055
00056 #include <libintl.h>
00057 #ifndef _
00058
00059 #define _(String) gettext (String)
00060 #endif
00061 #ifndef gettext_noop
00062
00063 #define gettext_noop(String) (String)
00064 #endif
00065 #ifdef gettext_noop
00066
00067 # define N_(String) gettext_noop (String)
00068 #else
00069
00070 # define N_(String) (String)
00071 #endif
00072
00073 #else
00074
00075 # define textdomain(String) (String)
00076 # define gettext(String) (String)
00077 # define dgettext(Domain,Message) (Message)
00078 # define dcgettext(Domain,Message,Type) (Message)
00079 # define bindtextdomain(Domain,Directory) (Domain)
00080 # define _(String) (String)
00081 # define N_(String) (String)
00082
00083 #endif
00084
00087 #ifdef __cplusplus
00088 }
00089 #endif
00090
00091 #endif