2004-05-18 Matthias Clasen <mclasen@redhat.com> * gtk/gtkintl.h: Include glib/gi18n-lib.h and only define the P_() macros ourselves.
		
			
				
	
	
		
			14 lines
		
	
	
		
			228 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			228 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef __GTKINTL_H__
 | 
						|
#define __GTKINTL_H__
 | 
						|
 | 
						|
#include "config.h"
 | 
						|
#include <glib/gi18n-lib.h>
 | 
						|
 | 
						|
#ifdef ENABLE_NLS
 | 
						|
#define P_(String) dgettext(GETTEXT_PACKAGE "-properties",String)
 | 
						|
#else 
 | 
						|
#define P_(String) (String)
 | 
						|
#endif
 | 
						|
 | 
						|
#endif
 |