summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>2017-08-29 17:03:00 -0700
committerCedric BAIL <cedric@osg.samsung.com>2017-08-29 17:03:11 -0700
commit835fd7a485afa8b44478fdcfbf82bc3fd93a0cb9 (patch)
treee49e921e74c414b23f5177d46d5a844b0395d339
parentd5346d4e24ded8d50e249fb8efa15daa93c73c16 (diff)
downloadefl-835fd7a485afa8b44478fdcfbf82bc3fd93a0cb9.tar.gz
emotion: gst: drop Frenglish from English messages
Subscribers: cedric, jpeg Differential Revision: https://phab.enlightenment.org/D5144 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
-rw-r--r--src/modules/emotion/gstreamer/emotion_sink.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/emotion/gstreamer/emotion_sink.c b/src/modules/emotion/gstreamer/emotion_sink.c
index 279c7fb233..63fcbeeea7 100644
--- a/src/modules/emotion/gstreamer/emotion_sink.c
+++ b/src/modules/emotion/gstreamer/emotion_sink.c
@@ -191,7 +191,7 @@ evas_video_sink_get_property(GObject * object, guint prop_id,
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
- ERR("invalide property");
+ ERR("invalid property");
break;
}
}
@@ -579,7 +579,7 @@ evas_video_sink_samsung_main_render(void *data)
if (priv->func)
priv->func(evas_data, gst_data, stride, elevation, elevation);
else
- WRN("No way to decode %x colorspace !", priv->eformat);
+ WRN("No way to decode colorspace '%x'!", priv->eformat);
evas_object_image_data_set(priv->o, evas_data);
evas_object_image_data_update_add(priv->o, 0, 0, priv->width, priv->height);
@@ -694,7 +694,7 @@ evas_video_sink_main_render(void *data)
if (priv->func)
priv->func(evas_data, GST_BUFFER_DATA(buffer), priv->width, priv->source_height, priv->height);
else
- WRN("No way to decode %x colorspace !", priv->eformat);
+ WRN("No way to decode colorspace '%x'!", priv->eformat);
evas_object_image_data_set(priv->o, evas_data);
evas_object_image_data_update_add(priv->o, 0, 0, priv->width, priv->height);