summaryrefslogtreecommitdiff
path: root/gtk/gtkthemes.c
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>1998-12-18 01:32:33 +0000
committerOwen Taylor <otaylor@src.gnome.org>1998-12-18 01:32:33 +0000
commit11339ec5b383f25bdf9913cd9203da2b1fc4a0ca (patch)
treedc8607c38686062910e1ba1921c2549c399cdd8d /gtk/gtkthemes.c
parent1bde7a559951e24b737e3c7c2b9692f77d758286 (diff)
downloadgtk+-11339ec5b383f25bdf9913cd9203da2b1fc4a0ca.tar.gz
Add @INTLLIBS@. gtk-scier-981116-0.patch Sean Cier
Thu Dec 17 20:33:28 1998 Owen Taylor <otaylor@redhat.com> * gtk-config.in: Add @INTLLIBS@. gtk-scier-981116-0.patch Sean Cier <scier@PostHorizon.com>) ] * gtk/gtkcolorsel.c gtk/gtkfilesel.c gtk/gtkfontsel.c gtk/gtkgamma.c gtk/gtkinputdialog.c gtk/gtknotebook.c gtk/gtkrc.c gtk/gtkthemes.c gtk/gtktipsquery.c: Applied parts of gtk-egger-981215-1 [ Daniel Egger <Daniel.Egger@t-online.de> ] marking additional strings for internationalization. * po/nl.po: Added Dutch translation from Paul Siegmann <pauls@euronet.nl>.
Diffstat (limited to 'gtk/gtkthemes.c')
-rw-r--r--gtk/gtkthemes.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gtk/gtkthemes.c b/gtk/gtkthemes.c
index 8f8eeda617..8da2ce6fd5 100644
--- a/gtk/gtkthemes.c
+++ b/gtk/gtkthemes.c
@@ -27,6 +27,7 @@
#include "gtksignal.h"
#include "gtkwidget.h"
#include "config.h"
+#include "gtkintl.h"
typedef struct _GtkThemeEnginePrivate GtkThemeEnginePrivate;
@@ -67,15 +68,15 @@ gtk_theme_engine_get (gchar *name)
if (!engine_path)
{
- g_warning ("Unable to locate loadable module in module_path: \"%s\",",
+ g_warning (_("Unable to locate loadable module in module_path: \"%s\","),
fullname);
return NULL;
}
/* load the lib */
-
- printf ("Loading Theme %s\n", engine_path);
+
+ GTK_NOTE (MISC, g_message ("Loading Theme %s\n", engine_path));
library = g_module_open (engine_path, 0);
g_free(engine_path);