Commit 76d75d3d authored by Felix Paul Kühne's avatar Felix Paul Kühne

* improved some error messages

parent 6cb1101a
...@@ -258,6 +258,7 @@ N: Felix Kühne ...@@ -258,6 +258,7 @@ N: Felix Kühne
E: fkuehne@users.sourceforge.net E: fkuehne@users.sourceforge.net
C: fkuehne C: fkuehne
D: MacOS X Interface (Wizard, structure, extended controls panel, bookmarks window) D: MacOS X Interface (Wizard, structure, extended controls panel, bookmarks window)
D: Interface Interaction (core and OSX)
D: German translation D: German translation
S: Germany S: Germany
......
...@@ -2019,7 +2019,9 @@ static int InputSourceInit( input_thread_t *p_input, ...@@ -2019,7 +2019,9 @@ static int InputSourceInit( input_thread_t *p_input,
{ {
msg_Err( p_input, "no suitable access module for `%s'", psz_mrl ); msg_Err( p_input, "no suitable access module for `%s'", psz_mrl );
intf_UserFatal( VLC_OBJECT( p_input), intf_UserFatal( VLC_OBJECT( p_input),
_("Errors"),"Unable to open '%s'", psz_mrl ); _("Your input can't be opened"),
_("VLC is unable to open the MRL '%s'."
" Check the log for details."), psz_mrl );
goto error; goto error;
} }
...@@ -2089,8 +2091,10 @@ static int InputSourceInit( input_thread_t *p_input, ...@@ -2089,8 +2091,10 @@ static int InputSourceInit( input_thread_t *p_input,
{ {
msg_Err( p_input, "no suitable demux module for `%s/%s://%s'", msg_Err( p_input, "no suitable demux module for `%s/%s://%s'",
psz_access, psz_demux, psz_path ); psz_access, psz_demux, psz_path );
intf_UserFatal( VLC_OBJECT( p_input), _("Errors"), intf_UserFatal( VLC_OBJECT( p_input),
"Unrecognized format for '%s'", psz_mrl ); _("Can't recognize the input's format"),
_("The format of '%s' can't be detected. "
"Have a look the log for details."), psz_mrl );
goto error; goto error;
} }
......
...@@ -1270,8 +1270,8 @@ void update_download_for_real( download_thread_t *p_this ) ...@@ -1270,8 +1270,8 @@ void update_download_for_real( download_thread_t *p_this )
if( !p_stream ) if( !p_stream )
{ {
msg_Err( p_vlc, "Failed to open %s for reading", psz_src ); msg_Err( p_vlc, "Failed to open %s for reading", psz_src );
intf_UserFatal( p_vlc, "Downloading...", intf_UserFatal( p_vlc, "Error while Downloading...",
"Failed to open %s for reading", psz_src ); "VLC failed to open %s for reading.", psz_src );
intf_UserHide( p_vlc, i_progress ); intf_UserHide( p_vlc, i_progress );
} }
else else
...@@ -1281,8 +1281,8 @@ void update_download_for_real( download_thread_t *p_this ) ...@@ -1281,8 +1281,8 @@ void update_download_for_real( download_thread_t *p_this )
if( !p_file ) if( !p_file )
{ {
msg_Err( p_vlc, "Failed to open %s for writing", psz_dest ); msg_Err( p_vlc, "Failed to open %s for writing", psz_dest );
intf_UserFatal( p_vlc, "Downloading...", intf_UserFatal( p_vlc, "Error while Downloading...",
"Failed to open %s for writing", psz_dest ); "VLC failed to open %s for writing.", psz_dest );
intf_UserHide( p_vlc, i_progress ); intf_UserHide( p_vlc, i_progress );
} }
else else
......
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