File: gettext_macros.h

package info (click to toggle)
pbbuttonsd 0.7.9-5
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,416 kB
  • ctags: 2,350
  • sloc: ansic: 17,517; sh: 4,626; makefile: 552; yacc: 288; cpp: 203; sed: 16
file content (37 lines) | stat: -rw-r--r-- 1,167 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef INCLUDE_GETTEXT_MACROS_H
#define INCLUDE_GETTEXT_MACROS_H
/* ----------------------------------------------------------------------------
 * gettext:macros.h
 *
 * Copyright 2002 Matthias Grimm
 *
 * This program 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
 * 2 of the License, or (at your option) any later version.
 * ----------------------------------------------------------------------------*/
#ifdef ENABLE_NLS
#  include <locale.h>
#endif

/* Standard gettext macros */
#ifdef ENABLE_NLS
#  include <libintl.h>
#  undef _
#  define _(String) dgettext (PACKAGE, String)
#  ifdef gettext_noop
#    define N_(String) gettext_noop (String)
#  else
#    define N_(String) (String)
#  endif
#else
#  define textdomain(String) (String)
#  define gettext(String) (String)
#  define dgettext(Domain,Message) (Message)
#  define dcgettext(Domain,Message,Type) (Message)
#  define bindtextdomain(Domain,Directory) (Domain)
#  define _(String) (String)
#  define N_(String) (String)
#endif

#endif    /* INCLUDE_GETTEXT_MACROS_H */