gimp r25637 - in trunk: . plug-ins/common



Author: neo
Date: Sun May 11 10:14:19 2008
New Revision: 25637
URL: http://svn.gnome.org/viewvc/gimp?rev=25637&view=rev

Log:
2008-05-11  Sven Neumann  <sven gimp org>

	* plug-ins/common/web-browser.c (browser_open_url): improved 
error
	messages as suggested in bug #522483.



Modified:
   trunk/ChangeLog
   trunk/plug-ins/common/web-browser.c

Modified: trunk/plug-ins/common/web-browser.c
==============================================================================
--- trunk/plug-ins/common/web-browser.c	(original)
+++ trunk/plug-ins/common/web-browser.c	Sun May 11 10:14:19 2008
@@ -139,7 +139,7 @@
   if (browser == NULL || ! strlen (browser))
     {
       g_message (_("Web browser not specified.\n"
-                   "Please specify a web browser using the Preferences Dialog."));
+                   "Please specify a web browser using the Preferences dialog."));
       g_free (browser);
       return FALSE;
     }
@@ -158,7 +158,8 @@
   /* parse the cmd line */
   if (! g_shell_parse_argv (cmd, NULL, &argv, &error))
     {
-      g_message (_("Could not parse specified web browser command:\n%s"),
+      g_message (_("Could not parse the web browser command specified in the "
+                   "Preferences dialog:\n\n%s"),
                  error->message);
       g_error_free (error);
       return FALSE;
@@ -171,7 +172,8 @@
 
   if (! retval)
     {
-      g_message (_("Could not execute specified web browser:\n%s"),
+      g_message (_("Could not execute the web browser specified in the "
+                   "Preferences dialog:\n\n%s"),
                  error->message);
       g_error_free (error);
     }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]