pcb 4.1.1
An interactive printed circuit board layout editor.

gettext.h File Reference

#include <string.h>
#include <stdlib.h>
Include dependency graph for gettext.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Defines

#define gettext(Msgid)   ((const char *) (Msgid))
#define dgettext(Domainname, Msgid)   ((void) (Domainname), gettext (Msgid))
#define dcgettext(Domainname, Msgid, Category)   ((void) (Category), dgettext (Domainname, Msgid))
#define ngettext(Msgid1, Msgid2, N)
#define dngettext(Domainname, Msgid1, Msgid2, N)   ((void) (Domainname), ngettext (Msgid1, Msgid2, N))
#define dcngettext(Domainname, Msgid1, Msgid2, N, Category)   ((void) (Category), dngettext(Domainname, Msgid1, Msgid2, N))
#define textdomain(Domainname)   ((const char *) (Domainname))
#define bindtextdomain(Domainname, Dirname)   ((void) (Domainname), (const char *) (Dirname))
#define bind_textdomain_codeset(Domainname, Codeset)   ((void) (Domainname), (const char *) (Codeset))
#define gettext_noop(String)   String
#define GETTEXT_CONTEXT_GLUE   "\004"
#define pgettext(Msgctxt, Msgid)   pgettext_aux (NULL, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES)
#define dpgettext(Domainname, Msgctxt, Msgid)   pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES)
#define dcpgettext(Domainname, Msgctxt, Msgid, Category)   pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, Category)
#define npgettext(Msgctxt, Msgid, MsgidPlural, N)   npgettext_aux (NULL, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES)
#define dnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N)   npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES)
#define dcnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N, Category)   npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, Category)
#define _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS
#define pgettext_expr(Msgctxt, Msgid)   dcpgettext_expr (NULL, Msgctxt, Msgid, LC_MESSAGES)
#define dpgettext_expr(Domainname, Msgctxt, Msgid)   dcpgettext_expr (Domainname, Msgctxt, Msgid, LC_MESSAGES)
#define npgettext_expr(Msgctxt, Msgid, MsgidPlural, N)   dcnpgettext_expr (NULL, Msgctxt, Msgid, MsgidPlural, N, LC_MESSAGES)
#define dnpgettext_expr(Domainname, Msgctxt, Msgid, MsgidPlural, N)   dcnpgettext_expr (Domainname, Msgctxt, Msgid, MsgidPlural, N, LC_MESSAGES)

Functions

static const char * pgettext_aux (const char *domain, const char *msg_ctxt_id, const char *msgid, int category)
static const char * npgettext_aux (const char *domain, const char *msg_ctxt_id, const char *msgid, const char *msgid_plural, unsigned long int n, int category)
static const char * dcpgettext_expr (const char *domain, const char *msgctxt, const char *msgid, int category)
static const char * dcnpgettext_expr (const char *domain, const char *msgctxt, const char *msgid, const char *msgid_plural, unsigned long int n, int category)

Define Documentation

#define _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS
Value:
(((__GNUC__ >= 3 || __GNUG__ >= 2) && !__STRICT_ANSI__) \
   /* || __STDC_VERSION__ >= 199901L */ )

Definition at line 193 of file gettext.h.

#define bind_textdomain_codeset (   Domainname,
  Codeset 
)    ((void) (Domainname), (const char *) (Codeset))

Definition at line 103 of file gettext.h.

Referenced by ghid_parse_arguments(), and main().

#define bindtextdomain (   Domainname,
  Dirname 
)    ((void) (Domainname), (const char *) (Dirname))

Definition at line 100 of file gettext.h.

Referenced by ghid_parse_arguments(), and main().

#define dcgettext (   Domainname,
  Msgid,
  Category 
)    ((void) (Category), dgettext (Domainname, Msgid))

Definition at line 84 of file gettext.h.

Referenced by dcpgettext_expr(), and pgettext_aux().

#define dcngettext (   Domainname,
  Msgid1,
  Msgid2,
  N,
  Category 
)    ((void) (Category), dngettext(Domainname, Msgid1, Msgid2, N))

Definition at line 95 of file gettext.h.

Referenced by dcnpgettext_expr(), and npgettext_aux().

