~ubuntu-branches/ubuntu/hardy/gnupg2/hardy-proposed

« back to all changes in this revision

Viewing changes to common/i18n.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Bienia
  • Date: 2007-05-15 13:54:55 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20070515135455-89qfyalmgjy6gcqw
Tags: 2.0.4-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Remove libpcsclite-dev, libopensc2-dev build dependencies (they are in
    universe).
  - Build-depend on libcurl3-gnutls-dev
  - g10/call-agent.c: set DBG_ASSUAN to 0 to suppress a debug message
  - Include /doc files as done with gnupg
  - debian/rules: add doc/com-certs.pem to the docs for gpgsm
  - debian/copyright: update download url
  - debian/README.Debian: remove note the gnupg2 isn't released yet.
  - debian/control: Change Maintainer/XSBC-Original-Maintainer field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
#ifdef USE_SIMPLE_GETTEXT
18
18
  int set_gettext_file( const char *filename );
19
19
  const char *gettext( const char *msgid );
 
20
  const char *ngettext(const char *msgid1, const char *msgid2,
 
21
                       unsigned long int n);
20
22
# define _(a) gettext (a)
21
23
# define N_(a) (a)
22
24
#else
34
36
# else
35
37
#  define _(a) (a)
36
38
#  define N_(a) (a)
 
39
#  define ngettext(a,b,c) ((c)==1? (a):(b))
37
40
# endif
38
41
#endif /*!USE_SIMPLE_GETTEXT*/
39
42