Mercurial > pidgin.yaz
diff src/gtknotify.c @ 13539:c69a837e990c
[gaim-migrate @ 15916]
Formatting changes pending the end of string freeze.
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Tue, 21 Mar 2006 01:17:52 +0000 |
| parents | d6dd68a8be06 |
| children | d12bbe6da705 |
line wrap: on
line diff
--- a/src/gtknotify.c Tue Mar 21 01:15:50 2006 +0000 +++ b/src/gtknotify.c Tue Mar 21 01:17:52 2006 +0000 @@ -878,8 +878,7 @@ if (!gaim_program_is_valid(command)) { - /* TODO: Change the bold tags to quotes when not in string freeze */ - tmp = g_strdup_printf(_("The browser command <b>%s</b> is invalid."), + tmp = g_strdup_printf(_("The browser command \"%s\" is invalid."), command ? command : "(none)"); gaim_notify_error(NULL, NULL, _("Unable to open URL"), tmp); g_free(tmp); @@ -891,8 +890,7 @@ if (!g_spawn_command_line_sync(command, NULL, NULL, &status, &error)) { - /* TODO: Change the bold tags to quotes when not in string freeze */ - tmp = g_strdup_printf(_("Error launching <b>%s</b>: %s"), + tmp = g_strdup_printf(_("Error launching \"%s\": %s"), command, error->message); gaim_notify_error(NULL, NULL, _("Unable to open URL"), tmp); g_free(tmp); @@ -905,8 +903,7 @@ { if (!g_spawn_command_line_async(command, &error)) { - /* TODO: Change the bold tags to quotes when not in string freeze */ - tmp = g_strdup_printf(_("Error launching <b>%s</b>: %s"), + tmp = g_strdup_printf(_("Error launching \"%s\": %s"), command, error->message); gaim_notify_error(NULL, NULL, _("Unable to open URL"), tmp); g_free(tmp);
