After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 420937 - error message: may/might ambiguity
error message: may/might ambiguity
Status: RESOLVED FIXED
Product: totem
Classification: Core
Component: GStreamer backend
2.18.x
Other Linux
: Normal normal
: ---
Assigned To: Maintainer alias for GStreamer component of Totem
Maintainer alias for GStreamer component of Totem
Depends on:
Blocks:
 
 
Reported: 2007-03-21 10:35 UTC by Murray Cumming
Modified: 2007-03-26 18:42 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Murray Cumming 2007-03-21 10:35:20 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.
Comment 1 Tim-Philipp Müller 2007-03-21 16:37:16 UTC
This is a GStreamer message string => GStreamer
Comment 2 Wim Taymans 2007-03-22 08:31:02 UTC
Where is it?
Comment 3 Bastien Nocera 2007-03-22 09:09:38 UTC
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;
Comment 4 Murray Cumming 2007-03-22 09:21:47 UTC
Those look like different strings.
Comment 5 Tim-Philipp Müller 2007-03-22 21:26:18 UTC
My mistake, sorry for the confusion. It is in fact in totem/src/backend/bacon-video-widget-gst-0.10.c

Comment 6 Tim-Philipp Müller 2007-03-24 19:21:56 UTC
> I'll change this in svn if that's OK.

Please do, in trunk (I presume the 2.18 branch is string frozen?)
Comment 7 Tim-Philipp Müller 2007-03-26 18:42:09 UTC
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).