~ubuntu-branches/ubuntu/edgy/e2fsprogs/edgy-updates

« back to all changes in this revision

Viewing changes to misc/nls-enable.h

  • Committer: Bazaar Package Importer
  • Author(s): Yann Dirson
  • Date: 2002-03-21 23:58:48 UTC
  • Revision ID: james.westby@ubuntu.com-20020321235848-cmmy98hy0nihp922
Tags: upstream-1.27
ImportĀ upstreamĀ versionĀ 1.27

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifdef ENABLE_NLS
 
2
#include <libintl.h>
 
3
#include <locale.h>
 
4
#define _(a) (gettext (a))
 
5
#ifdef gettext_noop
 
6
#define N_(a) gettext_noop (a)
 
7
#else
 
8
#define N_(a) (a)
 
9
#endif
 
10
/* FIXME */
 
11
#define NLS_CAT_NAME "e2fsprogs"
 
12
#define LOCALEDIR "/usr/share/locale"
 
13
/* FIXME */
 
14
#else
 
15
#define _(a) (a)
 
16
#define N_(a) a
 
17
#endif