gimp r26073 - in trunk: . plug-ins/help
- From: neo svn gnome org
- To: svn-commits-list gnome org
- Subject: gimp r26073 - in trunk: . plug-ins/help
- Date: Sun, 6 Jul 2008 09:45:35 +0000 (UTC)
Author: neo
Date: Sun Jul 6 09:45:35 2008
New Revision: 26073
URL: http://svn.gnome.org/viewvc/gimp?rev=26073&view=rev
Log:
2008-07-06 Sven Neumann <sven gimp org>
* plug-ins/help/gimphelpdomain.c: improved error messages.
Modified:
trunk/ChangeLog
trunk/plug-ins/help/gimphelpdomain.c
Modified: trunk/plug-ins/help/gimphelpdomain.c
==============================================================================
--- trunk/plug-ins/help/gimphelpdomain.c (original)
+++ trunk/plug-ins/help/gimphelpdomain.c Sun Jul 6 09:45:35 2008
@@ -176,20 +176,33 @@
switch (error->code)
{
case G_IO_ERROR_NOT_FOUND:
+ if (domain->help_domain)
+ {
+ g_message (_("The help pages for '%s' are not available."),
+ domain->help_domain);
+ }
+ else
+ {
+ g_message ("%s\n\n%s",
+ _("The GIMP user manual is not available."),
+ _("Please install the additional help package "
+ "or use the online user manual at "
+ "http://docs.gimp.org/."));
+ }
+ break;
+
+ case G_IO_ERROR_NOT_SUPPORTED:
g_message ("%s\n\n%s",
- _("The GIMP user manual is not available."),
- _("Please install the additional help package or use "
- "the online user manual at http://docs.gimp.org/."));
+ error->message,
+ _("Perhaps you are missing GIO backends and need "
+ "to install GVFS?"));
break;
case G_IO_ERROR_CANCELLED:
break;
default:
- g_message ("%s\n\n%s\n\n%s",
- _("There is a problem with the GIMP user manual."),
- error->message,
- _("Please check your installation."));
+ g_message (error->message);
break;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]