]> git.sesse.net Git - vlc/commitdiff
* improved some error messages
authorFelix Paul Kühne <fkuehne@videolan.org>
Sat, 29 Jul 2006 15:32:30 +0000 (15:32 +0000)
committerFelix Paul Kühne <fkuehne@videolan.org>
Sat, 29 Jul 2006 15:32:30 +0000 (15:32 +0000)
AUTHORS
src/input/input.c
src/misc/update.c

diff --git a/AUTHORS b/AUTHORS
index 37656100bc7e4c07ee43a2cef571cd71924ee451..099fbd77ea9a051d0f8e29ba4052ea7d25f3e9d9 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -258,6 +258,7 @@ N: Felix Kühne
 E: fkuehne@users.sourceforge.net
 C: fkuehne
 D: MacOS X Interface (Wizard, structure, extended controls panel, bookmarks window)
+D: Interface Interaction (core and OSX)
 D: German translation
 S: Germany
 
index 6a01622fa5eb8d7675146cc4c7afc06de80a1901..129e25208c0d4ba6ee41d8c8fb29830375ba0d0f 100644 (file)
@@ -2019,7 +2019,9 @@ static int InputSourceInit( input_thread_t *p_input,
         {
             msg_Err( p_input, "no suitable access module for `%s'", psz_mrl );
             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;
         }
 
@@ -2089,8 +2091,10 @@ static int InputSourceInit( input_thread_t *p_input,
         {
             msg_Err( p_input, "no suitable demux module for `%s/%s://%s'",
                      psz_access, psz_demux, psz_path );
-            intf_UserFatal( VLC_OBJECT( p_input), _("Errors"),
-                            "Unrecognized format for '%s'", psz_mrl );
+            intf_UserFatal( VLC_OBJECT( p_input), 
+                            _("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;
         }
 
index b77afc2c5ead7bbec6949340a933b33e468a6f21..9e78750f3251ed2397c373a7baf63f51ea4b6286 100644 (file)
@@ -1270,8 +1270,8 @@ void update_download_for_real( download_thread_t *p_this )
     if( !p_stream )
     {
         msg_Err( p_vlc, "Failed to open %s for reading", psz_src );
-        intf_UserFatal( p_vlc, "Downloading...",
-                        "Failed to open %s for reading", psz_src );
+        intf_UserFatal( p_vlc, "Error while Downloading...",
+                        "VLC failed to open %s for reading.", psz_src );
         intf_UserHide( p_vlc, i_progress );
     }
     else
@@ -1281,8 +1281,8 @@ void update_download_for_real( download_thread_t *p_this )
         if( !p_file )
         {
             msg_Err( p_vlc, "Failed to open %s for writing", psz_dest );
-            intf_UserFatal( p_vlc, "Downloading...",
-                            "Failed to open %s for writing", psz_dest );
+            intf_UserFatal( p_vlc, "Error while Downloading...",
+                            "VLC failed to open %s for writing.", psz_dest );
             intf_UserHide( p_vlc, i_progress );
         }
         else