GNOME Bugzilla – Bug 688038
inconsistent string: plugin vs decoders
Last modified: 2012-11-23 15:27:57 UTC
#: ../src/backend/bacon-video-widget.c:3405 #: ../src/backend/bacon-video-widget.c:3413 #, c-format msgid "The playback of this movie requires a %s plugin which is not installed." msgid_plural "" "The playback of this movie requires the following decoders which are not " "installed:\n" "\n" "%s" why is it once "plugin" and once "decoder"?
(In reply to comment #0) > why is it once "plugin" and once "decoder"? ‘plugin’ refers to a GStreamer plugin (e.g. as installed by the gstreamer-plugins-good package). ‘decoder’ refers to a specific codec implementation. Each GStreamer plugin provides multiple decoders (and encoders, etc.). The parameter string is typically something like ‘XVID MPEG-4 decoder’ or ‘video/x-asf-unknown decoder’. I’ve changed ‘decoder’ to ‘plugin’ in the plural message string. commit c87dba5c8a2317bfb4b1eb46e265ae0a13807055 Author: Philip Withnall <philip@tecnocode.co.uk> Date: Fri Nov 23 09:10:20 2012 +0000 backend: Make missing plugin messages more consistent Always refer to missing plugins as ‘plugins’ rather than ‘decoders’. Closes: https://bugzilla.gnome.org/show_bug.cgi?id=688038 src/backend/bacon-video-widget.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
thanks