Merge branch 'gtk-3-24-improve-error-message' into 'gtk-3-24'

gtkplacessidebar: Improve error message when unlocking volume fails

See merge request GNOME/gtk!266
This commit is contained in:
Matthias Clasen 2018-08-08 09:18:32 +00:00
commit 2dde4e2ff8

View File

@ -2416,7 +2416,10 @@ volume_mount_cb (GObject *source_object,
error->code != G_IO_ERROR_ALREADY_MOUNTED)
{
name = g_volume_get_name (G_VOLUME (source_object));
primary = g_strdup_printf (_("Unable to access “%s”"), name);
if (g_str_has_prefix (error->message, "Error unlocking"))
primary = g_strdup_printf (_("Error unlocking “%s”"), name);
else
primary = g_strdup_printf (_("Unable to access “%s”"), name);
g_free (name);
emit_show_error_message (sidebar, primary, error->message);
g_free (primary);