sys/: Fix some spelling mistakes. Fixes #556802.

Original commit message from CVS:
Patch by: Fabricio Godoy <skarllot at gmail dot com>
* sys/oss/gstosssink.c: (gst_oss_sink_open):
* sys/oss/gstosssrc.c: (gst_oss_src_open):
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_mmap):
* sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
Fix some spelling mistakes. Fixes #556802.
This commit is contained in:
Fabricio Godoy 2008-11-13 17:45:59 +00:00 committed by Wim Taymans
parent 2b8b13e7a4
commit 5a4565868d
5 changed files with 14 additions and 4 deletions

View file

@ -1,3 +1,13 @@
2008-11-13 Wim Taymans <wim.taymans@collabora.co.uk>
Patch by: Fabricio Godoy <skarllot at gmail dot com>
* sys/oss/gstosssink.c: (gst_oss_sink_open):
* sys/oss/gstosssrc.c: (gst_oss_src_open):
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_mmap):
* sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
Fix some spelling mistakes. Fixes #556802.
2008-11-13 Stefan Kost <ensonic@users.sf.net>
* gst/equalizer/GstIirEqualizer10Bands.prs:

View file

@ -418,7 +418,7 @@ busy:
no_permission:
{
GST_ELEMENT_ERROR (oss, RESOURCE, OPEN_WRITE,
(_("Could not open audio device for playback."
(_("Could not open audio device for playback. "
"You don't have permission to open the device.")),
GST_ERROR_SYSTEM);
return FALSE;

View file

@ -378,7 +378,7 @@ gst_oss_src_open (GstAudioSrc * asrc)
no_permission:
{
GST_ELEMENT_ERROR (oss, RESOURCE, OPEN_READ,
(_("Could not open audio device for recording."
(_("Could not open audio device for recording. "
"You don't have permission to open the device.")),
GST_ERROR_SYSTEM);
return FALSE;

View file

@ -1304,7 +1304,7 @@ done:
size_error:
{
GST_ELEMENT_ERROR (v4l2src, RESOURCE, READ,
(_("Error read()ing %d bytes on device '%s'."),
(_("Error reading %d bytes on device '%s'."),
v4l2src->frame_byte_size, v4l2src->v4l2object->videodev), (NULL));
return GST_FLOW_ERROR;
}

View file

@ -251,7 +251,7 @@ gst_v4l2_fill_lists (GstV4l2Object * v4l2object)
break;
} else {
GST_ELEMENT_ERROR (e, RESOURCE, SETTINGS,
(_("Failed getting controls attributes on device '%s.'"),
(_("Failed getting controls attributes on device '%s'."),
v4l2object->videodev),
("Failed querying control %d on device '%s'. (%d - %s)",
n, v4l2object->videodev, errno, strerror (errno)));