home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Multimedia / k3d-setup-0.7.11.0.exe / lib / k3d / include / k3d-i18n-config.h next >
Encoding:
C/C++ Source or Header  |  2009-02-17  |  373 b   |  21 lines

  1. #ifndef K3DSDK_I18N_CONFIG_H
  2. #define K3DSDK_I18N_CONFIG_H
  3.  
  4. // Generated file, do not edit!  Make changes to k3d-i18n-config.h.in instead.
  5.  
  6. #define K3D_BUILD_NLS
  7.  
  8. #ifdef K3D_BUILD_NLS
  9.  
  10.     #include <libintl.h>
  11.     #define _(String) gettext(String)
  12.  
  13. #else // K3D_BUILD_NLS
  14.  
  15.     #define _(String) (String)
  16.  
  17. #endif // !K3D_BUILD_NLS
  18.  
  19. #endif // K3DSDK_I18N_CONFIG_H
  20.  
  21.