1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-18 10:04:20 +03:00
lvm2/lib/misc/intl.h

18 lines
292 B
C
Raw Normal View History

2004-02-18 13:06:21 +00:00
/*
* 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