GNOME Bugzilla – Bug 420937
error message: may/might ambiguity
Last modified: 2007-03-26 18:42:09 UTC
When trying to play the MMS thing from here (with the gstreamer-bad plugins), the error message is slightly ambiguous: " Could not open location; You may not have permission to open the file. " This suggests that I am not allowed to have permission. "You might not have" would be less ambiguous. I'll change this in svn if that's OK.
This is a GStreamer message string => GStreamer
Where is it?
That's the xine-lib backend error message: case XINE_MSG_PERMISSION_ERROR: num = BVW_ERROR_FILE_PERMISSION; if (g_str_has_prefix (bvw->com->mrl, "file:") != FALSE) message = g_strdup (_("You are not allowed to open this file.")); else message = g_strdup (_("The server refused access to this file or stream.")); break;
Those look like different strings.
My mistake, sorry for the confusion. It is in fact in totem/src/backend/bacon-video-widget-gst-0.10.c
> I'll change this in svn if that's OK. Please do, in trunk (I presume the 2.18 branch is string frozen?)
Fixed in trunk: 2007-03-26 Tim-Philipp Müller <tim at centricular dot net> * src/backend/bacon-video-widget-gst-0.10.c: (bvw_error_from_gst_error): Fix ambiguous error message (#420937).