i18n.h 1.93 KB
Newer Older
1 2
/*
 *  GRUB  --  GRand Unified Bootloader
3
 *  Copyright (C) 2009,2010  Free Software Foundation, Inc.
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 *
 *  GRUB is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  GRUB is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef	GRUB_I18N_H
#define	GRUB_I18N_H	1

22 23
#include <config.h>
#include <grub/symbol.h>
24

25
/* NLS can be disabled through the configure --disable-nls option.  */
26 27
#if (defined(ENABLE_NLS) && ENABLE_NLS) || !defined (GRUB_UTIL)

28
extern const char *(*EXPORT_VAR(grub_gettext)) (const char *s) __attribute__ ((format_arg (1)));
29 30 31 32 33 34 35 36

# ifdef GRUB_UTIL

#  include <locale.h>
#  include <libintl.h>

# endif /* GRUB_UTIL */

37
#else /* ! (defined(ENABLE_NLS) && ENABLE_NLS) */
38 39 40 41 42 43

/* Disabled NLS.
   The casts to 'const char *' serve the purpose of producing warnings
   for invalid uses of the value returned from these functions.
   On pre-ANSI systems without 'const', the config.h file is supposed to
   contain "#define const".  */
44
static inline const char * __attribute__ ((always_inline,format_arg (1)))
45 46 47 48
gettext (const char *str)
{
  return str;
}
49

50
#endif /* (defined(ENABLE_NLS) && ENABLE_NLS) */
51 52

#ifdef GRUB_UTIL
53
static inline const char * __attribute__ ((always_inline,format_arg (1)))
54 55 56 57
_ (const char *str)
{
  return gettext(str);
}
58
#else
59
static inline const char * __attribute__ ((always_inline,format_arg (1)))
60 61 62 63
_ (const char *str)
{
  return grub_gettext(str);
}
64
#endif /* GRUB_UTIL */
65

66 67
#define N_(str) str

68
#endif /* GRUB_I18N_H */