Changeset 76d75d3dc50a4c40a6bd48c613c0cabfba0a37f9

Show
Ignore:
Timestamp:
07/29/06 17:32:30 (2 years ago)
Author:
Felix Paul Kühne <fkuehne@videolan.org>
git-committer:
Felix Paul Kühne <fkuehne@videolan.org> 1154187150 +0000
git-parent:

[6cb1101a9144409fe27ffd7984c58f33b66eb78c]

git-author:
Felix Paul Kühne <fkuehne@videolan.org> 1154187150 +0000
Message:

* improved some error messages

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • AUTHORS

    rc717860 r76d75d3  
    259259C: fkuehne 
    260260D: MacOS X Interface (Wizard, structure, extended controls panel, bookmarks window) 
     261D: Interface Interaction (core and OSX) 
    261262D: German translation 
    262263S: Germany 
  • src/input/input.c

    r77824cb r76d75d3  
    20202020            msg_Err( p_input, "no suitable access module for `%s'", psz_mrl ); 
    20212021            intf_UserFatal( VLC_OBJECT( p_input), 
    2022                             _("Errors"),"Unable to open '%s'", psz_mrl ); 
     2022                            _("Your input can't be opened"), 
     2023                            _("VLC is unable to open the MRL '%s'." 
     2024                            " Check the log for details."), psz_mrl ); 
    20232025            goto error; 
    20242026        } 
     
    20902092            msg_Err( p_input, "no suitable demux module for `%s/%s://%s'", 
    20912093                     psz_access, psz_demux, psz_path ); 
    2092             intf_UserFatal( VLC_OBJECT( p_input), _("Errors"), 
    2093                             "Unrecognized format for '%s'", psz_mrl ); 
     2094            intf_UserFatal( VLC_OBJECT( p_input),  
     2095                            _("Can't recognize the input's format"), 
     2096                            _("The format of '%s' can't be detected. " 
     2097                            "Have a look the log for details."), psz_mrl ); 
    20942098            goto error; 
    20952099        } 
  • src/misc/update.c

    r6cb1101 r76d75d3  
    12711271    { 
    12721272        msg_Err( p_vlc, "Failed to open %s for reading", psz_src ); 
    1273         intf_UserFatal( p_vlc, "Downloading...", 
    1274                         "Failed to open %s for reading", psz_src ); 
     1273        intf_UserFatal( p_vlc, "Error while Downloading...", 
     1274                        "VLC failed to open %s for reading.", psz_src ); 
    12751275        intf_UserHide( p_vlc, i_progress ); 
    12761276    } 
     
    12821282        { 
    12831283            msg_Err( p_vlc, "Failed to open %s for writing", psz_dest ); 
    1284             intf_UserFatal( p_vlc, "Downloading...", 
    1285                             "Failed to open %s for writing", psz_dest ); 
     1284            intf_UserFatal( p_vlc, "Error while Downloading...", 
     1285                            "VLC failed to open %s for writing.", psz_dest ); 
    12861286            intf_UserHide( p_vlc, i_progress ); 
    12871287        }