diff --git a/lib/misc/intl.h b/lib/misc/intl.h new file mode 100644 index 000000000..2d4280995 --- /dev/null +++ b/lib/misc/intl.h @@ -0,0 +1,17 @@ +/* + * Copyright (C) 2004 Sistina Software (UK) Limited. + * + * This file is released under the LGPL. + */ + +#ifndef _LVM_INTL_H +#define _LVM_INTL_H + +#ifdef INTL_PACKAGE +# include +# define _(String) dgettext(INTL_PACKAGE, (String)) +#else +# define _(String) (String) +#endif + +#endif