1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-23 21:35:29 +03:00

File missed from last checkin.

This commit is contained in:
Alasdair Kergon 2004-02-18 13:06:21 +00:00
parent f93434a8ce
commit aa7f3fabe2

17
lib/misc/intl.h Normal file
View File

@ -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 <libintl.h>
# define _(String) dgettext(INTL_PACKAGE, (String))
#else
# define _(String) (String)
#endif
#endif