~ubuntu-branches/ubuntu/jaunty/xvidcap/jaunty-proposed

« back to all changes in this revision

Viewing changes to src/xvidcap-intl.h

  • Committer: Bazaar Package Importer
  • Author(s): John Dong
  • Date: 2008-02-25 15:47:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080225154712-qvr11ekcea4c9ry8
Tags: 1.1.6-0.1ubuntu1
* Merge from debian-multimedia (LP: #120003), Ubuntu Changes:
 - For ffmpeg-related build-deps, remove cvs from package names.
 - Standards-Version 3.7.3
 - Maintainer Spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * \file xvidcap-intl.h
 
3
 */
 
4
#ifndef __XVIDCAP_INTL_H__
 
5
#define __XVIDCAP_INTL_H__
 
6
 
 
7
#ifndef DOXYGEN_SHOULD_SKIP_THIS
 
8
#ifdef HAVE_CONFIG_H
 
9
#include "config.h"
 
10
#endif     /* HAVE_CONFIG_H */
 
11
#endif     // DOXYGEN_SHOULD_SKIP_THIS
 
12
 
 
13
#ifdef ENABLE_NLS
 
14
#include <libintl.h>
 
15
#define _(String) gettext(String)
 
16
#ifdef gettext_noop
 
17
#define N_(String) gettext_noop(String)
 
18
#else
 
19
#define N_(String) (String)
 
20
#endif
 
21
#else      /* NLS is disabled */
 
22
#define _(String) (String)
 
23
#define N_(String) (String)
 
24
#define textdomain(String) (String)
 
25
#define gettext(String) (String)
 
26
#define dgettext(Domain,String) (String)
 
27
#define dcgettext(Domain,String,Type) (String)
 
28
#define bindtextdomain(Domain,Directory) (Domain)
 
29
#define bind_textdomain_codeset(Domain,Codeset) (Codeset)
 
30
#endif     /* ENABLE_NLS */
 
31
 
 
32
#endif     /* __XVIDCAP_INTL_H__ */