]> git.sesse.net Git - vlc/commitdiff
* a few more
authorFelix Paul Kühne <fkuehne@videolan.org>
Sat, 10 Nov 2007 23:21:41 +0000 (23:21 +0000)
committerFelix Paul Kühne <fkuehne@videolan.org>
Sat, 10 Nov 2007 23:21:41 +0000 (23:21 +0000)
modules/demux/avi/avi.c
src/misc/update.c

index 72b2d79c83b3e20e51f88aeb585d527dd15e8947..ed000f9cf5e5e288c82f4f5b2c61680fc807a92b 100644 (file)
@@ -585,7 +585,7 @@ aviindex:
             i_create = intf_UserYesNo( p_demux, _("AVI Index") ,
                         _( "This AVI file is broken. Seeking will not "
                         "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") );
             if( i_create == DIALOG_OK_YES )
             {
index 9fe547fabf594ce07a363f8985f74433d6e20772..b1da7feb30e16949908bc4c0bb41e84310862c62 100644 (file)
@@ -1283,7 +1283,7 @@ void update_download_for_real( download_thread_t *p_this )
     if( !p_stream )
     {
         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 );
         intf_UserHide( p_libvlc, i_progress );
     }
@@ -1293,7 +1293,7 @@ void update_download_for_real( download_thread_t *p_this )
         if( !p_file )
         {
             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 );
             intf_UserHide( p_libvlc, i_progress );
         }