From bfe951b32ae652ac89f7bd174fa7d775cd46b8d8 Mon Sep 17 00:00:00 2001 From: Martin Baulig Date: Thu, 4 Feb 1999 19:23:30 +0000 Subject: [PATCH] Use dgettext (), not gettext (). 1999-02-04 Martin Baulig * include/glibtop/global.h (_): Use dgettext (), not gettext (). --- ChangeLog | 4 ++++ include/glibtop/global.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 4cb54056..8f83dde0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +1999-02-04 Martin Baulig + + * include/glibtop/global.h (_): Use dgettext (), not gettext (). + 1999-01-23 Martin Baulig * libgtopConf.sh.in (LIBGTOP_DATADIR): New variable. diff --git a/include/glibtop/global.h b/include/glibtop/global.h index 1e55e01e..d9d524f4 100644 --- a/include/glibtop/global.h +++ b/include/glibtop/global.h @@ -132,7 +132,7 @@ __BEGIN_DECLS #ifndef _ -#define _(String) gettext (String) +#define _(String) dgettext (PACKAGE, String) #define N_(String) (String) #endif