diff src/intl.h @ 1685:47b191b77e07

Revert "Add pgettext for some ambiguous strings" Now there should be all ambiguous strings gone. This reverts commit 1628 With that commit also all ambiguous strings should be solved.
author mow
date Tue, 30 Jun 2009 19:53:55 +0000
parents fffb62c7ba1e
children
line wrap: on
line diff
--- a/src/intl.h	Tue Jun 30 19:12:25 2009 +0000
+++ b/src/intl.h	Tue Jun 30 19:53:55 2009 +0000
@@ -2,8 +2,7 @@
 #define __INTL_H__
 
 #ifdef ENABLE_NLS
-#  include <locale.h>
-#  include "gettext.h"
+#  include <libintl.h>
 #  define _(String) dgettext(PACKAGE,String)
 #  ifdef gettext_noop
 #    define N_(String) gettext_noop(String)
@@ -19,7 +18,6 @@
 #  define dcgettext(Domain,String,Type) (String)
 #  define bindtextdomain(Domain,Directory) (Domain)
 #  define bind_textdomain_codeset(Domain,String) (Domain)
-#  define pgettext(Context,String) (String)
 #endif /* ENABLE_NLS */
 
 #endif