diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-07-27 23:53:55 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-07-27 23:53:55 +0000 |
commit | a1b83c86fbea6291e41a72791f1163d7e9683ff6 (patch) | |
tree | 6ba1bdcaff0cd9a6753ad1575c777aace9c1e029 /src/xine-engine/xineintl.h | |
parent | be7d5c40822438f0ff2fefbd9254c65b7382163e (diff) | |
download | xine-lib-a1b83c86fbea6291e41a72791f1163d7e9683ff6.tar.gz xine-lib-a1b83c86fbea6291e41a72791f1163d7e9683ff6.tar.bz2 |
Fix ngettext usage.
CVS patchset: 2358
CVS date: 2002/07/27 23:53:55
Diffstat (limited to 'src/xine-engine/xineintl.h')
-rw-r--r-- | src/xine-engine/xineintl.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/xine-engine/xineintl.h b/src/xine-engine/xineintl.h index a2b1fcdd7..11cfd6928 100644 --- a/src/xine-engine/xineintl.h +++ b/src/xine-engine/xineintl.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xineintl.h,v 1.1 2001/12/27 14:30:30 f1rmb Exp $ + * $Id: xineintl.h,v 1.2 2002/07/27 23:53:55 f1rmb Exp $ * */ @@ -38,6 +38,9 @@ extern "C" { # else # define N_(String) (String) # endif +# ifndef HAVE_NGETTEXT +# define ngettext(Singular, Plural, IsPlural) (Singular) +# endif #else /* Stubs that do something close enough. */ # define textdomain(String) (String) |