summaryrefslogtreecommitdiff
path: root/sys/dvb
diff options
context:
space:
mode:
authorReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>2016-09-26 15:23:52 -0700
committerReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>2016-09-30 15:03:22 -0700
commit5771e6a0666c06a0d527c4e8b9584b044cd291b9 (patch)
tree0c1468b9215c719290aa2c3eb7b6dad56d332df4 /sys/dvb
parent712c1b3c6886b416672749964f4ffdda879a4d4c (diff)
downloadgstreamer-plugins-bad-5771e6a0666c06a0d527c4e8b9584b044cd291b9.tar.gz
dvb/parsechannels: make parsing errors delsys-neutral
DVB is a group of delivery standards but we support several others. While at this, make message formating more congruent.
Diffstat (limited to 'sys/dvb')
-rw-r--r--sys/dvb/parsechannels.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/dvb/parsechannels.c b/sys/dvb/parsechannels.c
index e39cd94f8..0707a5596 100644
--- a/sys/dvb/parsechannels.c
+++ b/sys/dvb/parsechannels.c
@@ -90,7 +90,7 @@ gst_dvb_base_bin_conf_set_property_from_string_array (GstElement * dvbbasebin,
v = gst_dvb_base_bin_find_string_in_array (strings, str);
if (v == -1) {
GST_WARNING_OBJECT (dvbbasebin, "Unexpected value '%s' for property "
- "'%s', using default: %d", str, property, default_value);
+ "'%s', using default: '%d'", str, property, default_value);
v = default_value;
}
@@ -356,10 +356,10 @@ load_error:
(err->domain == G_KEY_FILE_ERROR
&& err->code == G_KEY_FILE_ERROR_NOT_FOUND)) {
g_set_error (error, GST_RESOURCE_ERROR, GST_RESOURCE_ERROR_NOT_FOUND,
- _("Couldn't find DVB channel configuration file"));
+ _("Couldn't find channel configuration file"));
} else {
g_set_error (error, GST_RESOURCE_ERROR, GST_RESOURCE_ERROR_READ,
- _("Couldn't load DVB channel configuration file: %s"), err->message);
+ _("Couldn't load channel configuration file: '%s'"), err->message);
}
g_clear_error (&err);
return FALSE;
@@ -368,7 +368,7 @@ unknown_channel:
{
/* FIXME: is channel name guaranteed to be ASCII or UTF-8? */
g_set_error (error, GST_RESOURCE_ERROR, GST_RESOURCE_ERROR_NOT_FOUND,
- _("Couldn't find details for DVB channel %s"), channel_name);
+ _("Couldn't find details for channel '%s'"), channel_name);
g_key_file_unref (keyfile);
g_clear_error (&err);
return FALSE;
@@ -378,7 +378,7 @@ no_properties:
{
/* FIXME: is channel name guaranteed to be ASCII or UTF-8? */
g_set_error (error, GST_RESOURCE_ERROR, GST_RESOURCE_ERROR_NOT_FOUND,
- _("No properties for the DVB channel %s"), channel_name);
+ _("No properties for channel '%s'"), channel_name);
g_key_file_unref (keyfile);
g_clear_error (&err);
return FALSE;
@@ -388,7 +388,7 @@ property_error:
{
/* FIXME: is channel name guaranteed to be ASCII or UTF-8? */
g_set_error (error, GST_RESOURCE_ERROR, GST_RESOURCE_ERROR_FAILED,
- _("Failed to set properties for the DVB channel %s"), channel_name);
+ _("Failed to set properties for channel '%s'"), channel_name);
g_key_file_unref (keyfile);
g_clear_error (&err);
return FALSE;
@@ -512,17 +512,17 @@ parse_channels_conf_from_file (GstElement * dvbbasebin, const gchar * filename,
open_fail:
if (err->code == G_FILE_ERROR_NOENT) {
g_set_error (error, GST_RESOURCE_ERROR, GST_RESOURCE_ERROR_NOT_FOUND,
- _("Couldn't find DVB channel configuration file: %s"), err->message);
+ _("Couldn't find channel configuration file: '%s'"), err->message);
} else {
g_set_error (error, GST_RESOURCE_ERROR, GST_RESOURCE_ERROR_READ,
- _("Couldn't load DVB channel configuration file: %s"), err->message);
+ _("Couldn't load channel configuration file: '%s'"), err->message);
}
g_clear_error (&err);
return NULL;
no_channels:
g_set_error (error, GST_RESOURCE_ERROR, GST_RESOURCE_ERROR_FAILED,
- _("DVB channel configuration file doesn't contain any channels"));
+ _("Channel configuration file doesn't contain any channels"));
g_hash_table_unref (res);
return NULL;
}
@@ -800,7 +800,7 @@ unknown_channel:
{
/* FIXME: is channel name guaranteed to be ASCII or UTF-8? */
g_set_error (error, GST_RESOURCE_ERROR, GST_RESOURCE_ERROR_NOT_FOUND,
- _("Couldn't find details for DVB channel %s"), channel_name);
+ _("Couldn't find details for channel '%s'"), channel_name);
destroy_channels_hash (channels);
return FALSE;
}