#define dcnpgettext (   Domainname,
  Msgctxt,
  Msgid,
  MsgidPlural,
  N,
  Category 
)    npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, Category)

Definition at line 144 of file gettext.h.

#define dcpgettext (   Domainname,
  Msgctxt,
  Msgid,
  Category 
)    pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, Category)

Definition at line 133 of file gettext.h.

#define dgettext (   Domainname,
  Msgid 
)    ((void) (Domainname), gettext (Msgid))

Definition at line 82 of file gettext.h.

#define dngettext (   Domainname,
  Msgid1,
  Msgid2,
 
)    ((void) (Domainname), ngettext (Msgid1, Msgid2, N))

Definition at line 92 of file gettext.h.

#define dnpgettext (   Domainname,
  Msgctxt,
  Msgid,
  MsgidPlural,
 
)    npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES)

Definition at line 142 of file gettext.h.

#define dnpgettext_expr (   Domainname,
  Msgctxt,
  Msgid,
  MsgidPlural,
 
)    dcnpgettext_expr (Domainname, Msgctxt, Msgid, MsgidPlural, N, LC_MESSAGES)

Definition at line 248 of file gettext.h.

#define dpgettext (   Domainname,
  Msgctxt,
  Msgid 
)    pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES)

Definition at line 131 of file gettext.h.

#define dpgettext_expr (   Domainname,
  Msgctxt,
  Msgid 
)    dcpgettext_expr (Domainname, Msgctxt, Msgid, LC_MESSAGES)

Definition at line 203 of file gettext.h.

#define gettext (   Msgid)    ((const char *) (Msgid))

Definition at line 80 of file gettext.h.

Referenced by XmStringCreatePCB().

#define GETTEXT_CONTEXT_GLUE   "\004"

Definition at line 118 of file gettext.h.

#define gettext_noop (   String)    String

Definition at line 115 of file gettext.h.

#define ngettext (   Msgid1,
  Msgid2,
 
)
Value:
((N) == 1 \
     ? ((void) (Msgid2), (const char *) (Msgid1)) \
     : ((void) (Msgid1), (const char *) (Msgid2)))

Definition at line 87 of file gettext.h.

Referenced by DRCAll().

#define npgettext (   Msgctxt,
  Msgid,
  MsgidPlural,
 
)    npgettext_aux (NULL, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES)

Definition at line 139 of file gettext.h.

#define npgettext_expr (   Msgctxt,
  Msgid,
  MsgidPlural,
 
)    dcnpgettext_expr (NULL, Msgctxt, Msgid, MsgidPlural, N, LC_MESSAGES)

Definition at line 246 of file gettext.h.

#define pgettext (   Msgctxt,
  Msgid 
)    pgettext_aux (NULL, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES)

Definition at line 128 of file gettext.h.

#define pgettext_expr (   Msgctxt,
  Msgid 
)    dcpgettext_expr (NULL, Msgctxt, Msgid, LC_MESSAGES)

Definition at line 201 of file gettext.h.

#define textdomain (   Domainname)    ((const char *) (Domainname))

Definition at line 98 of file gettext.h.

Referenced by ghid_parse_arguments(), and main().


Function Documentation

static const char* dcnpgettext_expr ( const char *  domain,
const char *  msgctxt,
const char *  msgid,
const char *  msgid_plural,
unsigned long int  n,
int  category 
) [static]

Definition at line 259 of file gettext.h.

References dcngettext, and malloc().

Here is the call graph for this function:

static const char* dcpgettext_expr ( const char *  domain,
const char *  msgctxt,
const char *  msgid,
int  category 
) [static]

Definition at line 214 of file gettext.h.

References dcgettext, and malloc().

Here is the call graph for this function:

static const char* npgettext_aux ( const char *  domain,
const char *  msg_ctxt_id,
const char *  msgid,
const char *  msgid_plural,
unsigned long int  n,
int  category 
) [static]

Definition at line 174 of file gettext.h.

References dcngettext.

static const char* pgettext_aux ( const char *  domain,
const char *  msg_ctxt_id,
const char *  msgid,
int  category 
) [static]

Definition at line 155 of file gettext.h.

References dcgettext.