aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-02-14 09:27:32 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-02-14 09:27:32 +0000
commit97ed0dd90a111dc83c5557b07cac2f0ea8d72677 (patch)
tree60af80502c9aef887e21538dd2e590fa95792a47 /src
parentbae840d7f39f45a1acc966f4f91e9f57dae442e5 (diff)
removed intl.h.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@108 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src')
-rw-r--r--src/intl.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/intl.h b/src/intl.h
deleted file mode 100644
index 3cb08bf7..00000000
--- a/src/intl.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef __INTL_H__
-#define __INTL_H__
-
-#ifdef ENABLE_NLS
-# include <libintl.h>
-# define _(String) gettext(String)
-# ifdef gettext_noop
-# define N_(String) gettext_noop(String)
-# else
-# define N_(String) (String)
-# endif /* gettext_noop */
-#else
-# define _(String) (String)
-# define N_(String) (String)
-# define textdomain(String) (String)
-# define gettext(String) (String)
-# define dgettext(Domain,String) (String)
-# define dcgettext(Domain,String,Type) (String)
-# define bindtextdomain(Domain,Directory) (Domain)
-#endif /* ENABLE_NLS */
-
-#endif /* __INTL_H__ */