aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-i18n.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-02-04 12:10:39 +0800
committernobody <nobody@localhost>2001-02-04 12:10:39 +0800
commit541ed6bf346abe33775bfa8fbe4361d53a02924d (patch)
tree0a5b66655b7f9f6e527155bcabd2f7470e429a8b /e-util/e-i18n.h
parent1b96583c0c6142969e366409bdfd371f078fc683 (diff)
downloadgsoc2013-evolution-BEFORE_BOBJECT.tar
gsoc2013-evolution-BEFORE_BOBJECT.tar.gz
gsoc2013-evolution-BEFORE_BOBJECT.tar.bz2
gsoc2013-evolution-BEFORE_BOBJECT.tar.lz
gsoc2013-evolution-BEFORE_BOBJECT.tar.xz
gsoc2013-evolution-BEFORE_BOBJECT.tar.zst
gsoc2013-evolution-BEFORE_BOBJECT.zip
This commit was manufactured by cvs2svn to create tagBEFORE_BOBJECT
'BEFORE_BOBJECT'. svn path=/tags/BEFORE_BOBJECT/; revision=7953
Diffstat (limited to 'e-util/e-i18n.h')
-rw-r--r--e-util/e-i18n.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/e-util/e-i18n.h b/e-util/e-i18n.h
deleted file mode 100644
index 33e53cdaee..0000000000
--- a/e-util/e-i18n.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * Copied from gnome-i18nP.h, because this header is typically not installed
- *
- * This file has to be included before any file from the GNOME libraries
- * to have this override the definitions that are pulled from the gnome-i18n.h
- *
- * the difference is that gnome-i18n.h is used for applications, and this is
- * used by libraries (because libraries have to use dcgettext instead of
- * gettext and they need to provide the translation domain, unlike apps).
- *
- * So you can just put this after you include config.h
- */
-
-#ifndef __E_I18N_H__
-#define __E_I18N_H__
-
-#ifdef ENABLE_NLS
-# include <libintl.h>
-# undef _
-# define _(String) dgettext (PACKAGE, String)
-# ifdef gettext_noop
-# define N_(String) gettext_noop (String)
-# else
-# define N_(String) (String)
-# endif
-#else
-/* Stubs that do something close enough. */
-# define textdomain(String) (String)
-# define gettext(String) (String)
-# define dgettext(Domain,Message) (Message)
-# define dcgettext(Domain,Message,Type) (Message)
-# define bindtextdomain(Domain,Directory) (Domain)
-# define _(String) (String)
-# define N_(String) (String)
-#endif
-
-#ifndef __GNOME_I18N_H__
-#define __GNOME_I18N_H__ 1
-#endif
-
-#endif /* __E_I18N_H__ */