diff options
Diffstat (limited to 'ext/audiofile')
-rw-r--r-- | ext/audiofile/gstafsink.c | 4 | ||||
-rw-r--r-- | ext/audiofile/gstafsrc.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ext/audiofile/gstafsink.c b/ext/audiofile/gstafsink.c index afef5f69..69a7da79 100644 --- a/ext/audiofile/gstafsink.c +++ b/ext/audiofile/gstafsink.c @@ -347,7 +347,7 @@ gst_afsink_open_file (GstAFSink *sink) if (sink->file == AF_NULL_FILEHANDLE) { GST_ELEMENT_ERROR (sink, RESOURCE, OPEN_WRITE, - (_("Could not open file \"%s\" for writing"), sink->filename), + (_("Could not open file \"%s\" for writing."), sink->filename), ("system error: %s", strerror (errno))); return FALSE; } @@ -370,7 +370,7 @@ gst_afsink_close_file (GstAFSink *sink) if (afCloseFile (sink->file) != 0) { GST_ELEMENT_ERROR (sink, RESOURCE, CLOSE, - (_("Error closing file \"%s\""), sink->filename), + (_("Error closing file \"%s\"."), sink->filename), GST_ERROR_SYSTEM); } else { diff --git a/ext/audiofile/gstafsrc.c b/ext/audiofile/gstafsrc.c index e2bdf3f6..aa41273f 100644 --- a/ext/audiofile/gstafsrc.c +++ b/ext/audiofile/gstafsrc.c @@ -317,7 +317,7 @@ gst_afsrc_open_file (GstAFSrc *src) if (src->file == AF_NULL_FILEHANDLE) { GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ, - (_("Could not open file \"%s\" for reading"), src->filename), + (_("Could not open file \"%s\" for reading."), src->filename), ("system error: %s", strerror (errno))); return FALSE; } @@ -375,7 +375,7 @@ gst_afsrc_close_file (GstAFSrc *src) if (afCloseFile (src->file) != 0) { GST_ELEMENT_ERROR (src, RESOURCE, CLOSE, - (_("Error closing file \"%s\""), src->filename), + (_("Error closing file \"%s\"."), src->filename), GST_ERROR_SYSTEM); } else { GST_FLAG_UNSET (src, GST_AFSRC_OPEN); |