Commit 0da94177 authored by Felix Paul Kühne's avatar Felix Paul Kühne

* a few more

parent 42ee1b38
...@@ -585,7 +585,7 @@ aviindex: ...@@ -585,7 +585,7 @@ aviindex:
i_create = intf_UserYesNo( p_demux, _("AVI Index") , i_create = intf_UserYesNo( p_demux, _("AVI Index") ,
_( "This AVI file is broken. Seeking will not " _( "This AVI file is broken. Seeking will not "
"work correctly.\nDo you want to " "work correctly.\nDo you want to "
"try to repair it (this might take a long time) ?" ), "try to repair it?\n\nThis might take a long time." ),
_( "Repair" ), _( "Don't repair" ), _( "Cancel") ); _( "Repair" ), _( "Don't repair" ), _( "Cancel") );
if( i_create == DIALOG_OK_YES ) if( i_create == DIALOG_OK_YES )
{ {
......
...@@ -1283,7 +1283,7 @@ void update_download_for_real( download_thread_t *p_this ) ...@@ -1283,7 +1283,7 @@ void update_download_for_real( download_thread_t *p_this )
if( !p_stream ) if( !p_stream )
{ {
msg_Err( p_libvlc, "Failed to open %s for reading", psz_src ); msg_Err( p_libvlc, "Failed to open %s for reading", psz_src );
intf_UserFatal( p_libvlc, VLC_TRUE, "Error while Downloading...", intf_UserFatal( p_libvlc, VLC_TRUE, "Download Error",
"VLC failed to open %s for reading.", psz_src ); "VLC failed to open %s for reading.", psz_src );
intf_UserHide( p_libvlc, i_progress ); intf_UserHide( p_libvlc, i_progress );
} }
...@@ -1293,7 +1293,7 @@ void update_download_for_real( download_thread_t *p_this ) ...@@ -1293,7 +1293,7 @@ void update_download_for_real( download_thread_t *p_this )
if( !p_file ) if( !p_file )
{ {
msg_Err( p_libvlc, "Failed to open %s for writing", psz_dest ); msg_Err( p_libvlc, "Failed to open %s for writing", psz_dest );
intf_UserFatal( p_libvlc, VLC_TRUE, "Error while Downloading...", intf_UserFatal( p_libvlc, VLC_TRUE, "Download Error",
"VLC failed to open %s for writing.", psz_dest ); "VLC failed to open %s for writing.", psz_dest );
intf_UserHide( p_libvlc, i_progress ); intf_UserHide( p_libvlc, i_progress );
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment