diff options
author | Owen Taylor <otaylor@redhat.com> | 2004-01-22 23:47:42 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2004-01-22 23:47:42 +0000 |
commit | 1b2ff84cbf018cbbcefb7e1545343cb493be1db7 (patch) | |
tree | cf185eed22b4ab40a8fa767d54fe6115e3ece27c /gtk/gtkicontheme.c | |
parent | e2551adbd7a8b5caab099f7d20e1ace6204b96cb (diff) | |
download | gtk+-1b2ff84cbf018cbbcefb7e1545343cb493be1db7.tar.gz |
Patch from Christian Neumair to make warning string more translator
Thu Jan 22 18:45:26 2004 Owen Taylor <otaylor@redhat.com>
* gtk/gtkicontheme.c: Patch from Christian Neumair
to make warning string more translator friendly.
* gtk/gtktreemodelfilter.h gtkseparatortoolitem.[ch]
gtk/gtktoolbar.c: Parameter name fixes to keep gtk-doc
happy.
* configure.in: Require GLib-2.3.2, version 2.3.2,
interface age 0, binary age 302.
* NEWS: Organized, added some names.
Diffstat (limited to 'gtk/gtkicontheme.c')
-rw-r--r-- | gtk/gtkicontheme.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkicontheme.c b/gtk/gtkicontheme.c index 85752d7d74..93f09c7c58 100644 --- a/gtk/gtkicontheme.c +++ b/gtk/gtkicontheme.c @@ -1179,11 +1179,11 @@ gtk_icon_theme_lookup_icon (GtkIconTheme *icon_theme, } if (!found) { - g_warning (_("Could not find the icon '%s'. The '" DEFAULT_THEME_NAME "' theme\n" + g_warning (_("Could not find the icon '%s'. The '%s' theme\n" "was not found either, perhaps you need to install it.\n" - "You can get a copy from :\n" - "\thttp://freedesktop.org/Software/icon-theme/releases"), - icon_name); + "You can get a copy from:\n" + "\t%s"), + icon_name, DEFAULT_THEME_NAME, "http://freedesktop.org/Software/icon-theme/releases"); } } } |